Merge pull request #314 from seagull9000/RTTTL-tweaks1

RTTTL on message types
This commit is contained in:
ripplebiz 2025-05-20 17:44:19 +10:00 committed by GitHub
commit ecfeb2ff63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 32 additions and 10 deletions

View file

@ -2,8 +2,8 @@
#include "buzzer.h"
void genericBuzzer::begin() {
Serial.print("DBG: Setting up buzzer on pin ");
Serial.println(PIN_BUZZER);
// Serial.print("DBG: Setting up buzzer on pin ");
// Serial.println(PIN_BUZZER);
#ifdef PIN_BUZZER_EN
pinMode(PIN_BUZZER_EN, OUTPUT);
digitalWrite(PIN_BUZZER_EN, HIGH);

View file

@ -15,6 +15,7 @@
- make message ring tone configurable
*/
class genericBuzzer
{
public: