Sketches using Adafruit_NeoPixel.h don't work
I've uploaded a few example sketches and the ones that use the Adafruit_NeoPixel library don't work. They compile and upload, but the LEDs don't do anything. I installed the latest Adafruit_NeoPixel library from GitHub:
http://github.com/adafruit/Adafruit_NeoPixel
http://github.com/adafruit/Adafruit_NeoPixel
Comments
Adafruit_NeoPixel strip = Adafruit_NeoPixel(LED_COUNT, 5, NEO_GRB + NEO_KHZ800);
needed to be changed to:
Adafruit_NeoPixel strip = Adafruit_NeoPixel(LED_COUNT, 13, NEO_GRB + NEO_KHZ800);
and the line:
uint8_t btn_pin = 13;
needed to be changed to:
uint8_t btn_pin = 10;
I just commited these changes, so if you download the library again, they should work.
It's actually possible to just load the image files from them into PatternPaint and upload them to the Blinkytape that way, so we were planning on moving the images into PatternPaint in the future, and removing the examples.
re: using PatternPaint exclusively... do you think you will eventually have a way to accomplish the NyanCat example (with multiple patterns activated by the button)?
also noticed that the button is at the top of a pattern paint image, this makes it difficult for button pressing while light painting.
thx again... so far loving it as much as my 3 year old!
And good point, we should probably have a flip image feature to allow it to display upside down/backwards!