diff options
author | Ryan <fauxpark@gmail.com> | 2021-05-27 15:21:15 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 22:21:15 -0700 |
commit | 06aea834c420d5c11bbcf64d37596cb0cee9af98 (patch) | |
tree | e76319f1d5a4ba22c38d8d899f74a348f37caae3 /quantum/backlight/backlight.h | |
parent | e128d454206a2d0622b96d7793758ad7e6965f3d (diff) | |
download | qmk_firmware-06aea834c420d5c11bbcf64d37596cb0cee9af98.tar.gz qmk_firmware-06aea834c420d5c11bbcf64d37596cb0cee9af98.zip |
Backlight: add defines for default level and breathing state (#12560)
Diffstat (limited to 'quantum/backlight/backlight.h')
-rw-r--r-- | quantum/backlight/backlight.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/backlight/backlight.h b/quantum/backlight/backlight.h index 3e506737d..c30c70fd6 100644 --- a/quantum/backlight/backlight.h +++ b/quantum/backlight/backlight.h | |||
@@ -55,7 +55,11 @@ void backlight_decrease(void); | |||
55 | void backlight_level_noeeprom(uint8_t level); | 55 | void backlight_level_noeeprom(uint8_t level); |
56 | void backlight_level(uint8_t level); | 56 | void backlight_level(uint8_t level); |
57 | uint8_t get_backlight_level(void); | 57 | uint8_t get_backlight_level(void); |
58 | |||
59 | uint8_t eeconfig_read_backlight(void); | ||
60 | void eeconfig_update_backlight(uint8_t val); | ||
58 | void eeconfig_update_backlight_current(void); | 61 | void eeconfig_update_backlight_current(void); |
62 | void eeconfig_update_backlight_default(void); | ||
59 | 63 | ||
60 | // implementation specific | 64 | // implementation specific |
61 | void backlight_init_ports(void); | 65 | void backlight_init_ports(void); |