mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 11:26:25 +02:00
[ES] Finished loop function
Signed-óff-by: Jim Martens <github@2martens.de>
This commit is contained in:
@ -52,6 +52,13 @@ void loop()
|
|||||||
flushBuffer();
|
flushBuffer();
|
||||||
delay(20);
|
delay(20);
|
||||||
}
|
}
|
||||||
|
for (int y = 0; y < 84; y++) {
|
||||||
|
for (int x = 0; x < 48; x++) {
|
||||||
|
setPixel(x, y, 0);
|
||||||
|
}
|
||||||
|
flushBuffer();
|
||||||
|
delay(20);
|
||||||
|
}
|
||||||
//flushBuffer();
|
//flushBuffer();
|
||||||
//delay(20);
|
//delay(20);
|
||||||
Serial.println("fertig");
|
Serial.println("fertig");
|
||||||
|
|||||||
Reference in New Issue
Block a user