diff --git a/keyboards/handwired/feather_stm32f405_express/config.h b/keyboards/handwired/feather_stm32f405_express/config.h index 5e31c8c5fd..bdfb32ff60 100644 --- a/keyboards/handwired/feather_stm32f405_express/config.h +++ b/keyboards/handwired/feather_stm32f405_express/config.h @@ -6,8 +6,6 @@ #define I2C1_CLOCK_SPEED 400000 #define I2C1_DUTY_CYCLE FAST_DUTY_CYCLE_16_9 -#define WS2812_PIN C0 - #define OLED_DISPLAY_128X128 #define OLED_UPDATE_INTERVAL 100 diff --git a/keyboards/handwired/feather_stm32f405_express/info.json b/keyboards/handwired/feather_stm32f405_express/keyboard.json similarity index 91% rename from keyboards/handwired/feather_stm32f405_express/info.json rename to keyboards/handwired/feather_stm32f405_express/keyboard.json index 8650fdbc47..952395e26c 100644 --- a/keyboards/handwired/feather_stm32f405_express/info.json +++ b/keyboards/handwired/feather_stm32f405_express/keyboard.json @@ -7,27 +7,32 @@ "features": { "bootmagic": true, "command": false, - "console": false, + "console": true, "extrakey": true, + "haptic": true, "mousekey": true, - "nkro": true + "nkro": true, + "oled": true + }, + "haptic": { + "driver": "drv2605l" }, "matrix_pins": { "cols": [null, null, null, null], "rows": [null, null, null, null] }, "processor": "STM32F405", + "rgblight": { + "led_count": 1, + "pin": "C0", + "sleep": true + }, "url": "", "usb": { "device_version": "1.0.0", "pid": "0x0000", "vid": "0xFEED" }, - "rgblight": { - "led_count": 1, - "pin": "C0", - "sleep": true - }, "layouts": { "LAYOUT_ortho_4x4": { "layout": [ diff --git a/keyboards/handwired/feather_stm32f405_express/rules.mk b/keyboards/handwired/feather_stm32f405_express/rules.mk deleted file mode 100644 index bc6230136b..0000000000 --- a/keyboards/handwired/feather_stm32f405_express/rules.mk +++ /dev/null @@ -1,5 +0,0 @@ -# This file intentionally left blank -OLED_ENABLE = yes -HAPTIC_ENABLE = yes -HAPTIC_DRIVER = drv2605l -CONSOLE_ENABLE = yes