-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathKeyButton.h
55 lines (47 loc) · 1.03 KB
/
KeyButton.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//@(#) input_pcf.h
#ifndef KeyButton_H
#define KeyButton_H
#include <pcf8574_esp.h>
class KeyButton
{
private:
PCF857x &pcf;
const uint16_t pin;
unsigned long timer = 0;
unsigned long long_timer = 1500;
boolean state = false;
boolean state_long = false;
public:
boolean pressed_long = false;
boolean pressed = false;
KeyButton(const uint16_t pin, PCF857x &pcf_ref) : pin(pin), pcf(pcf_ref)
{
}
void Update()
{
pressed = false;
pressed_long = false;
//button pressed
if (!pcf.read(pin) && !state && millis() - timer >= 50)
{
state = true;
timer = millis();
}
//button pressed long
else if (!pcf.read(pin) && state && !state_long && millis() - timer >= long_timer)
{
state_long = true;
pressed_long = true;
}
//button pressed short
else if (pcf.read(pin) && state && millis() - timer >= 50)
{
if (millis() - timer < long_timer)
pressed = true;
state_long = false;
state = false;
timer = millis();
}
}
};
#endif