Allow RGBLIGHT_ANIMATIONS to work on keebio/iris configurator builds (#8482)
[jackhill/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