diff options
Diffstat (limited to 'quantum/rgblight_reconfig.h')
| -rw-r--r-- | quantum/rgblight_reconfig.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/quantum/rgblight_reconfig.h b/quantum/rgblight_reconfig.h new file mode 100644 index 000000000..11bd4fd11 --- /dev/null +++ b/quantum/rgblight_reconfig.h | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | #ifndef RGBLIGHT_RECONFIG_H | ||
| 2 | #define RGBLIGHT_RECONFIG_H | ||
| 3 | |||
| 4 | #ifdef RGBLIGHT_ANIMATIONS | ||
| 5 | // for backward compatibility | ||
| 6 | #define RGBLIGHT_EFFECT_BREATHING | ||
| 7 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 8 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 9 | #define RGBLIGHT_EFFECT_SNAKE | ||
| 10 | #define RGBLIGHT_EFFECT_KNIGHT | ||
| 11 | #define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 12 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 13 | #define RGBLIGHT_EFFECT_RGB_TEST | ||
| 14 | #define RGBLIGHT_EFFECT_ALTERNATING | ||
| 15 | #endif | ||
| 16 | |||
| 17 | #ifdef RGBLIGHT_STATIC_PATTERNS | ||
| 18 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 19 | #endif | ||
| 20 | |||
| 21 | // check dynamic animation effects chose ? | ||
| 22 | #if defined(RGBLIGHT_EFFECT_BREATHING) || \ | ||
| 23 | defined(RGBLIGHT_EFFECT_RAINBOW_MOOD) || \ | ||
| 24 | defined(RGBLIGHT_EFFECT_RAINBOW_SWIRL) || \ | ||
| 25 | defined(RGBLIGHT_EFFECT_SNAKE) || \ | ||
| 26 | defined(RGBLIGHT_EFFECT_KNIGHT) || \ | ||
| 27 | defined(RGBLIGHT_EFFECT_CHRISTMAS) || \ | ||
| 28 | defined(RGBLIGHT_EFFECT_RGB_TEST) || \ | ||
| 29 | defined(RGBLIGHT_EFFECT_ALTERNATING) | ||
| 30 | #define RGBLIGHT_USE_TIMER | ||
| 31 | #ifndef RGBLIGHT_ANIMATIONS | ||
| 32 | #define RGBLIGHT_ANIMATIONS // for backward compatibility | ||
| 33 | #endif | ||
| 34 | #endif | ||
| 35 | |||
| 36 | #endif // RGBLIGHT_RECONFIG_H | ||
