#include <FastLED.h>
#define DATA_PIN 0
#define NUM_LEDS 16
CRGB leds[NUM_LEDS];
void setup() {
FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS);
}
void loop() {
// leds[0] = CRGB::White; FastLED.show(); delay(100);
// leds[0] = CRGB::Pink; FastLED.show(); delay(100);
for (int l = 0; l < NUM_LEDS; l++ )
{
leds[l] = 0xffaa66; FastLED.show(); delay(100);
leds[l] = 0x006666; FastLED.show();
}
}