]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/velocikey.h
[Keyboard] leds in default keymap (#6357)
[qmk_firmware.git] / quantum / velocikey.h
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