|
@@ -11,6 +11,9 @@ bool actionDone[5];
|
|
|
DigitalPort LED[5];
|
|
|
DigitalPort BUTTON[5];
|
|
|
|
|
|
+// Counter
|
|
|
+uint32_t counter(0);
|
|
|
+
|
|
|
void setup (USER_MODE) {
|
|
|
// Start
|
|
|
digitalWrite(L0_LED, true);
|
|
@@ -59,10 +62,15 @@ void loop (USER_MODE) {
|
|
|
if (!buttonReleased[i] && !actionDone[i]) {
|
|
|
digitalToggle(LED[i]);
|
|
|
actionDone[i] = true;
|
|
|
+ counter ++;
|
|
|
+ counter %= 20;
|
|
|
|
|
|
// Show action on LCD
|
|
|
gotoLineColumn(MODE_ 1, 13 - i);
|
|
|
printChar(MODE_ '1');
|
|
|
+
|
|
|
+ gotoLineColumn(MODE_ 2, 12);
|
|
|
+ printUnsigned(MODE_ counter);
|
|
|
}
|
|
|
}
|
|
|
}
|