config.h 516 B

1234567891011121314151617181920212223242526
  1. #pragma once
  2. #include "../../config.h"
  3. #define USE_SERIAL
  4. #define EE_HANDS
  5. // LED strip stuff
  6. #ifdef RGBLIGHT_ENABLE
  7. // Who thought it was a good idea to predefine these in the rev2/config.h ???
  8. #ifdef RGBLED_NUM
  9. #undef RGBLED_NUM
  10. #endif
  11. #define RGBLED_NUM 12
  12. #define RGBLIGHT_HUE_STEP 6
  13. #define RGBLIGHT_SAT_STEP 12
  14. #define RGBLIGHT_VAL_STEP 20
  15. #define RGBLIGHT_ANIMATIONS
  16. #define RGBLIGHT_EFFECT_SNAKE_LENGTH 6
  17. #define RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL 2000
  18. #define RGBLIGHT_EFFECT_CHRISTMAS_STEP 1
  19. #endif