config.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. #define LEADER_TIMEOUT 300
  5. #define BACKLIGHT_BREATHING
  6. /* ws2812 RGB LED */
  7. #define RGB_DI_PIN B1
  8. #define RGBLIGHT_EFFECT_BREATHING
  9. #define RGBLIGHT_EFFECT_RAINBOW_MOOD
  10. #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
  11. #define RGBLIGHT_EFFECT_SNAKE
  12. #define RGBLIGHT_EFFECT_KNIGHT
  13. #define RGBLIGHT_EFFECT_CHRISTMAS
  14. #define RGBLIGHT_EFFECT_STATIC_GRADIENT
  15. #define RGBLIGHT_EFFECT_RGB_TEST
  16. #define RGBLIGHT_EFFECT_ALTERNATING
  17. #define RGBLIGHT_EFFECT_TWINKLE
  18. #define RGBLED_NUM 8 // Number of LEDs
  19. #define RGBLIGHT_HUE_STEP 10
  20. #define RGBLIGHT_SAT_STEP 17
  21. /*
  22. * MIDI options
  23. */
  24. /* enable basic MIDI features:
  25. - MIDI notes can be sent when in Music mode is on
  26. */
  27. #define MIDI_BASIC
  28. /* enable advanced MIDI features:
  29. - MIDI notes can be added to the keymap
  30. - Octave shift and transpose
  31. - Virtual sustain, portamento, and modulation wheel
  32. - etc.
  33. */
  34. //#define MIDI_ADVANCED
  35. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  36. //#define MIDI_TONE_KEYCODE_OCTAVES 2
  37. #endif