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:
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);
}