You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qmk_firmware/quantum/momentum.h

11 lines
210 B

#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