diff options
Diffstat (limited to 'keyboards/keebio/bdn9/bdn9.c')
-rw-r--r-- | keyboards/keebio/bdn9/bdn9.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/keebio/bdn9/bdn9.c b/keyboards/keebio/bdn9/bdn9.c index 0ff55fd6d..f3842d098 100644 --- a/keyboards/keebio/bdn9/bdn9.c +++ b/keyboards/keebio/bdn9/bdn9.c | |||
@@ -1 +1,18 @@ | |||
1 | #include "bdn9.h" | 1 | #include "bdn9.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 | } | ||