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
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: