1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00

[ES] Finished loop function

Signed-óff-by: Jim Martens <github@2martens.de>
This commit is contained in:
2015-06-25 11:37:54 +02:00
parent 76c63a504d
commit 1e4e0db3ba

View File

@ -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");