mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-05 07:52:42 +00:00
12 lines
241 B
C
12 lines
241 B
C
#ifndef MOMENTUM_H
|
|
#define MOMENTUM_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
bool momentum_enabled(void);
|
|
void momentum_accelerate(void);
|
|
void momentum_decay_task(void);
|
|
uint8_t match_momentum(uint8_t minValue, uint8_t maxValue);
|
|
|
|
#endif |