Browse Source

RTTTL on message types

pull/314/head
seagull9000 1 year ago
parent
commit
f82844f43f
  1. 19
      examples/companion_radio/UITask.cpp
  2. 2
      examples/companion_radio/UITask.h
  3. 4
      examples/companion_radio/main.cpp
  4. 10
      src/helpers/ui/buzzer.h

19
examples/companion_radio/UITask.cpp

@ -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) {

2
examples/companion_radio/UITask.h

@ -44,6 +44,6 @@ public:
void clearMsgPreview();
void msgRead(int msgcount);
void newMsg(uint8_t path_len, const char* from_name, const char* text, int msgcount);
void soundBuzzer();
void soundBuzzer(buzzerEventType bet = buzzerEventType::noBuzzer);
void loop();
};

4
examples/companion_radio/main.cpp

@ -520,7 +520,7 @@ protected:
}
} else {
#ifdef DISPLAY_CLASS
ui_task.soundBuzzer();
ui_task.soundBuzzer(buzzerEventType::newContactMessage);
#endif
}
@ -583,7 +583,7 @@ protected:
_serial->writeFrame(frame, 1);
} else {
#ifdef DISPLAY_CLASS
ui_task.soundBuzzer();
ui_task.soundBuzzer(buzzerEventType::contactMessage);
#endif
}
#ifdef DISPLAY_CLASS

10
src/helpers/ui/buzzer.h

@ -15,6 +15,16 @@
- make message ring tone configurable
*/
enum class buzzerEventType
{
noBuzzer,
contactMessage,
channelMessage,
roomMessage,
newContactMessage
};
class genericBuzzer
{
public:

Loading…
Cancel
Save