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')
-rw-r--r--examples/Cylon/Cylon.ino2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Cylon/Cylon.ino b/examples/Cylon/Cylon.ino
index 76046b41..288d3ee8 100644
--- a/examples/Cylon/Cylon.ino
+++ b/examples/Cylon/Cylon.ino
@@ -15,7 +15,7 @@ CRGB leds[NUM_LEDS];
void setup() {
Serial.begin(57600);
Serial.println("resetting");
- LEDS.addLeds<NEOPIXEL,DATA_PIN>(leds,NUM_LEDS);
+ LEDS.addLeds<APA102,2,1,RGB>(leds,NUM_LEDS);
LEDS.setBrightness(84);
}