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
~/Documents/Arduino/libraries/Toggle/src/Toggle.h:50:40: note: in expansion of macro 'DONE'
enum CLICK : uint16_t {FAST = 200, DONE = 500};
^~~~
I guess the easiest fix is to change the enum's keyword or create a private namespace for your library (or change the fasted library and its poor choice of using #define...)
The text was updated successfully, but these errors were encountered:
you are using this enum
challenge is that the fastLed library is also using DONE for a #define
so if you try to compile
the compiler will complain about the double definition
first it's a cryptic
but then everything is revealed
I guess the easiest fix is to change the enum's keyword or create a private namespace for your library (or change the fasted library and its poor choice of using #define...)
The text was updated successfully, but these errors were encountered: