1
0
Fork 0

Groundwork for dedicated color keycodes

This commit is contained in:
Erez Zukerman 2016-11-17 20:56:36 -05:00
parent 9bbc9a7ce0
commit 285c5a91f2
3 changed files with 31 additions and 1 deletions

View file

@ -253,6 +253,13 @@ void rgblight_toggle(void) {
}
}
void rgblight_enable(void) {
rgblight_config.enable = 1;
eeconfig_update_rgblight(rgblight_config.raw);
xprintf("rgblight enable: rgblight_config.enable = %u\n", rgblight_config.enable);
rgblight_mode(rgblight_config.mode);
}
void rgblight_increase_hue(void) {
uint16_t hue;

View file

@ -61,6 +61,7 @@ void rgblight_init(void);
void rgblight_increase(void);
void rgblight_decrease(void);
void rgblight_toggle(void);
void rgblight_enable(void);
void rgblight_step(void);
void rgblight_mode(uint8_t mode);
void rgblight_set(void);