diff options
Diffstat (limited to 'keyboards/keebio/chocopad/chocopad.c')
| -rw-r--r-- | keyboards/keebio/chocopad/chocopad.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/keebio/chocopad/chocopad.c b/keyboards/keebio/chocopad/chocopad.c index f54753af5..db62f02cc 100644 --- a/keyboards/keebio/chocopad/chocopad.c +++ b/keyboards/keebio/chocopad/chocopad.c | |||
| @@ -1 +1,18 @@ | |||
| 1 | #include "chocopad.h" | 1 | #include "chocopad.h" |
| 2 | |||
| 3 | void eeconfig_init_kb(void) { | ||
| 4 | #ifdef BACKLIGHT_ENABLE | ||
| 5 | backlight_enable(); | ||
| 6 | backlight_level(5); | ||
| 7 | #endif | ||
| 8 | #ifdef RGBLIGHT_ENABLE | ||
| 9 | rgblight_enable(); // Enable RGB by default | ||
| 10 | rgblight_sethsv(0, 255, 255); // Set default HSV - red hue, full saturation, full brightness | ||
| 11 | #ifdef RGBLIGHT_ANIMATIONS | ||
| 12 | rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL + 2); // set to RGB_RAINBOW_SWIRL by default | ||
| 13 | #endif | ||
| 14 | #endif | ||
| 15 | |||
| 16 | eeconfig_update_kb(0); | ||
| 17 | eeconfig_init_user(); | ||
| 18 | } | ||
