config.h 824 B

123456789101112131415161718192021
  1. #pragma once
  2. // My custom configurations
  3. #define TAPPING_TOGGLE 3 // enable tapping toggle, used to lock level with a custom keycode defined by TT (in my case RAISE, LOWER and MOUSE)
  4. #define USB_MAX_POWER_CONSUMPTION 100 // required to be able to use the keyboard with iPad
  5. // Settings for using the keybaord as a mouse
  6. #define MOUSEKEY_DELAY 30
  7. // Delay between pressing a movement key and cursor movement
  8. #define MOUSEKEY_INTERVAL 16
  9. // Time between cursor movements
  10. #define MOUSEKEY_MAX_SPEED 3
  11. // Maximum cursor speed at which acceleration stops
  12. #define MOUSEKEY_TIME_TO_MAX 40
  13. // Time until maximum cursor speed is reached
  14. #define MOUSEKEY_WHEEL_MAX_SPEED 0
  15. // Maximum number of scroll steps per scroll action
  16. #define MOUSEKEY_WHEEL_TIME_TO_MAX 0
  17. // Time until maximum scroll speed is reached
  18. #define MACRO_TIMER 5