]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/velocikey.h
Velocikey: Match RGB animation speed to typing speed (#3754)
[qmk_firmware.git] / quantum / velocikey.h
diff --git a/quantum/velocikey.h b/quantum/velocikey.h
new file mode 100644 (file)
index 0000000..1910f0f
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef VELOCIKEY_H
+#define VELOCIKEY_H
+
+#include <stdint.h>
+#include <stdbool.h>
+
+bool velocikey_enabled(void);
+void velocikey_toggle(void);
+void velocikey_accelerate(void);
+void velocikey_decelerate(void);
+uint8_t velocikey_match_speed(uint8_t minValue, uint8_t maxValue);
+
+#endif
\ No newline at end of file