You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.7 KiB

  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "config_common.h"
  4. #ifdef AUDIO_ENABLE
  5. #define STARTUP_SONG SONG(PLANCK_SOUND)
  6. // #define STARTUP_SONG SONG(NO_SOUND)
  7. #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
  8. SONG(COLEMAK_SOUND), \
  9. SONG(DVORAK_SOUND) \
  10. }
  11. #endif
  12. //#define LEADER_TIMEOUT 300
  13. //#define BACKLIGHT_BREATHING
  14. //#define PERMISSIVE_HOLD
  15. // #define QMK_KEYS_PER_SCAN 4
  16. //audio clicky
  17. //#define AUDIO_CLICKY
  18. // to enable clicky on startup
  19. //#define AUDIO_CLICKY_ON
  20. //#define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f
  21. /* ws2812 RGB LED
  22. #define RGB_DI_PIN B5
  23. #define RGBLIGHT_ANIMATIONS
  24. #define RGBLED_NUM 8 // Number of LEDs
  25. #define RGBLIGHT_HUE_STEP 10
  26. #define RGBLIGHT_SAT_STEP 17
  27. */
  28. #undef PLANCK_MIT_LAYOUT
  29. //#define MUON_LEFT
  30. #undef DEBOUNCE
  31. #define DEBOUNCE 0
  32. //rgb-reactive
  33. //#define RGB_MATRIX_KEYPRESSES
  34. //#define EECONFIG_RGB_MATRIX (uint32_t *)16
  35. //skip usb startup check
  36. //#define NO_USB_STARTUP_CHECK
  37. /*
  38. * MIDI options
  39. */
  40. /* Prevent use of disabled MIDI features in the keymap */
  41. //#define MIDI_ENABLE_STRICT 1
  42. /* enable basic MIDI features:
  43. - MIDI notes can be sent when in Music mode is on
  44. */
  45. #define MIDI_BASIC
  46. /* enable advanced MIDI features:
  47. - MIDI notes can be added to the keymap
  48. - Octave shift and transpose
  49. - Virtual sustain, portamento, and modulation wheel
  50. - etc.
  51. */
  52. //#define MIDI_ADVANCED
  53. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  54. //#define MIDI_TONE_KEYCODE_OCTAVES 2
  55. // Most tactile encoders have detents every 4 stages
  56. #define ENCODER_RESOLUTION 4
  57. #endif