-
Notifications
You must be signed in to change notification settings - Fork 0
/
interfaceTest.ino
93 lines (47 loc) · 988 Bytes
/
interfaceTest.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#ifdef EXTERNAL_IDE
#include <Arduino.h>
int main(void) {
init();
setup();
while(true) {
loop();
}
}
#endif
#include <portManipulations.h>
#include "sekvojHW.h"
extern sekvojHW hardware;
uint8_t latestButton;
uint8_t theButtonBefore;
uint8_t latestLED;
uint8_t theLEDBefore;
bool newEvent;
void callback(uint8_t v) {
latestButton = v;
if (hardware.getButtonState(v) == IHWLayer::DOWN) {
newEvent = true;
}
}
void setup() {
hardware.init(callback);
hardware.clearDisplay();
}
void loop() {
if (newEvent) {
newEvent = false;
hardware.clearDisplay();
hardware.writeDisplayNumber(latestButton);
if (latestButton == 2) {
theLEDBefore = latestLED;
latestLED++;
}
if (latestButton == 3) {
theLEDBefore = latestLED;
latestLED--;
}
hardware.writeDisplayText(" ");
hardware.writeDisplayNumber(latestLED);
hardware.setLED(latestLED, IHWLayer::ON);
hardware.setLED(theLEDBefore, IHWLayer::OFF);
}
}