diff options
Diffstat (limited to 'quantum/velocikey.h')
-rw-r--r-- | quantum/velocikey.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/quantum/velocikey.h b/quantum/velocikey.h new file mode 100644 index 000000000..1910f0f4e --- /dev/null +++ b/quantum/velocikey.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef VELOCIKEY_H | ||
2 | #define VELOCIKEY_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include <stdbool.h> | ||
6 | |||
7 | bool velocikey_enabled(void); | ||
8 | void velocikey_toggle(void); | ||
9 | void velocikey_accelerate(void); | ||
10 | void velocikey_decelerate(void); | ||
11 | uint8_t velocikey_match_speed(uint8_t minValue, uint8_t maxValue); | ||
12 | |||
13 | #endif \ No newline at end of file | ||