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/m10a/keyboard.json | |
| parent | 539fa21bf80308a21048334909b6512917aa3c7b (diff) | |
Migrate features from rules.mk to data drive - LMN (#23277)
Diffstat (limited to 'keyboards/m10a/keyboard.json')
| -rw-r--r-- | keyboards/m10a/keyboard.json | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/keyboards/m10a/keyboard.json b/keyboards/m10a/keyboard.json new file mode 100644 index 0000000000..7f2c7c90b7 --- /dev/null +++ b/keyboards/m10a/keyboard.json @@ -0,0 +1,51 @@ +{ + "keyboard_name": "M10-A", + "manufacturer": "RAMA WORKS", + "url": "", + "maintainer": "qmk", + "usb": { + "vid": "0x5241", + "pid": "0x00AA", + "device_version": "0.0.1" + }, + "features": { + "backlight": true, + "bootmagic": false, + "command": false, + "console": false, + "extrakey": true, + "mousekey": true, + "nkro": true, + "unicode": true + }, + "matrix_pins": { + "cols": ["F5", "F1", "F0"], + "rows": ["B6", "F7", "F6", "D6"] + }, + "diode_direction": "ROW2COL", + "backlight": { + "pin": "B7", + "levels": 6 + }, + "processor": "atmega32u4", + "bootloader": "atmel-dfu", + "layouts": { + "LAYOUT": { + "layout": [ + {"matrix": [0, 0], "x": 0, "y": 0}, + {"matrix": [0, 1], "x": 1, "y": 0}, + {"matrix": [0, 2], "x": 2, "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, 2], "x": 1, "y": 3, "w": 2} + ] + } + } +} |