From edf0fef088b19afa639f2ffc055e94caa83bdc57 Mon Sep 17 00:00:00 2001 From: David Madison Date: Thu, 8 Jun 2017 15:40:09 -0400 Subject: [PATCH] Increased max number of LEDs 21,845 should be the new max (untested) --- Arduino/LEDstream_FastLED/LEDstream_FastLED.ino | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino b/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino index b55d79b..76c9fa3 100644 --- a/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino +++ b/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino @@ -7,8 +7,9 @@ */ // --- General Settings -static const uint8_t - Num_Leds = 80, // strip length +static const uint16_t + Num_Leds = 80; // strip length +static const uint8_t Led_Pin = 6, // Arduino data output pin Brightness = 255; // maximum brightness