#include #ifdef __AVR__ #include #endif //Important: Set the number of LEDs here!!! #define PIN 6 #define NUMPIXELS 22 //Create the object representation of our strip Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800); //Some usefull variables and buffers, currently not all in use unsigned long previousMillis = 0; unsigned long interval = 0; int mode = 0; int element = 0; int colorval1 = 0; int colorval2 = 0; int colorval3 = 0; void setup() { pixels.begin(); } void loop() { if(element