#include "DMXtoNeoPixel.h"
#include "sendPixel.h"
Color24 colors[2] = {{96,96,255}, {160,255,64}};
void setup() {
delay(1000); // "Safety Delay" to avoid possibility of bricking a board & having to ICSP-reflash
}
void loop() {
const uint8_t FLUX = 255;
// This is the message to display. Feel free to change it to anything you like!
const char message[] = "A Scrolling Marquee in NeoPixels is FUN";
marquee(message, 32, colors[0], colors[1], FLUX);
}