#include "stick.h"
#ifdef RGB_MATRIX_ENABLE
led_config_t g_led_config = { {
{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }
}, {
{ 0, 0 }, { 20, 0 }, { 40, 0 }, { 60, 0 },
{ 80, 0 }, { 100, 0 }, { 120, 0 }, { 140, 0 },
{ 160, 0 }, { 180, 0 }, { 200, 0 }, { 220, 0 },
}, {
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
} };
#endif
void eeconfig_init_kb(void) {
#ifdef RGBLIGHT_ENABLE
rgblight_enable(); rgblight_sethsv(0, 255, 255); # ifdef RGBLIGHT_ANIMATIONS
rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL + 2); # endif
#endif
#ifdef RGB_MATRIX_ENABLE
rgb_matrix_enable(); #endif
eeconfig_update_kb(0);
eeconfig_init_user();
}