123456789101112131415161718192021222324252627282930313233 |
- #ifndef PROCESS_AUTO_SHIFT_H
- #define PROCESS_AUTO_SHIFT_H
- #include "quantum.h"
- #ifndef AUTO_SHIFT_TIMEOUT
- # define AUTO_SHIFT_TIMEOUT 175
- #endif
- bool process_auto_shift(uint16_t keycode, keyrecord_t *record);
- void autoshift_enable(void);
- void autoshift_disable(void);
- void autoshift_toggle(void);
- bool autoshift_state(void);
- #endif
|