not a bug as such, but be careful with the #DEFINES in EasyBuzzer.h
#ifdef ESP8266
#define min _min
#define max _max
#endif
#ifdef ESP32
#define min _min
#define max _max
#endif
(regardless that they are the same) Any other code that uses the words min or max will be substituted at compile time.
not a bug as such, but be careful with the #DEFINES in EasyBuzzer.h
(regardless that they are the same) Any other code that uses the words min or max will be substituted at compile time.