Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sharp <sharpchris@gmail.com>2019-12-17 03:04:42 +0300
committerGitHub <noreply@github.com>2019-12-17 03:04:42 +0300
commit5b5376459c989a6e0af8d18ebcd75c90a80c6b4b (patch)
tree033db63cb10768ea8d83529290bd6da2871b4a4a
parent8b31b643e42d8a53a3df9abc96bf45f00adf52df (diff)
Update MultiArrays.ino
Correction so that the Blue LEDs are properly blacked out
-rw-r--r--examples/Multiple/MultiArrays/MultiArrays.ino4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Multiple/MultiArrays/MultiArrays.ino b/examples/Multiple/MultiArrays/MultiArrays.ino
index 50241c39..9d3cbb6b 100644
--- a/examples/Multiple/MultiArrays/MultiArrays.ino
+++ b/examples/Multiple/MultiArrays/MultiArrays.ino
@@ -33,7 +33,7 @@ void loop() {
// clear our current dot before we move on
redLeds[i] = CRGB::Black;
greenLeds[i] = CRGB::Black;
- blueLeds[i] = CRGB::Blue;
+ blueLeds[i] = CRGB::Black;
delay(100);
}
@@ -46,7 +46,7 @@ void loop() {
// clear our current dot before we move on
redLeds[i] = CRGB::Black;
greenLeds[i] = CRGB::Black;
- blueLeds[i] = CRGB::Blue;
+ blueLeds[i] = CRGB::Black;
delay(100);
}
}