aboutsummaryrefslogtreecommitdiff
path: root/quantum/visualizer/lcd_backlight.h
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-12-11 02:46:19 +0000
committerQMK Bot <hello@qmk.fm>2020-12-11 02:46:19 +0000
commitfdfcce57e1c46765e0aebf37ad3d9611a7384241 (patch)
tree9524405fef6cc3b16965517735dc0ef315f67ab1 /quantum/visualizer/lcd_backlight.h
parented76f4394fd95413f7da11e2342b0965182ccb95 (diff)
parent501f2fdef115314713e94428d409e5c3b5bfc1c2 (diff)
downloadqmk_firmware-fdfcce57e1c46765e0aebf37ad3d9611a7384241.tar.gz
qmk_firmware-fdfcce57e1c46765e0aebf37ad3d9611a7384241.zip
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum/visualizer/lcd_backlight.h')
-rw-r--r--quantum/visualizer/lcd_backlight.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/visualizer/lcd_backlight.h b/quantum/visualizer/lcd_backlight.h
index 7b0b6a9fd..0a1535edf 100644
--- a/quantum/visualizer/lcd_backlight.h
+++ b/quantum/visualizer/lcd_backlight.h
@@ -24,7 +24,7 @@ SOFTWARE.
24 24
25#ifndef LCD_BACKLIGHT_H_ 25#ifndef LCD_BACKLIGHT_H_
26#define LCD_BACKLIGHT_H_ 26#define LCD_BACKLIGHT_H_
27#include "stdint.h" 27#include <stdint.h>
28 28
29// Helper macros for storing hue, staturation and intensity as unsigned integers 29// Helper macros for storing hue, staturation and intensity as unsigned integers
30#define LCD_COLOR(hue, saturation, intensity) (hue << 16 | saturation << 8 | intensity) 30#define LCD_COLOR(hue, saturation, intensity) (hue << 16 | saturation << 8 | intensity)