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:
authorSam Guyer <sam.guyer@gmail.com>2021-04-29 17:44:07 +0300
committerSam Guyer <sam.guyer@gmail.com>2021-04-29 17:44:07 +0300
commit4b2d3339f8a1acd33621070e82d9685d506b177e (patch)
treec98e9ebb3ab086169c69673d75789355586d3c5d /examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino
parent65a76c512e51a2c000c60005552ce7cd5347c88b (diff)
parent2785f3d81dc360f021613268b2bc6ca69f578326 (diff)
Merge branch 'master' of https://github.com/FastLED/FastLED
Diffstat (limited to 'examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino')
-rw-r--r--examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino b/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino
index d8d73fe2..68190fe4 100644
--- a/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino
+++ b/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino
@@ -11,8 +11,8 @@ CRGB leds[NUM_STRIPS * NUM_LEDS_PER_STRIP];
// OctoWS2811: 2,14,7,8,6,20,21,5
void setup() {
- LEDS.addLeds<OCTOWS2811>(leds, NUM_LEDS_PER_STRIP);
- LEDS.setBrightness(32);
+ FastLED.addLeds<OCTOWS2811>(leds, NUM_LEDS_PER_STRIP);
+ FastLED.setBrightness(32);
}
void loop() {
@@ -32,6 +32,6 @@ void loop() {
hue++;
- LEDS.show();
- LEDS.delay(10);
+ FastLED.show();
+ FastLED.delay(10);
}