From 539fa21bf80308a21048334909b6512917aa3c7b Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Fri, 15 Mar 2024 01:42:15 +0000 Subject: Migrate features from rules.mk to data driven - IJK (#23276) --- keyboards/jkdlab/binary_monkey/info.json | 32 ---------------------- keyboards/jkdlab/binary_monkey/keyboard.json | 40 ++++++++++++++++++++++++++++ keyboards/jkdlab/binary_monkey/rules.mk | 12 --------- 3 files changed, 40 insertions(+), 44 deletions(-) delete mode 100644 keyboards/jkdlab/binary_monkey/info.json create mode 100644 keyboards/jkdlab/binary_monkey/keyboard.json delete mode 100644 keyboards/jkdlab/binary_monkey/rules.mk (limited to 'keyboards/jkdlab/binary_monkey') diff --git a/keyboards/jkdlab/binary_monkey/info.json b/keyboards/jkdlab/binary_monkey/info.json deleted file mode 100644 index 50b92ff899..0000000000 --- a/keyboards/jkdlab/binary_monkey/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "keyboard_name": "Binary_Monkey", - "manufacturer": "JKDLAB.", - "url": "https://gumroad.com/jkdlab", - "maintainer": "JKDLAB.", - "usb": { - "vid": "0x4934", - "pid": "0x0101", - "device_version": "0.0.1", - "max_power": 100 - }, - "matrix_pins": { - "cols": ["D1", "D2", "D3"], - "rows": ["D0"] - }, - "diode_direction": "COL2ROW", - "bootmagic": { - "matrix": [0, 2] - }, - "processor": "atmega32u4", - "bootloader": "atmel-dfu", - "layouts": { - "LAYOUT": { - "layout": [ - {"matrix": [0, 1], "x": 0, "y": 0}, - {"matrix": [0, 2], "x": 1, "y": 0}, - - {"matrix": [0, 0], "x": 0, "y": 1, "w": 2} - ] - } - } -} diff --git a/keyboards/jkdlab/binary_monkey/keyboard.json b/keyboards/jkdlab/binary_monkey/keyboard.json new file mode 100644 index 0000000000..c1aad15cb4 --- /dev/null +++ b/keyboards/jkdlab/binary_monkey/keyboard.json @@ -0,0 +1,40 @@ +{ + "keyboard_name": "Binary_Monkey", + "manufacturer": "JKDLAB.", + "url": "https://gumroad.com/jkdlab", + "maintainer": "JKDLAB.", + "usb": { + "vid": "0x4934", + "pid": "0x0101", + "device_version": "0.0.1", + "max_power": 100 + }, + "features": { + "bootmagic": true, + "command": false, + "console": false, + "extrakey": true, + "mousekey": false, + "nkro": false + }, + "matrix_pins": { + "cols": ["D1", "D2", "D3"], + "rows": ["D0"] + }, + "diode_direction": "COL2ROW", + "bootmagic": { + "matrix": [0, 2] + }, + "processor": "atmega32u4", + "bootloader": "atmel-dfu", + "layouts": { + "LAYOUT": { + "layout": [ + {"matrix": [0, 1], "x": 0, "y": 0}, + {"matrix": [0, 2], "x": 1, "y": 0}, + + {"matrix": [0, 0], "x": 0, "y": 1, "w": 2} + ] + } + } +} diff --git a/keyboards/jkdlab/binary_monkey/rules.mk b/keyboards/jkdlab/binary_monkey/rules.mk deleted file mode 100644 index 6fe874e748..0000000000 --- a/keyboards/jkdlab/binary_monkey/rules.mk +++ /dev/null @@ -1,12 +0,0 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite -MOUSEKEY_ENABLE = no # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output -- cgit v1.2.3