master
Auguste FLEURY 12 months ago
parent 3eb03ba5fa
commit 3505ced419

@ -150,14 +150,14 @@ void loop() {
delay(1000);
second++;
Serial.println(second);
if (second%60 == 0)
{
if (second%60 == 0){
minute++;
if (minute%60 == 0)
if (minute%60 == 0){
hour++;
if (hour == 24)
}
if (hour == 24){
hour = 0;
}
bar();
}
}

Loading…
Cancel
Save