kbd_led_state_t: add whole_kbd_color member

This commit is contained in:
Richard Sailer 2019-08-19 05:28:46 +02:00
parent 68eb899f71
commit 06bb6801df

View file

@ -89,6 +89,7 @@ struct kbd_led_state_t {
u8 brightness; u8 brightness;
u8 blinking_pattern; u8 blinking_pattern;
u8 whole_kbd_color;
}; };
struct blinking_pattern_t { struct blinking_pattern_t {
@ -173,7 +174,8 @@ static struct kbd_led_state_t kbd_led_state = {
.right = KB_COLOR_DEFAULT, .extra = KB_COLOR_DEFAULT .right = KB_COLOR_DEFAULT, .extra = KB_COLOR_DEFAULT
}, },
.brightness = BRIGHTNESS_DEFAULT, .brightness = BRIGHTNESS_DEFAULT,
.blinking_pattern = DEFAULT_BLINKING_PATTERN .blinking_pattern = DEFAULT_BLINKING_PATTERN,
.whole_kbd_color = 7
}; };
static struct color_list_t color_list = { static struct color_list_t color_list = {