config.h 557 B

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