#include #define PIN 6 Adafruit_NeoPixel strip = Adafruit_NeoPixel(9, PIN, NEO_GRB + NEO_KHZ800); int x = 150; //change these values to fade between the two. int y = 220; void setup() { strip.begin(); strip.show(); // Initialize all pixels to 'off' } void loop() { fade(160); //change the number here to adjust the speed } void fade(uint8_t wait) { uint16_t i, j; //Adjust 60 and 90 to the starting and ending colors you want to fade between. for(j=x; jx; j--) { for(i=0; i