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:
authorDaniel Garcia <danielgarcia@gmail.com>2015-02-17 20:59:58 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2015-02-17 20:59:58 +0300
commita6adcd550b48ea09f97eea3385c77bafb5d500e7 (patch)
tree899e30171a42c1b9acc6d7a381f9d1d8a8a53fc2 /examples
parentef1644a94df39f4712b91e062be12177fc728d00 (diff)
For #125, add clock/data pin definitions to the U2 and friends when using @nicohood's bootloader.
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);
}