Makes it easy to use Neopixels with just a few easy commands!
No knowledge of functions, objects, or even variables required.
It's as easy as:
setupEasyNeoPixels(13, 1); // attached to pin 13, 1 neopixel long
writeEasyNeoPixel(0, HIGH); // turn on the first neopixel
writeEasyNeoPixel(0, 255, 255, 0); // make the first neopixel purple
You must install Adafruit_NeoPixel to use this library!
see examples/
for a collection of arduino sketches that use this library
Advanced users probably don't want to use this library, but if you do: be aware the library pollutes the global namespace with a variable and a few functions.