diff options
author | Ryan <fauxpark@gmail.com> | 2022-11-05 13:48:00 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 02:48:00 +0000 |
commit | 54682f961e5d4eb1ea66aaec36303800842b7fc3 (patch) | |
tree | db6f62da95c7200b9d9fced49cd3fb58fed3d0ce /keyboards/geekboards | |
parent | f82e90bdeaab1b2ec5c96716731f0a4c63193de9 (diff) |
Fix "no matrix definition" errors for some boards (#18954)
Diffstat (limited to 'keyboards/geekboards')
-rw-r--r-- | keyboards/geekboards/macropad_v2/info.json | 51 |
1 files changed, 10 insertions, 41 deletions
diff --git a/keyboards/geekboards/macropad_v2/info.json b/keyboards/geekboards/macropad_v2/info.json index b62620af9b..bac03b43f1 100644 --- a/keyboards/geekboards/macropad_v2/info.json +++ b/keyboards/geekboards/macropad_v2/info.json @@ -9,48 +9,17 @@ "device_version": "0.0.2" }, "layouts": { - "LAYOUT": { + "LAYOUT_ortho_2x4": { "layout": [ - { - "label": "K0", - "x": 0, - "y": 0 - }, - { - "label": "K1", - "x": 1, - "y": 0 - }, - { - "label": "K2", - "x": 2, - "y": 0 - }, - { - "label": "K3", - "x": 3, - "y": 0 - }, - { - "label": "K4", - "x": 0, - "y": 1 - }, - { - "label": "K5", - "x": 1, - "y": 1 - }, - { - "label": "K6", - "x": 2, - "y": 1 - }, - { - "label": "K7", - "x": 3, - "y": 1 - } + {"label": "K0", "x": 0, "y": 0}, + {"label": "K1", "x": 1, "y": 0}, + {"label": "K2", "x": 2, "y": 0}, + {"label": "K3", "x": 3, "y": 0}, + + {"label": "K4", "x": 0, "y": 1}, + {"label": "K5", "x": 1, "y": 1}, + {"label": "K6", "x": 2, "y": 1}, + {"label": "K7", "x": 3, "y": 1} ] } } |