diff options
author | Zach White <skullydazed@gmail.com> | 2020-12-30 10:27:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 10:27:37 -0800 |
commit | 47b9b110097a864d6ab76516b2213afd59948527 (patch) | |
tree | 44c4e034c71b361af0cf865b735e09162bbc9656 /keyboards/clueboard/california | |
parent | f231f24ddaac9781201a4ec9d0171c65af788839 (diff) | |
download | qmk_firmware-47b9b110097a864d6ab76516b2213afd59948527.tar.gz qmk_firmware-47b9b110097a864d6ab76516b2213afd59948527.zip |
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>
Diffstat (limited to 'keyboards/clueboard/california')
-rw-r--r-- | keyboards/clueboard/california/california.h | 18 | ||||
-rw-r--r-- | keyboards/clueboard/california/config.h | 21 | ||||
-rw-r--r-- | keyboards/clueboard/california/info.json | 24 | ||||
-rw-r--r-- | keyboards/clueboard/california/keymaps/default/readme.md | 1 |
4 files changed, 24 insertions, 40 deletions
diff --git a/keyboards/clueboard/california/california.h b/keyboards/clueboard/california/california.h index 853b360e2e..ef5b3f3e04 100644 --- a/keyboards/clueboard/california/california.h +++ b/keyboards/clueboard/california/california.h @@ -1,21 +1,3 @@ #pragma once #include "quantum.h" - -// Any changes to the layout names and/or definitions must also be made to info.json - -#define LAYOUT( \ - K00, K01, \ - K10, K11, \ - K21, \ - K30, K31, \ - K40, K41, \ - K51 \ -) { \ - { K00, K01 }, \ - { K10, K11 }, \ - { KC_NO, K21 }, \ - { K30, K31 }, \ - { K40, K41 }, \ - { KC_NO, K51 } \ -} diff --git a/keyboards/clueboard/california/config.h b/keyboards/clueboard/california/config.h index b1426cea4f..b8c5759db6 100644 --- a/keyboards/clueboard/california/config.h +++ b/keyboards/clueboard/california/config.h @@ -1,24 +1,3 @@ #pragma once #include "config_common.h" - -/* USB Device descriptor parameter */ -#define VENDOR_ID 0xC1ED -#define PRODUCT_ID 0x23B0 -#define DEVICE_VER 0x0001 -#define MANUFACTURER Clueboard -#define PRODUCT California Macropad -#define DESCRIPTION A 10-key macropad shaped like California - -/* key matrix pins */ -#define MATRIX_ROWS 6 -#define MATRIX_COLS 2 -#define DIRECT_PINS { \ - { A10, A9 }, \ - { A0, B8 }, \ - { NO_PIN, B11 }, \ - { B9, A8 }, \ - { A7, B1 }, \ - { NO_PIN, B2 } \ -} -#define UNUSED_PINS diff --git a/keyboards/clueboard/california/info.json b/keyboards/clueboard/california/info.json index 2a9ced6e9a..f376643cdd 100644 --- a/keyboards/clueboard/california/info.json +++ b/keyboards/clueboard/california/info.json @@ -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]} + ] } } } diff --git a/keyboards/clueboard/california/keymaps/default/readme.md b/keyboards/clueboard/california/keymaps/default/readme.md new file mode 100644 index 0000000000..f79b015f75 --- /dev/null +++ b/keyboards/clueboard/california/keymaps/default/readme.md @@ -0,0 +1 @@ +Default keymap for the Clueboard California Macropad. |