config.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. #define LEADER_TIMEOUT 300
  5. //#define BACKLIGHT_BREATHING
  6. #define PREVENT_STUCK_MODIFIERS
  7. //audio clicky
  8. #define AUDIO_CLICKY
  9. // to enable clicky on startup
  10. //#define AUDIO_CLICKY_ON
  11. #define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f
  12. /* ws2812 RGB LED
  13. #define RGB_DI_PIN B5
  14. #define RGBLIGHT_ANIMATIONS
  15. #define RGBLED_NUM 8 // Number of LEDs
  16. #define RGBLIGHT_HUE_STEP 10
  17. #define RGBLIGHT_SAT_STEP 17
  18. */
  19. #undef PLANCK_MIT_LAYOUT
  20. #undef DEBOUNCE
  21. #define DEBOUNCE 0
  22. //rgb-reactive
  23. #define RGB_MATRIX_KEYPRESSES
  24. #define EECONFIG_RGB_MATRIX (uint32_t *)16
  25. //skip usb startup check
  26. //#define NO_USB_STARTUP_CHECK
  27. /*
  28. * MIDI options
  29. */
  30. /* Prevent use of disabled MIDI features in the keymap */
  31. //#define MIDI_ENABLE_STRICT 1
  32. /* enable basic MIDI features:
  33. - MIDI notes can be sent when in Music mode is on
  34. */
  35. #define MIDI_BASIC
  36. /* enable advanced MIDI features:
  37. - MIDI notes can be added to the keymap
  38. - Octave shift and transpose
  39. - Virtual sustain, portamento, and modulation wheel
  40. - etc.
  41. */
  42. //#define MIDI_ADVANCED
  43. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  44. //#define MIDI_TONE_KEYCODE_OCTAVES 2
  45. #endif