News

#include "FastLED.h" #define NUM_LEDS 300 CRGB leds[NUM_LEDS]; void setup() { FastLED.addLeds<NEOPIXEL, 6>(leds, NUM_LEDS); } void loop() { leds[0] = CRGB::White ...