summaryrefslogtreecommitdiff
path: root/keyboards/ll3macorn/bongopad/info.json
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-04-08 20:50:50 +1000
committerGitHub <noreply@github.com>2023-04-08 20:50:50 +1000
commit441988ef3895171d640e807205e7978ff9755acd (patch)
tree782bedef13507dc8e1a448ff753272586d33af78 /keyboards/ll3macorn/bongopad/info.json
parentfd6449e42cf326bdf17eab118639faa6b0359eb7 (diff)
Move `default` layouts to data driven (#20349)
Diffstat (limited to 'keyboards/ll3macorn/bongopad/info.json')
-rw-r--r--keyboards/ll3macorn/bongopad/info.json22
1 files changed, 18 insertions, 4 deletions
diff --git a/keyboards/ll3macorn/bongopad/info.json b/keyboards/ll3macorn/bongopad/info.json
index ff276547ea..f7276d6e82 100644
--- a/keyboards/ll3macorn/bongopad/info.json
+++ b/keyboards/ll3macorn/bongopad/info.json
@@ -27,8 +27,22 @@
"processor": "atmega32u4",
"bootloader": "atmel-dfu",
"layouts": {
- "LAYOUT_default": {
- "layout": [{"x":0, "y":0}, {"x":0, "y":1}, {"x":1, "y":1}, {"x":2, "y":1}, {"x":0, "y":2}, {"x":1, "y":2}, {"x":2, "y":2}, {"x":0, "y":3}, {"x":1, "y":3}, {"x":2, "y":3}]
- }
+ "LAYOUT_default": {
+ "layout": [
+ {"matrix": [0, 0], "x": 0, "y": 0},
+
+ {"matrix": [1, 0], "x": 0, "y": 1},
+ {"matrix": [1, 1], "x": 1, "y": 1},
+ {"matrix": [1, 2], "x": 2, "y": 1},
+
+ {"matrix": [2, 0], "x": 0, "y": 2},
+ {"matrix": [2, 1], "x": 1, "y": 2},
+ {"matrix": [2, 2], "x": 2, "y": 2},
+
+ {"matrix": [3, 0], "x": 0, "y": 3},
+ {"matrix": [3, 1], "x": 1, "y": 3},
+ {"matrix": [3, 2], "x": 2, "y": 3}
+ ]
+ }
}
- } \ No newline at end of file
+}