RTTTL on message types

This commit is contained in:
seagull9000
2025-05-20 19:09:49 +12:00
parent e5376f0c0a
commit f82844f43f
4 changed files with 28 additions and 7 deletions

View File

@@ -59,12 +59,23 @@ void UITask::begin(DisplayDriver* display, NodePrefs* node_prefs, const char* bu
#endif
}
void UITask::soundBuzzer() {
void UITask::soundBuzzer(buzzerEventType bet) {
#if defined(PIN_BUZZER)
// gemini's pick
buzzer.play("MsgRcv3:d=4,o=6,b=200:32e,32g,32b,16c7");
//Serial.println("DBG: Buzzzzzz");
switch(bet){
case buzzerEventType::contactMessage:
// gemini's pick
buzzer.play("MsgRcv3:d=4,o=6,b=200:32e,32g,32b,16c7");
break;
case buzzerEventType::channelMessage:
case buzzerEventType::roomMessage:
case buzzerEventType::newContactMessage:
case buzzerEventType::noBuzzer:
default:
break;
}
#endif
Serial.print("DBG: Buzzzzzz -> ");
Serial.println((int) bet);
}
void UITask::msgRead(int msgcount) {