velocikey.h 294 B

12345678910111213
  1. #ifndef VELOCIKEY_H
  2. #define VELOCIKEY_H
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. bool velocikey_enabled(void);
  6. void velocikey_toggle(void);
  7. void velocikey_accelerate(void);
  8. void velocikey_decelerate(void);
  9. uint8_t velocikey_match_speed(uint8_t minValue, uint8_t maxValue);
  10. #endif