diff options
| author | Joel Challis | 2024-03-15 02:42:33 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-15 02:42:33 +0100 |
| commit | 80b72487ce053f128817c5d4c625a63cb3cf9c10 (patch) | |
| tree | f81c6a7254e9489f36d50f3f451f4421f1bc5a35 /keyboards/np12/keyboard.json | |
| parent | 539fa21bf80308a21048334909b6512917aa3c7b (diff) | |
Migrate features from rules.mk to data drive - LMN (#23277)
Diffstat (limited to 'keyboards/np12/keyboard.json')
| -rw-r--r-- | keyboards/np12/keyboard.json | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/keyboards/np12/keyboard.json b/keyboards/np12/keyboard.json new file mode 100644 index 0000000000..d7f6f8cfb7 --- /dev/null +++ b/keyboards/np12/keyboard.json @@ -0,0 +1,54 @@ +{ + "keyboard_name": "np12", + "manufacturer": "nut1414", + "url": "https://github.com/nut1414/np12", + "maintainer": "nut1414", + "usb": { + "vid": "0xA4A4", + "pid": "0x4401", + "device_version": "0.0.1" + }, + "features": { + "bootmagic": true, + "command": false, + "console": false, + "encoder": true, + "extrakey": true, + "mousekey": true, + "nkro": false + }, + "matrix_pins": { + "cols": ["D1", "D0", "D4", "C6", "F6"], + "rows": ["D7", "E6", "B4", "F7"] + }, + "diode_direction": "COL2ROW", + "encoder": { + "rotary": [ + {"pin_a": "F4", "pin_b": "F5"} + ] + }, + "processor": "atmega32u4", + "bootloader": "caterina", + "layouts": { + "LAYOUT": { + "layout": [ + {"matrix": [3, 4], "x": 3, "y": 0}, + + {"matrix": [0, 0], "x": 0, "y": 1}, + {"matrix": [0, 1], "x": 1, "y": 1}, + {"matrix": [0, 2], "x": 2, "y": 1}, + {"matrix": [0, 3], "x": 3, "y": 1}, + + {"matrix": [1, 0], "x": 0, "y": 2}, + {"matrix": [1, 1], "x": 1, "y": 2}, + {"matrix": [1, 2], "x": 2, "y": 2}, + {"matrix": [1, 3], "x": 3, "y": 2}, + + {"matrix": [2, 0], "x": 0, "y": 3}, + {"matrix": [2, 1], "x": 1, "y": 3}, + {"matrix": [2, 2], "x": 2, "y": 3}, + {"matrix": [2, 3], "x": 3, "y": 3} + ] + } + } +} |