diff options
author | dungdung <dungdung@users.noreply.github.com> | 2017-02-06 14:08:21 -0800 |
---|---|---|
committer | dungdung <dungdung@users.noreply.github.com> | 2017-02-06 14:18:20 -0800 |
commit | 0e548f8b5d6b89de877f098ea919eaea87511b6e (patch) | |
tree | 7e0c89d96d59d0e4596dc9e71dc877840c327c72 /quantum/rgblight.h | |
parent | 246d2583ff5ceacdfcd877ac1b29762773dade0b (diff) | |
download | qmk_firmware-0e548f8b5d6b89de877f098ea919eaea87511b6e.tar.gz |
Christmas mode now works with even RGBED_NUM
Added Christmas mode steps to reduce red and green colors blending into each other
Added Christmas mode interval
Increased green hue to 120
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 726b8de72..12e858305 100644 --- a/quantum/rgblight.h +++ b/quantum/rgblight.h @@ -22,6 +22,14 @@ #define RGBLIGHT_EFFECT_DUALKNIGHT_LENGTH 4 #endif +#ifndef RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL +#define RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL 1000 +#endif + +#ifndef RGBLIGHT_EFFECT_CHRISTMAS_STEP +#define RGBLIGHT_EFFECT_CHRISTMAS_STEP 2 +#endif + #ifndef RGBLIGHT_HUE_STEP #define RGBLIGHT_HUE_STEP 10 #endif |