You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i use Nano, and the precompilator "defined(ARDUINO_AVR_NANO_EVERY)" not work for my arduino ide 1.8.13
the correct syntax is "defined(ARDUINO_AVR_NANO)"
in your exemple "AcceleratedRotator" exst 2 .ino strictely identical
best regard,
Stef
The text was updated successfully, but these errors were encountered:
you did not understand what i mean
in your examples you use
#if defined (ARDUINO_AVR_UNO) || defined (ARDUINO_AVR_NANO_EVERY)
the uno and the nano use the same microcontroller
instead, we should write
#if defined (ARDUINO_AVR_UNO) || defined (ARDUINO_AVR_NANO) || defined (ARDUINO_AVR_NANO_EVERY)
thank for your library, is very good !
i use Nano, and the precompilator "defined(ARDUINO_AVR_NANO_EVERY)" not work for my arduino ide 1.8.13
the correct syntax is "defined(ARDUINO_AVR_NANO)"
best regard,
Stef
The text was updated successfully, but these errors were encountered: