Topuino_Hardware/src/func_button.h

12 lines
122 B
C
Raw Normal View History

2021-08-29 22:14:08 +08:00
#include <Arduino.h>
class FuncButton
{
private:
uint8_t pressedTime;
public:
FuncButton();
void Scan();
};