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