Configure keyboard matrix from info.json (#10817)

* Make parameters from info.json available to the build system

* move all clueboard settings to info.json

* code formatting

* make flake8 happy

* make flake8 happy

* make qmk lint happy

* Add support for specifying led indicators in json

* move led indicators to the clueboard info.json

* Apply suggestions from code review

Co-authored-by: Erovia <Erovia@users.noreply.github.com>

* add missing docstring

Co-authored-by: Erovia <Erovia@users.noreply.github.com>
This commit is contained in:
Zach White
2020-12-30 10:27:37 -08:00
committed by GitHub
parent f231f24dda
commit 47b9b11009
79 changed files with 4791 additions and 3901 deletions

View File

@@ -2,9 +2,31 @@
"keyboard_name": "Clueboard California",
"url": "",
"maintainer": "skullydazed",
"matrix_pins": {
"direct": [
["A10", "A9"],
["A0", "B8"],
[null, "B11"],
["B9", "A8"],
["A7", "B1"],
[null, "B2"]
]
},
"usb": {"pid": "0x23B0"},
"layouts": {
"LAYOUT": {
"layout": [{"x":0, "y":0}, {"x":1, "y":0}, {"x":0, "y":1}, {"x":1, "y":1}, {"x":1, "y":2}, {"x":1.25, "y":3}, {"x":2.25, "y":3}, {"x":2, "y":4}, {"x":3, "y":4}, {"x":3.75, "y":5}]
"layout": [
{"x": 0, "y": 0, "w": 1, "matrix": [0, 0]},
{"x": 1, "y": 0, "w": 1, "matrix": [0, 1]},
{"x": 0, "y": 1, "w": 1, "matrix": [1, 0]},
{"x": 1, "y": 1, "w": 1, "matrix": [1, 1]},
{"x": 1, "y": 2, "w": 1, "matrix": [2, 1]},
{"x": 1.25, "y": 3, "w": 1, "matrix": [3, 0]},
{"x": 2.25, "y": 3, "w": 1, "matrix": [3, 1]},
{"x": 2, "y": 4, "w": 1, "matrix": [4, 0]},
{"x": 3, "y": 4, "w": 1, "matrix": [4, 1]},
{"x": 3.75, "y": 5, "w": 1, "matrix": [5, 1]}
]
}
}
}