#include "FastLED.h" // How many leds in your strip? #define NUM_LEDS 10 #define BRIGHTNESS 32 // What data pin on the board are they connected to? #define DATA_PIN 17 // Define the array of leds CRGB leds[NUM_LEDS]; void setup() { FastLED.addLeds(leds, NUM_LEDS); FastLED.setBrightness(32); } void loop() { // Turn the LED on, then pause leds[0] = CRGB::Red; FastLED.show(); delay(500); // Now turn the LED off, then pause leds[0] = CRGB::Black; FastLED.show(); delay(500); }