#include #define PIN 14 #define ledCount 60 Adafruit_NeoPixel strip = Adafruit_NeoPixel(ledCount, PIN, NEO_GRB + NEO_KHZ800); //first number controls the amount of pixels you have (add 4 so the drip falls off the edge) //Adafruit_NeoPixel stripOld = Adafruit_NeoPixel(ledCount, 7, NEO_GRB + NEO_KHZ800); //Adafruit_Neopixel stripNew = Adafruit_NeoPixel(ledCount, 8, NEO_GRB + NEO_KHZ800); void setup() { Serial.begin(9600); // open the serial port at 9600 bps: strip.begin(); strip.show(); // Initialize all pixels to 'off' } void loop() { Chase(strip.Color(255, 255, 255), 50); // R,G,B, speed } void Chase(uint32_t color, int wait) { // Repeat 10 times... for(int a=0; a<10; a++) { // 'b' counts from 0 to 2... for(int b=0; b<3; b++) { // all pixels off strip.clear(); // 'c' counts up from 'b' to end of strip in steps of 3... for(int c=b; c