diff options
author | Fredric Silberberg <frsilb@microsoft.com> | 2018-12-13 18:05:50 -0800 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-12-13 18:30:15 -0800 |
commit | 9e6ee4777995a1ac3dfd7aa4454b0a4ed825d663 (patch) | |
tree | 2454e09fb278a5da9fd8afbafb1a551a386c70e8 /quantum/rgblight.h | |
parent | e8f730595c37a508ad86cc46fa39c7fae4d36800 (diff) |
Added noeeprom versions of set hue, sat, val, and step
Diffstat (limited to 'quantum/rgblight.h')
-rw-r--r-- | quantum/rgblight.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/rgblight.h b/quantum/rgblight.h index 33b279f08c..99ede43c5b 100644 --- a/quantum/rgblight.h +++ b/quantum/rgblight.h @@ -203,6 +203,14 @@ void rgblight_mode_noeeprom(uint8_t mode); void rgblight_toggle_noeeprom(void); void rgblight_enable_noeeprom(void); void rgblight_disable_noeeprom(void); +void rgblight_step_noeeprom(void); +void rgblight_step_reverse_noeeprom(void); +void rgblight_increase_hue_noeeprom(void); +void rgblight_decrease_hue_noeeprom(void); +void rgblight_increase_sat_noeeprom(void); +void rgblight_decrease_sat_noeeprom(void); +void rgblight_increase_val_noeeprom(void); +void rgblight_decrease_val_noeeprom(void); void rgblight_sethsv_eeprom_helper(uint16_t hue, uint8_t sat, uint8_t val, bool write_to_eeprom); void rgblight_mode_eeprom_helper(uint8_t mode, bool write_to_eeprom); |