42 lines
1.4 KiB
C
42 lines
1.4 KiB
C
|
/**===================================================== *
|
||
|
* ========== Keyboard LED Output Indicator ========== *
|
||
|
* ===================================================== *
|
||
|
*
|
||
|
* If you are willing to give up on using the keyboard LEDs for their original purpose,
|
||
|
* you can use them as a convenient way to indicate which output is selected.
|
||
|
*
|
||
|
* KBD_LED_AS_INDICATOR set to 0 will use the keyboard LEDs as normal.
|
||
|
* KBD_LED_AS_INDICATOR set to 1 will use the Caps Lock LED as indicator.
|
||
|
*
|
||
|
* */
|
||
|
|
||
|
#define KBD_LED_AS_INDICATOR 1
|
||
|
|
||
|
/**===================================================== *
|
||
|
* =========== Hotkey for output switching =========== *
|
||
|
* ===================================================== *
|
||
|
*
|
||
|
* Everyone is different, I prefer to use caps lock because I HATE SHOUTING :)
|
||
|
* You might prefer something else. Pick something from the list found at:
|
||
|
*
|
||
|
* https://github.com/hathach/tinyusb/blob/master/src/class/hid/hid.h
|
||
|
*
|
||
|
* defined as HID_KEY_<something>
|
||
|
*
|
||
|
* */
|
||
|
|
||
|
#define HOTKEY_TOGGLE HID_KEY_CAPS_LOCK
|
||
|
|
||
|
/**================================================== *
|
||
|
* ============== Mouse Speed Factor ============== *
|
||
|
* ==================================================
|
||
|
*
|
||
|
* This affects how fast the mouse moves.
|
||
|
*
|
||
|
* MOUSE_SPEED_FACTOR: [1-128], higher values will make very little sense,
|
||
|
* 16 works well for my mouse, but the option to adjust is here if you need it.
|
||
|
*
|
||
|
* */
|
||
|
|
||
|
#define MOUSE_SPEED_FACTOR 16
|