From 95f18766f19bc07ab9e206793123f184b38d7f75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Fri, 21 Apr 2017 11:03:12 +0200 Subject: [PATCH] Add White test --- School/vg2/borg/demos/Test.ino | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/School/vg2/borg/demos/Test.ino b/School/vg2/borg/demos/Test.ino index 03479be..6e64fe0 100644 --- a/School/vg2/borg/demos/Test.ino +++ b/School/vg2/borg/demos/Test.ino @@ -18,6 +18,12 @@ void setup() { encodeLED(1, &head); } void loop() { + for (int i = 0; i < NUM_LEDS; i++) { + leds[i] = 0xffffff; + } + FastLED.show(); + delay(3000); + // Test induidual leds for (int i = 0; i < NUM_LEDS; i++) { FastLED.clear(); @@ -126,5 +132,4 @@ void loop() { getRotNeighborLED(&head, UP, &head); delay(250); } - }