Question

How can I port an Arduino library to the ATTiny family of microcontrollers? I'm using avrdude if that helps.

Thanks.

Était-ce utile?

La solution

There is no specific procedure. You should just try to compile the library and deal with the error messages one at a time. You should generally look at the first error message printed by the compiler and fix that before moving on to the next. The Arduino IDE defines a lot of things that are not available in a plain avr-gcc compiler (e.g. digitalWrite), so you will need to replace references to those things with something else.

If you have a more specific question about how to fix one of those error messages, feel free to post a new question on this site.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top