22 lines
824 B
C
22 lines
824 B
C
|
#pragma once
|
||
|
|
||
|
// My custom configurations
|
||
|
#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)
|
||
|
#define USB_MAX_POWER_CONSUMPTION 100 // required to be able to use the keyboard with iPad
|
||
|
|
||
|
// Settings for using the keybaord as a mouse
|
||
|
#define MOUSEKEY_DELAY 30
|
||
|
// Delay between pressing a movement key and cursor movement
|
||
|
#define MOUSEKEY_INTERVAL 16
|
||
|
// Time between cursor movements
|
||
|
#define MOUSEKEY_MAX_SPEED 3
|
||
|
// Maximum cursor speed at which acceleration stops
|
||
|
#define MOUSEKEY_TIME_TO_MAX 40
|
||
|
// Time until maximum cursor speed is reached
|
||
|
#define MOUSEKEY_WHEEL_MAX_SPEED 0
|
||
|
// Maximum number of scroll steps per scroll action
|
||
|
#define MOUSEKEY_WHEEL_TIME_TO_MAX 0
|
||
|
// Time until maximum scroll speed is reached
|
||
|
|
||
|
#define MACRO_TIMER 5
|