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:
authorMark Kriegsman <1334634+kriegsman@users.noreply.github.com>2020-01-05 00:47:56 +0300
committerGitHub <noreply@github.com>2020-01-05 00:47:56 +0300
commit6c51f7a60d9620ec581853fc539a786d110fb06f (patch)
tree033db63cb10768ea8d83529290bd6da2871b4a4a
parent8b31b643e42d8a53a3df9abc96bf45f00adf52df (diff)
parent5b5376459c989a6e0af8d18ebcd75c90a80c6b4b (diff)
Merge pull request #941 from sharpchris/patch-1
Fix typos causing blue LEDs to not clear
-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);
}
}