#include <Adafruit_NeoPixel.h> // Add library
// New stribe added to pin 6 lenght 8 led
Adafruit_NeoPixel stribe(8, 6, NEO_GRB + NEO_KHZ800);
void setup() {
stribe.begin(); // start to use stribe
uint32_t color = stribe.Color(255, 0, 0);
// New color (RED, GREEN, BLUE)
stribe.setPixelColor(0, color); // Set color to first led
stribe.setBrightness(255); // Pright ness to max
stribe.show(); // Send comman
}
void loop() {
// Do nothing here
}