Excuse me, I am a beginner of Arduino. I need some helps with crumbuino128.
I got a crumbuino128 board two weeks' ago. Up to now everything is OK, but IRremote Library. I used this(GitHub - Arduino-IRremote/Arduino-IRremote: Infrared remote library for Arduino: send and receive infrared signals with multiple protocols). They were worked perfect when I upload them to the UNO. But I do not know what's wrong when I do same thing under the Crumbuino. What can I do to solve this problem.
Thanks.
The errors are indictative of code that uses timer 2 being compiled for a processor that does not have a timer 2.
Anytime you drift off the official Arduino product list, there is a possibility that some library may not be supported. Even with newer Arduino official hardware, 3rd party (submitted) libraries are often not supported for months - if ever!
Believe me, we all struggle with this. If you can contact the author, do and ask if they intend on supporting the "xxx" platform. If you cannot contact the author, you could attempt the changes yourself or start the long look for another library that is supported. If the hardware maker has a user forum, that is a good place to start.
If you are a bit handy with building electronics, you may wish to try my dedicated IR decoder. Essentially, it converts IR digits into a serial stream that can be utilized by any uC.
Ray