This repository was archived by the owner on Jan 29, 2023. It is now read-only.
This repository was archived by the owner on Jan 29, 2023. It is now read-only.
Adafruit feather 32u4 #17
Closed
Description
I want to try your library with an AdaFruit feather 32u4. But it says its incompatible when compiling. I found this in the header
#elif ( defined(ARDUINO_AVR_LEONARDO) || defined(ARDUINO_AVR_LEONARDO_ETH) || defined(ARDUINO_AVR_YUN) || defined(ARDUINO_AVR_MICRO) || \
defined(ARDUINO_AVR_ESPLORA) || defined(ARDUINO_AVR_LILYPAD_USB) || defined(ARDUINO_AVR_ROBOT_CONTROL) || defined(ARDUINO_AVR_ROBOT_MOTOR) || \
defined(ARDUINO_AVR_GEMMA) || defined(ARDUINO_AVR_CIRCUITPLAY) || defined(ARDUINO_AVR_YUNMINI) || defined(ARDUINO_AVR_INDUSTRIAL101) || \
defined(ARDUINO_AVR_LININO_ONE) || defined(Adafruit_Feather_32u4) )
#if defined(TIMER_INTERRUPT_USING_ATMEGA_32U4)
#undef TIMER_INTERRUPT_USING_ATMEGA_32U4
#endif
#define TIMER_INTERRUPT_USING_ATMEGA_32U4 true
#warning Using ATMega32U4, such as Leonardo or Leonardo ETH. Only Timer1 is available
#else
I tried adding Adafruit_Feather_32u4 but it didn't work. Can you tell me where these defines like ARDUINO_AVR_ESPLORA can be found so I can find the proper value for my board and add it?