From 821c3633a9bde8350e92606a617bae0b2f638f78 Mon Sep 17 00:00:00 2001 From: David Madison Date: Wed, 21 Dec 2016 11:45:13 -0500 Subject: [PATCH] Added missing brightness implementation --- Arduino/LEDstream_WS2812B/LEDstream_WS2812B.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/Arduino/LEDstream_WS2812B/LEDstream_WS2812B.ino b/Arduino/LEDstream_WS2812B/LEDstream_WS2812B.ino index f497dd5..3e2eaa6 100644 --- a/Arduino/LEDstream_WS2812B/LEDstream_WS2812B.ino +++ b/Arduino/LEDstream_WS2812B/LEDstream_WS2812B.ino @@ -58,6 +58,7 @@ void setup() #endif FastLED.addLeds(leds, NUM_LEDS); + FastLED.setBrightness(BRIGHTNESS); // Dirty trick: the circular buffer for serial data is 256 bytes, // and the "in" and "out" indices are unsigned 8-bit types -- this