Build Flash Belt [better] ◉ (Full)
void loop() // Pattern 1: Red chase for (int i = 0; i < NUM_LEDS; i++) leds[i] = CRGB::Red; FastLED.show(); delay(30); leds[i] = CRGB::Black;
delay(200);
delay(1000);
delay(500);
// Pattern 3: Strobe flash belt (all white) for (int i = 0; i < 10; i++) fill_solid(leds, NUM_LEDS, CRGB::White); FastLED.show(); delay(50); fill_solid(leds, NUM_LEDS, CRGB::Black); FastLED.show(); delay(50); build flash belt
CRGB leds[NUM_LEDS];
