1
0
Fork 0

converted to new format

This commit is contained in:
Jack Humbert 2016-11-23 18:52:02 -05:00
parent 3d7aaa31e4
commit 2e23689b8e
4 changed files with 217 additions and 126 deletions

View file

@ -183,6 +183,19 @@ void rgblight_init(void) {
}
}
void rgblight_update_dword(uint32_t dword) {
rgblight_config.raw = dword;
eeconfig_update_rgblight(rgblight_config.raw);
if (rgblight_config.enable)
rgblight_mode(rgblight_config.mode);
else {
#ifdef RGBLIGHT_ANIMATIONS
rgblight_timer_disable();
#endif
rgblight_set();
}
}
void rgblight_increase(void) {
uint8_t mode = 0;
if (rgblight_config.mode < RGBLIGHT_MODES) {