Tone32 icon indicating copy to clipboard operation
Tone32 copied to clipboard

Tone library for ESP32

Results 2 Tone32 issues
Sort by recently updated
recently updated
newest added

ESP32-S2 Not available

It would be nice if this was handled gracefully. Thanks! ``` #include #define BUZZER_PIN 16 #define BUZZER_CHANNEL 0 void setup() {} void loop() { noTone(BUZZER_PIN, BUZZER_CHANNEL); tone(BUZZER_PIN, NOTE_C4, 500, BUZZER_CHANNEL);...