-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
ButtonLoop.ino
54 lines (39 loc) · 1.18 KB
/
ButtonLoop.ino
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
/////////////////////////////////////////////////////////////////
#include "Button2.h"
/////////////////////////////////////////////////////////////////
#define BUTTON_PIN 2
/////////////////////////////////////////////////////////////////
Button2 button;
/////////////////////////////////////////////////////////////////
void setup() {
Serial.begin(115200);
delay(50);
Serial.println("\n\nButton Loop Demo");
button.begin(BUTTON_PIN);
}
/////////////////////////////////////////////////////////////////
void loop() {
button.loop();
Serial.println(button.clickToString(button.wait()));
Serial.println(button.getNumberOfClicks());
/*
* or replace the above line with (keep the loop):
if (button.wasPressed()) {
switch(button.read()) {
case single_click:
Serial.println("single");
break;
case double_click:
Serial.println("double");
break;
case triple_click:
Serial.println("triple");
break;
case long_click:
Serial.println("looong");
break;
}
}
*/
}
/////////////////////////////////////////////////////////////////