2
0

config.h 683 B

123456789101112131415161718192021222324
  1. #pragma once
  2. /* Use I2C rather than serial communicaiton to reduce latency. */
  3. #define USE_I2C
  4. /* Turn off RGB lighting when the host goes to sleep. */
  5. #define RGBLIGHT_SLEEP
  6. /* Use an extra LED on the right side since it's wider on the 65% PCB. */
  7. #undef RGBLED_NUM
  8. #define RGBLED_NUM 17
  9. /* Set up RGB lighting so it works with either side as master. */
  10. #define RGBLED_SPLIT { 8, 9 }
  11. /* Make mouse operation smoother. */
  12. #define MOUSEKEY_DELAY 0
  13. #define MOUSEKEY_INTERVAL 16
  14. /* Lower mouse speed to adjust for reduced MOUSEKEY_INTERVAL. */
  15. #define MOUSEKEY_MAX_SPEED 7
  16. #define MOUSEKEY_TIME_TO_MAX 150
  17. #define MOUSEKEY_WHEEL_MAX_SPEED 4
  18. #define MOUSEKEY_WHEEL_TIME_TO_MAX 150