parent
2caa8ad4ff
commit
e81aa387fa
@ -1,13 +0,0 @@
|
||||
#ifndef MOMENTUM_H
|
||||
#define MOMENTUM_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
bool momentum_enabled(void);
|
||||
void momentum_toggle(void);
|
||||
void momentum_accelerate(void);
|
||||
void momentum_decay_task(void);
|
||||
uint8_t match_momentum(uint8_t minValue, uint8_t maxValue);
|
||||
|
||||
#endif
|
@ -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_decay_task(void);
|
||||
uint8_t velocikey_match_speed(uint8_t minValue, uint8_t maxValue);
|
||||
|
||||
#endif
|
Loading…
Reference in new issue