1
0
Fork 0

Move ortho & numpad layouts to data driven (#20183)

Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
Ryan 2023-03-29 15:54:34 +11:00 committed by GitHub
parent 06664e8a94
commit 4869b8061c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
589 changed files with 19002 additions and 25368 deletions

View file

@ -1,19 +0,0 @@
#pragma once
#include "quantum.h"
#define LAYOUT_ortho_5x4( \
K000, K001, K002, K003, \
K100, K101, K102, K103, \
K200, K201, K202, K203, \
K300, K301, K302, K303, \
K400, K401, K402, K403 \
) { \
{ K000, K001, K002, K003 }, \
{ K100, K101, K102, K103 }, \
{ K200, K201, K202, K203 }, \
{ K300, K301, K302, K303 }, \
{ K400, K401, K402, K403 } \
}
#define LAYOUT LAYOUT_ortho_5x4

View file

@ -20,29 +20,36 @@
"processor": "atmega32u4",
"bootloader": "caterina",
"community_layouts": ["ortho_5x4"],
"layout_aliases": {
"LAYOUT": "LAYOUT_ortho_5x4"
},
"layouts": {
"LAYOUT_ortho_5x4": {
"layout": [
{"label":"K000", "x":0, "y":0},
{"label":"K001", "x":1, "y":0},
{"label":"K002", "x":2, "y":0},
{"label":"K003", "x":3, "y":0},
{"label":"K100", "x":0, "y":1},
{"label":"K101", "x":1, "y":1},
{"label":"K102", "x":2, "y":1},
{"label":"K103", "x":3, "y":1},
{"label":"K200", "x":0, "y":2},
{"label":"K201", "x":1, "y":2},
{"label":"K202", "x":2, "y":2},
{"label":"K203", "x":3, "y":2},
{"label":"K300", "x":0, "y":3},
{"label":"K301", "x":1, "y":3},
{"label":"K302", "x":2, "y":3},
{"label":"K303", "x":3, "y":3},
{"label":"K400", "x":0, "y":4},
{"label":"K401", "x":1, "y":4},
{"label":"K402", "x":2, "y":4},
{"label":"K403", "x":3, "y":4}
{"matrix": [0, 0], "x": 0, "y": 0},
{"matrix": [0, 1], "x": 1, "y": 0},
{"matrix": [0, 2], "x": 2, "y": 0},
{"matrix": [0, 3], "x": 3, "y": 0},
{"matrix": [1, 0], "x": 0, "y": 1},
{"matrix": [1, 1], "x": 1, "y": 1},
{"matrix": [1, 2], "x": 2, "y": 1},
{"matrix": [1, 3], "x": 3, "y": 1},
{"matrix": [2, 0], "x": 0, "y": 2},
{"matrix": [2, 1], "x": 1, "y": 2},
{"matrix": [2, 2], "x": 2, "y": 2},
{"matrix": [2, 3], "x": 3, "y": 2},
{"matrix": [3, 0], "x": 0, "y": 3},
{"matrix": [3, 1], "x": 1, "y": 3},
{"matrix": [3, 2], "x": 2, "y": 3},
{"matrix": [3, 3], "x": 3, "y": 3},
{"matrix": [4, 0], "x": 0, "y": 4},
{"matrix": [4, 1], "x": 1, "y": 4},
{"matrix": [4, 2], "x": 2, "y": 4},
{"matrix": [4, 3], "x": 3, "y": 4}
]
}
}