TeensyPwm/rotary.h
2015-02-14 20:13:55 +01:00

17 lines
214 B
C

#ifndef ROTARY_H_
#define ROTARY_H_
const uint32_t DEBOUNCING_DEAD_TIME = 100;
const uint32_t DEBOUNCING_REPEAT = 100;
void rotaryInit();
int getAndResetRotaryCount();
bool getAndResetSwitchState();
#endif