mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
kbd_led_state_t: add whole_kbd_color member
This commit is contained in:
parent
68eb899f71
commit
06bb6801df
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in a new issue