config.h 661 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. /* Use I2C or Serial, not both */
  5. #define USE_I2C
  6. //#define USE_SERIAL
  7. /* Select hand configuration */
  8. #define MASTER_LEFT
  9. // #define _MASTER_RIGHT
  10. // #define EE_HANDS
  11. #define FLIP_HALF
  12. #define SSD1306OLED
  13. #define PREVENT_STUCK_MODIFIERS
  14. #define TAPPING_FORCE_HOLD
  15. #define TAPPING_TERM 100
  16. #ifdef SUBPROJECT_rev1
  17. #include "../../rev1/config.h"
  18. #endif
  19. #ifdef SUBPROJECT_rev2
  20. #include "../../rev2/config.h"
  21. #endif
  22. #undef RGBLED_NUM
  23. #define RGBLIGHT_ANIMATIONS
  24. #define RGBLED_NUM 6
  25. #define RGBLIGHT_HUE_STEP 10
  26. #define RGBLIGHT_SAT_STEP 17
  27. #define RGBLIGHT_VAL_STEP 17
  28. #endif