diff options
author | Brad <broswen@users.noreply.github.com> | 2018-07-29 10:42:11 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-07-29 08:42:11 -0700 |
commit | 595f3cbe5bb06eab583352a047c89859a6fa0753 (patch) | |
tree | 7061681a1dde9f7c3326cd6e8c96d34d9716a46e /quantum/rgblight.h | |
parent | f1513c3ad21822a376eb50fb8331e63617a0b2db (diff) | |
download | qmk_firmware-595f3cbe5bb06eab583352a047c89859a6fa0753.tar.gz |
Added alternating led underglow pattern (#3498)
* added alternating led pattern
* added alternating with rgblight_config values
* removed my comments
Diffstat (limited to 'quantum/rgblight.h')
-rw-r--r-- | quantum/rgblight.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/quantum/rgblight.h b/quantum/rgblight.h index 0f7b5ffb5..ba010dfae 100644 --- a/quantum/rgblight.h +++ b/quantum/rgblight.h @@ -17,7 +17,7 @@ #define RGBLIGHT_H #ifdef RGBLIGHT_ANIMATIONS - #define RGBLIGHT_MODES 35 + #define RGBLIGHT_MODES 36 #else #define RGBLIGHT_MODES 1 #endif @@ -166,5 +166,6 @@ void rgblight_effect_snake(uint8_t interval); void rgblight_effect_knight(uint8_t interval); void rgblight_effect_christmas(void); void rgblight_effect_rgbtest(void); +void rgblight_effect_alternating(void); #endif |