diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2017-04-08 22:30:37 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2017-04-09 18:34:59 +0300 |
commit | c6ca996f4eaa4cce90e02c123230e1e655c9465a (patch) | |
tree | fcd84ef62dfa042718782e49c10a658b99c118ca /quantum/visualizer/lcd_backlight.c | |
parent | ed1710589f2f63e485c8780c7c8c03e0f65136a0 (diff) | |
download | qmk_firmware-c6ca996f4eaa4cce90e02c123230e1e655c9465a.tar.gz qmk_firmware-c6ca996f4eaa4cce90e02c123230e1e655c9465a.zip |
Combine startup and resume animations
Diffstat (limited to 'quantum/visualizer/lcd_backlight.c')
-rw-r--r-- | quantum/visualizer/lcd_backlight.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/visualizer/lcd_backlight.c b/quantum/visualizer/lcd_backlight.c index 70187d1e0..00de3fab5 100644 --- a/quantum/visualizer/lcd_backlight.c +++ b/quantum/visualizer/lcd_backlight.c | |||
@@ -25,10 +25,10 @@ SOFTWARE. | |||
25 | #include "lcd_backlight.h" | 25 | #include "lcd_backlight.h" |
26 | #include <math.h> | 26 | #include <math.h> |
27 | 27 | ||
28 | static uint8_t current_hue = 0x00; | 28 | static uint8_t current_hue = 0; |
29 | static uint8_t current_saturation = 0x00; | 29 | static uint8_t current_saturation = 0; |
30 | static uint8_t current_intensity = 0xFF; | 30 | static uint8_t current_intensity = 0; |
31 | static uint8_t current_brightness = 0x7F; | 31 | static uint8_t current_brightness = 0; |
32 | 32 | ||
33 | void lcd_backlight_init(void) { | 33 | void lcd_backlight_init(void) { |
34 | lcd_backlight_hal_init(); | 34 | lcd_backlight_hal_init(); |