Im sorry for bothering you again.
i refer to Teensy USB Development Board,
I see that teensy++ 2.0 uses an AVR chip. I've changed the board on my arduino IDE to teensy 2.0 and tried uploading, and i receiving the same error. any idea y?
about what you mentioned, allow me to explain my situation.
currently, my main objective is the phone application associated to this arduino application.
deliverables include but not limited to, sending images, making ur own text, etc.
i will certainly need to understand the printing part and how it works sooner or later, but for now, those are not the priority. i just kinda need a board that can reliably make the application work. so yeah, you are not wrong about the 'if its not broken, dont fix it' rule.
i will certainly need to understand the arduino code sometime in the future, and hopefully, if time permits, ill be able to change and optimise it. but at this juncture, the phone app comes first.. so yeah..
edit: holy cow, i change to teensy 2.0, and tried to verify, my code works, and the teensy ui popped up.
i closed it, and change back to teensy++ 2.0, and it works now too. the typical, "my code doesnt work, and i dont know why. my code works, cant i also dont know why.." -___-'''''
PieterP:
The Neopixel library is compatible with Teensy, however, the sketch you copied is not portable.
I don't see why you would stick with AVR boards just for that reason.
I think that, in general, it's not a good idea to copy code without understanding it. If you find a piece of code that works, try to understand it, line by line, before pasting it into your own sketch. It's a great opportunity to learn. And if you don't understand what you're doing, you'll end up with terrible Frankenstein-code, patched together, and with lots of parts that aren't really necessary, but you didn't want to remove, because "If it ain't broken, don't fix it". (Speaking from my own experience here
)
I'm recommending Teensy, because the OctoWS2811 library seems to be exactly what you're after. It even comes with an example that can read videos from an SD card and display them on the Neopixel "display". It can't be too hard to change that code for using bitmaps instead.
Pieter