summaryrefslogtreecommitdiffstats
path: root/quantum/rgblight.h
diff options
context:
space:
mode:
authorBrad <broswen@users.noreply.github.com>2018-07-29 17:42:11 +0200
committerDrashna Jaelre <drashna@live.com>2018-07-29 17:42:11 +0200
commit595f3cbe5bb06eab583352a047c89859a6fa0753 (patch)
tree7061681a1dde9f7c3326cd6e8c96d34d9716a46e /quantum/rgblight.h
parentf1513c3ad21822a376eb50fb8331e63617a0b2db (diff)
downloadqmk_firmware-595f3cbe5bb06eab583352a047c89859a6fa0753.tar.gz
qmk_firmware-595f3cbe5bb06eab583352a047c89859a6fa0753.tar.xz
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.h3
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