mirror of
https://github.com/2martens/uni.git
synced 2026-05-07 03:46: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();
|
||||
delay(20);
|
||||
}
|
||||
for (int y = 0; y < 84; y++) {
|
||||
for (int x = 0; x < 48; x++) {
|
||||
setPixel(x, y, 0);
|
||||
}
|
||||
flushBuffer();
|
||||
delay(20);
|
||||
}
|
||||
//flushBuffer();
|
||||
//delay(20);
|
||||
Serial.println("fertig");
|
||||
|
||||
Reference in New Issue
Block a user