aboutsummaryrefslogtreecommitdiff
path: root/keyboards/keebio/dilly/dilly.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/keebio/dilly/dilly.c')
-rw-r--r--keyboards/keebio/dilly/dilly.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/keebio/dilly/dilly.c b/keyboards/keebio/dilly/dilly.c
index 89affe850..da17277f6 100644
--- a/keyboards/keebio/dilly/dilly.c
+++ b/keyboards/keebio/dilly/dilly.c
@@ -1 +1,18 @@
1#include "dilly.h" 1#include "dilly.h"
2
3void eeconfig_init_kb(void) {
4#ifdef BACKLIGHT_ENABLE
5 backlight_enable();
6 backlight_level(3);
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}