7 lines
110 B
Text
7 lines
110 B
Text
int lastSec = second();
|
|
void draw() {
|
|
if (lastSec!=second()) {
|
|
drawClock();
|
|
lastSec=second();
|
|
}
|
|
}
|