diff --git a/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino b/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino index 3fb3db9..9f42728 100644 --- a/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino +++ b/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino @@ -24,6 +24,7 @@ static const unsigned long // (150 seconds) // --- Optional Settings (uncomment to add) +//#define CLEAR_ON_START // LEDs are cleared on reset //#define GROUND_PIN 10 // additional grounding pin (optional) //#define CALIBRATE // sets all LEDs to the color of the first @@ -65,6 +66,10 @@ void setup(){ FastLED.addLeds(leds, Num_Leds); FastLED.setBrightness(Brightness); + #ifdef CLEAR_ON_START + FastLED.show(); + #endif + Serial.begin(SerialSpeed); Serial.println(Num_Leds);