config.h 555 B

123456789101112131415161718192021222324252627282930
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. /* Use I2C or Serial, not both */
  5. #define USE_SERIAL
  6. // #define USE_I2C
  7. /* Select hand configuration */
  8. // #define MASTER_LEFT
  9. // #define _MASTER_RIGHT
  10. #define EE_HANDS
  11. #ifdef SUBPROJECT_rev2
  12. /* RGB Underglow */
  13. #undef RGBLED_NUM
  14. #define RGBLIGHT_ANIMATIONS
  15. #define RGBLED_NUM 8
  16. #endif
  17. #undef TAPPING_TERM
  18. #define TAPPING_TERM 200 //At 500 some bad logic takes hold
  19. #define PREVENT_STUCK_MODIFIERS
  20. #define IGNORE_MOD_TAP_INTERRUPT
  21. #define PERMISSIVE_HOLD
  22. #endif