Add White test

This commit is contained in:
Daniel Løvbrøtte Olsen 2017-04-21 11:03:12 +02:00 committed by GitHub
parent 6d8b556b02
commit 95f18766f1

View File

@ -18,6 +18,12 @@ void setup() {
encodeLED(1, &head); encodeLED(1, &head);
} }
void loop() { void loop() {
for (int i = 0; i < NUM_LEDS; i++) {
leds[i] = 0xffffff;
}
FastLED.show();
delay(3000);
// Test induidual leds // Test induidual leds
for (int i = 0; i < NUM_LEDS; i++) { for (int i = 0; i < NUM_LEDS; i++) {
FastLED.clear(); FastLED.clear();
@ -126,5 +132,4 @@ void loop() {
getRotNeighborLED(&head, UP, &head); getRotNeighborLED(&head, UP, &head);
delay(250); delay(250);
} }
} }