diff options
author | Danny <nooges@users.noreply.github.com> | 2020-04-25 17:26:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-25 14:26:26 -0700 |
commit | 32bab55defe016fa945e73668cdf22e34df8fa34 (patch) | |
tree | d6b413ab7bb84ad9debe04f57cb616261cfcb92f /keyboards/keebio/iris/rev2/rev2.c | |
parent | 28e5969f780ec4a29ee27f55af60fab88369d1c4 (diff) |
Add Keebio lighting defaults (#8884)
* Set Iris LED/RGB defaults
* Add lighting defaults for more boards
Diffstat (limited to 'keyboards/keebio/iris/rev2/rev2.c')
-rw-r--r-- | keyboards/keebio/iris/rev2/rev2.c | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/keyboards/keebio/iris/rev2/rev2.c b/keyboards/keebio/iris/rev2/rev2.c index 8575243f0d..70c30695ad 100644 --- a/keyboards/keebio/iris/rev2/rev2.c +++ b/keyboards/keebio/iris/rev2/rev2.c @@ -1,12 +1,5 @@ #include "rev2.h" -#ifdef SSD1306OLED -void led_set_kb(uint8_t usb_led) { - // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here - led_set_user(usb_led); -} -#endif - #ifdef SWAP_HANDS_ENABLE __attribute__ ((weak)) // swap-hands action needs a matrix to define the swap @@ -26,3 +19,19 @@ const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { }; #endif +void eeconfig_init_kb(void) { +#ifdef BACKLIGHT_ENABLE + backlight_enable(); + backlight_level(3); +#endif +#ifdef RGBLIGHT_ENABLE + rgblight_enable(); // Enable RGB by default + rgblight_sethsv(0, 255, 255); // Set default HSV - red hue, full saturation, full brightness +#ifdef RGBLIGHT_ANIMATIONS + rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL + 2); // set to RGB_RAINBOW_SWIRL by default +#endif +#endif + + eeconfig_update_kb(0); + eeconfig_init_user(); +} |