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/monarch | |
| parent | 539fa21bf80308a21048334909b6512917aa3c7b (diff) | |
Migrate features from rules.mk to data drive - LMN (#23277)
Diffstat (limited to 'keyboards/monarch')
| -rw-r--r-- | keyboards/monarch/keyboard.json (renamed from keyboards/monarch/info.json) | 11 | ||||
| -rw-r--r-- | keyboards/monarch/rules.mk | 15 |
2 files changed, 11 insertions, 15 deletions
diff --git a/keyboards/monarch/info.json b/keyboards/monarch/keyboard.json index ff47a1be3e..f5dee1f9f6 100644 --- a/keyboards/monarch/info.json +++ b/keyboards/monarch/keyboard.json @@ -8,6 +8,17 @@ "pid": "0x43C1", "device_version": "0.0.1" }, + "features": { + "backlight": true, + "bootmagic": false, + "command": true, + "console": true, + "encoder": true, + "extrakey": true, + "mousekey": true, + "nkro": true, + "sleep_led": true + }, "matrix_pins": { "cols": ["A10", "A9", "A8", "B15", "B14", "B13", "B12", "B10", "B2", "B1", "B0", "A5", "A7", "A4", "A3", "B6"], "rows": ["A15", "B3", "B11", "A2", "A1", "B9"] diff --git a/keyboards/monarch/rules.mk b/keyboards/monarch/rules.mk deleted file mode 100644 index 195a2958ce..0000000000 --- a/keyboards/monarch/rules.mk +++ /dev/null @@ -1,15 +0,0 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -MOUSEKEY_ENABLE = yes # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = yes # Console for debug -COMMAND_ENABLE = yes # Commands for debug and configuration -NKRO_ENABLE = yes # Enable N-Key Rollover -BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output -SLEEP_LED_ENABLE = yes -ENCODER_ENABLE = yes - |