Update rubix.ino

This commit is contained in:
Daniel Løvbrøtte Olsen 2017-04-24 07:06:26 +02:00 committed by GitHub
parent 94ab8c914b
commit 80823df95e

View File

@ -38,6 +38,8 @@ void setup() {
setColor({5, 1, 1}, YELLOW, leds);
for (byte i = 0; i < 6; i++) {
FastLED.show();
delay(500);
for (byte j = 0; j < 8; j++) {
byte selection;
do {
@ -67,6 +69,10 @@ void setup() {
}
}
}
FastLED.show();
}
void loop() {}
void loop() {
// put your main code here, to run repeatedly:
}