|
@@ -38,46 +38,18 @@ void setup (USER_MODE) {
|
|
|
}
|
|
|
|
|
|
// Init LCD
|
|
|
- printString(MODE_ "Welcome Jovian");
|
|
|
+ printString(MODE_ "Wake up in ");
|
|
|
+ printUnsigned(MODE_ millis(MODE));
|
|
|
+ printString(MODE_ "ms");
|
|
|
+
|
|
|
+ gotoLineColumn(MODE_ 1, 0);
|
|
|
}
|
|
|
|
|
|
void loop (USER_MODE) {
|
|
|
+ busyWaitUntil(MODE_ counter * 1000);
|
|
|
+ counter++;
|
|
|
|
|
|
- // Shift bits
|
|
|
- for (unsigned int i(0); i < 5; i++) {
|
|
|
- antiBlinkBuffer[i] <<= 1;
|
|
|
-
|
|
|
- if (digitalRead(BUTTON[i]))
|
|
|
- antiBlinkBuffer[i] |= 0x01;
|
|
|
-
|
|
|
- // Command leds with buttons
|
|
|
- if (antiBlinkBuffer[i] == bufferEmpty) {
|
|
|
- buttonReleased[i] = false;
|
|
|
- }
|
|
|
- else if (antiBlinkBuffer[i] == bufferFull) {
|
|
|
- buttonReleased[i] = true;
|
|
|
- actionDone[i] = false;
|
|
|
- }
|
|
|
-
|
|
|
- if (!buttonReleased[i] && !actionDone[i]) {
|
|
|
- digitalToggle(LED[i]);
|
|
|
- actionDone[i] = true;
|
|
|
- counter ++;
|
|
|
-
|
|
|
- // Prevent persistent digit
|
|
|
- if (counter >= 20) {
|
|
|
- counter = 0;
|
|
|
- gotoLineColumn(MODE_ 2, 12);
|
|
|
- printChar(MODE_ ' ');
|
|
|
- }
|
|
|
-
|
|
|
- // Show action on LCD
|
|
|
- gotoLineColumn(MODE_ 1, 13 - i);
|
|
|
- printChar(MODE_ '1');
|
|
|
-
|
|
|
- gotoLineColumn(MODE_ 2, 13 - counter / 10);
|
|
|
- printUnsigned(MODE_ counter);
|
|
|
- }
|
|
|
- }
|
|
|
+ gotoLineColumn(MODE_ 1, 0);
|
|
|
+ printString(MODE_ "Date:");
|
|
|
+ printUnsigned(MODE_ millis(MODE));
|
|
|
}
|
|
|
-
|