- Updated Klor config for updated haptic defines - Music mode is now off for good - Added userspace config for haptics and audio - Went back to numpad 0 on the thumbs - Added haptic and audio keys on the config layer - removed all combos except drag scroll - Updated and added overrides for haptics/audio/Mousekeys
35 lines
No EOL
811 B
C
35 lines
No EOL
811 B
C
#pragma once
|
|
|
|
/* Tapping, Oneshot
|
|
*
|
|
* https://docs.qmk.fm/#/tap_hold
|
|
* https://docs.qmk.fm/#/one_shot_keys
|
|
*
|
|
*/
|
|
|
|
|
|
//Clear variables we plan to use that might be set elsewhere
|
|
#undef TAP_CODE_DELAY
|
|
#undef TAP_HOLD_CAPS_DELAY
|
|
|
|
#undef TAPPING_TERM
|
|
#undef TAPPING_TERM_PER_KEY
|
|
|
|
#undef QUICK_TAP_TERM
|
|
|
|
#undef ONESHOT_TAP_TOGGLE
|
|
#undef ONESHOT_TIMEOUT
|
|
|
|
|
|
//Set common configuration for all keyboards
|
|
#define TAP_CODE_DELAY 5 //time before tap is released
|
|
#define TAP_HOLD_CAPS_DELAY TAP_CODE_DELAY //turning down delay for caps lock so ploopy can do DPI switching
|
|
#define WAIT_DELAY 5 //custom variable to configure time between taps
|
|
|
|
#define TAPPING_TERM 175
|
|
#define TAPPING_TERM_PER_KEY
|
|
|
|
#define QUICK_TAP_TERM 120
|
|
|
|
#define ONESHOT_TAP_TOGGLE 3
|
|
#define ONESHOT_TIMEOUT 2000 |