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