2022-02-27 08:18:35 +00:00
|
|
|
#include "ExternalNotificationModule.h"
|
2021-01-28 03:18:16 +00:00
|
|
|
#include "MeshService.h"
|
|
|
|
#include "NodeDB.h"
|
|
|
|
#include "RTC.h"
|
|
|
|
#include "Router.h"
|
2022-10-22 11:35:34 +00:00
|
|
|
#include "buzz/buzz.h"
|
2022-05-07 10:31:21 +00:00
|
|
|
#include "configuration.h"
|
2023-01-18 14:56:47 +00:00
|
|
|
#include "mesh/generated/meshtastic/rtttl.pb.h"
|
2021-01-28 03:18:16 +00:00
|
|
|
#include <Arduino.h>
|
|
|
|
|
2022-10-22 11:35:34 +00:00
|
|
|
#ifndef PIN_BUZZER
|
|
|
|
#define PIN_BUZZER false
|
|
|
|
#endif
|
|
|
|
|
2021-01-28 03:18:16 +00:00
|
|
|
/*
|
2021-01-30 17:36:17 +00:00
|
|
|
Documentation:
|
2022-12-08 15:27:56 +00:00
|
|
|
https://meshtastic.org/docs/settings/moduleconfig/external-notification
|
2021-01-28 03:18:16 +00:00
|
|
|
*/
|
|
|
|
|
2021-01-30 17:17:40 +00:00
|
|
|
// Default configurations
|
2022-10-22 12:13:45 +00:00
|
|
|
#ifdef EXT_NOTIFY_OUT
|
2022-02-27 09:49:24 +00:00
|
|
|
#define EXT_NOTIFICATION_MODULE_OUTPUT EXT_NOTIFY_OUT
|
2022-10-22 12:13:45 +00:00
|
|
|
#else
|
|
|
|
#define EXT_NOTIFICATION_MODULE_OUTPUT 0
|
|
|
|
#endif
|
2022-02-27 09:49:24 +00:00
|
|
|
#define EXT_NOTIFICATION_MODULE_OUTPUT_MS 1000
|
2021-01-28 05:20:18 +00:00
|
|
|
|
|
|
|
#define ASCII_BELL 0x07
|
|
|
|
|
2022-12-29 15:53:36 +00:00
|
|
|
RTTTLConfig rtttlConfig;
|
|
|
|
|
2022-12-08 15:27:56 +00:00
|
|
|
ExternalNotificationModule *externalNotificationModule;
|
|
|
|
|
|
|
|
bool externalCurrentState[3] = {};
|
|
|
|
|
|
|
|
uint32_t externalTurnedOn[3] = {};
|
2021-01-29 07:02:00 +00:00
|
|
|
|
2022-12-29 15:53:36 +00:00
|
|
|
static const char *rtttlConfigFile = "/prefs/ringtone.proto";
|
|
|
|
|
2022-02-27 09:49:24 +00:00
|
|
|
int32_t ExternalNotificationModule::runOnce()
|
2021-01-28 03:18:16 +00:00
|
|
|
{
|
2022-12-28 13:57:40 +00:00
|
|
|
if (!moduleConfig.external_notification.enabled) {
|
2022-12-08 15:27:56 +00:00
|
|
|
return INT32_MAX; // we don't need this thread here...
|
|
|
|
} else {
|
2022-12-28 13:57:40 +00:00
|
|
|
if ((nagCycleCutoff < millis()) && !rtttl::isPlaying()) {
|
2023-01-04 13:45:28 +00:00
|
|
|
// let the song finish if we reach timeout
|
2022-12-27 20:51:35 +00:00
|
|
|
nagCycleCutoff = UINT32_MAX;
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("Turning off external notification: ");
|
2022-12-27 20:51:35 +00:00
|
|
|
for (int i = 0; i < 2; i++) {
|
2023-01-04 13:45:28 +00:00
|
|
|
setExternalOff(i);
|
|
|
|
externalTurnedOn[i] = 0;
|
|
|
|
LOG_INFO("%d ", i);
|
2022-12-27 20:51:35 +00:00
|
|
|
}
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("\n");
|
2023-01-04 13:45:28 +00:00
|
|
|
isNagging = false;
|
2022-12-27 20:51:35 +00:00
|
|
|
return INT32_MAX; // save cycles till we're needed again
|
|
|
|
}
|
|
|
|
|
2021-03-13 05:32:23 +00:00
|
|
|
// If the output is turned on, turn it back off after the given period of time.
|
2023-01-04 13:45:28 +00:00
|
|
|
if (isNagging) {
|
2023-01-18 20:51:48 +00:00
|
|
|
if (externalTurnedOn[0] + (moduleConfig.external_notification.output_ms ? moduleConfig.external_notification.output_ms
|
|
|
|
: EXT_NOTIFICATION_MODULE_OUTPUT_MS) <
|
|
|
|
millis()) {
|
2022-12-08 15:27:56 +00:00
|
|
|
getExternal(0) ? setExternalOff(0) : setExternalOn(0);
|
|
|
|
}
|
2023-01-18 20:51:48 +00:00
|
|
|
if (externalTurnedOn[1] + (moduleConfig.external_notification.output_ms ? moduleConfig.external_notification.output_ms
|
|
|
|
: EXT_NOTIFICATION_MODULE_OUTPUT_MS) <
|
|
|
|
millis()) {
|
2022-12-08 15:27:56 +00:00
|
|
|
getExternal(1) ? setExternalOff(1) : setExternalOn(1);
|
|
|
|
}
|
2023-01-18 20:51:48 +00:00
|
|
|
if (externalTurnedOn[2] + (moduleConfig.external_notification.output_ms ? moduleConfig.external_notification.output_ms
|
|
|
|
: EXT_NOTIFICATION_MODULE_OUTPUT_MS) <
|
|
|
|
millis()) {
|
2022-12-08 15:27:56 +00:00
|
|
|
getExternal(2) ? setExternalOff(2) : setExternalOn(2);
|
|
|
|
}
|
|
|
|
}
|
2022-12-28 13:57:40 +00:00
|
|
|
|
|
|
|
// now let the PWM buzzer play
|
|
|
|
if (moduleConfig.external_notification.use_pwm) {
|
|
|
|
if (rtttl::isPlaying()) {
|
|
|
|
rtttl::play();
|
2023-01-04 13:45:28 +00:00
|
|
|
} else if (isNagging && (nagCycleCutoff >= millis())) {
|
2022-12-28 13:57:40 +00:00
|
|
|
// start the song again if we have time left
|
2022-12-29 15:53:36 +00:00
|
|
|
rtttl::begin(config.device.buzzer_gpio, rtttlConfig.ringtone);
|
2022-12-28 13:57:40 +00:00
|
|
|
}
|
|
|
|
}
|
2022-11-24 09:11:42 +00:00
|
|
|
return 25;
|
2022-12-08 15:27:56 +00:00
|
|
|
}
|
2021-01-28 03:18:16 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 15:27:56 +00:00
|
|
|
void ExternalNotificationModule::setExternalOn(uint8_t index)
|
2021-01-28 04:06:39 +00:00
|
|
|
{
|
2022-12-08 15:27:56 +00:00
|
|
|
externalCurrentState[index] = 1;
|
|
|
|
externalTurnedOn[index] = millis();
|
|
|
|
|
2023-01-18 20:51:48 +00:00
|
|
|
switch (index) {
|
|
|
|
case 1:
|
|
|
|
if (moduleConfig.external_notification.output_vibra)
|
|
|
|
digitalWrite(moduleConfig.external_notification.output_vibra, true);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (moduleConfig.external_notification.output_buzzer)
|
|
|
|
digitalWrite(moduleConfig.external_notification.output_buzzer, true);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
digitalWrite(output, (moduleConfig.external_notification.active ? true : false));
|
|
|
|
break;
|
2022-12-08 15:27:56 +00:00
|
|
|
}
|
2021-01-28 04:06:39 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 15:27:56 +00:00
|
|
|
void ExternalNotificationModule::setExternalOff(uint8_t index)
|
2021-01-28 04:06:39 +00:00
|
|
|
{
|
2022-12-08 15:27:56 +00:00
|
|
|
externalCurrentState[index] = 0;
|
|
|
|
externalTurnedOn[index] = millis();
|
|
|
|
|
2023-01-18 20:51:48 +00:00
|
|
|
switch (index) {
|
|
|
|
case 1:
|
|
|
|
if (moduleConfig.external_notification.output_vibra)
|
|
|
|
digitalWrite(moduleConfig.external_notification.output_vibra, false);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (moduleConfig.external_notification.output_buzzer)
|
|
|
|
digitalWrite(moduleConfig.external_notification.output_buzzer, false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
digitalWrite(output, (moduleConfig.external_notification.active ? false : true));
|
|
|
|
break;
|
2022-12-08 15:27:56 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-28 05:20:18 +00:00
|
|
|
|
2022-12-08 15:27:56 +00:00
|
|
|
bool ExternalNotificationModule::getExternal(uint8_t index)
|
|
|
|
{
|
|
|
|
return externalCurrentState[index];
|
2021-01-28 04:06:39 +00:00
|
|
|
}
|
|
|
|
|
2023-01-18 20:51:48 +00:00
|
|
|
void ExternalNotificationModule::stopNow()
|
|
|
|
{
|
2022-12-28 13:57:40 +00:00
|
|
|
rtttl::stop();
|
|
|
|
nagCycleCutoff = 1; // small value
|
2023-01-04 13:45:28 +00:00
|
|
|
isNagging = false;
|
2022-12-28 13:57:40 +00:00
|
|
|
setIntervalFromNow(0);
|
|
|
|
}
|
2021-01-28 03:18:16 +00:00
|
|
|
|
2022-02-27 09:49:24 +00:00
|
|
|
ExternalNotificationModule::ExternalNotificationModule()
|
2022-03-09 08:01:43 +00:00
|
|
|
: SinglePortModule("ExternalNotificationModule", PortNum_TEXT_MESSAGE_APP), concurrency::OSThread(
|
2022-05-07 10:31:21 +00:00
|
|
|
"ExternalNotificationModule")
|
2021-03-13 05:32:23 +00:00
|
|
|
{
|
|
|
|
/*
|
2022-02-27 09:49:24 +00:00
|
|
|
Uncomment the preferences below if you want to use the module
|
2021-03-13 05:32:23 +00:00
|
|
|
without having to configure it from the PythonAPI or WebUI.
|
|
|
|
*/
|
|
|
|
|
2022-12-16 19:33:09 +00:00
|
|
|
// moduleConfig.external_notification.enabled = true;
|
|
|
|
// moduleConfig.external_notification.alert_message = true;
|
|
|
|
// moduleConfig.external_notification.alert_message_buzzer = true;
|
|
|
|
// moduleConfig.external_notification.alert_message_vibra = true;
|
2021-03-13 05:32:23 +00:00
|
|
|
|
2022-12-16 19:33:09 +00:00
|
|
|
// moduleConfig.external_notification.active = true;
|
2022-05-22 11:27:56 +00:00
|
|
|
// moduleConfig.external_notification.alert_bell = 1;
|
|
|
|
// moduleConfig.external_notification.output_ms = 1000;
|
2022-12-16 19:33:09 +00:00
|
|
|
// moduleConfig.external_notification.output = 4; // RAK4631 IO4
|
|
|
|
// moduleConfig.external_notification.output_buzzer = 10; // RAK4631 IO6
|
|
|
|
// moduleConfig.external_notification.output_vibra = 28; // RAK4631 IO7
|
|
|
|
// moduleConfig.external_notification.nag_timeout = 300;
|
2023-01-18 20:51:48 +00:00
|
|
|
|
2022-05-22 11:27:56 +00:00
|
|
|
if (moduleConfig.external_notification.enabled) {
|
2022-12-29 15:53:36 +00:00
|
|
|
if (!nodeDB.loadProto(rtttlConfigFile, RTTTLConfig_size, sizeof(RTTTLConfig), &RTTTLConfig_msg, &rtttlConfig)) {
|
|
|
|
memset(rtttlConfig.ringtone, 0, sizeof(rtttlConfig.ringtone));
|
2023-01-18 20:51:48 +00:00
|
|
|
strncpy(rtttlConfig.ringtone,
|
|
|
|
"a:d=8,o=5,b=125:4d#6,a#,2d#6,16p,g#,4a#,4d#.,p,16g,16a#,d#6,a#,f6,2d#6,16p,c#.6,16c6,16a#,g#.,2a#",
|
|
|
|
sizeof(rtttlConfig.ringtone));
|
2022-12-29 15:53:36 +00:00
|
|
|
}
|
2021-03-13 05:32:23 +00:00
|
|
|
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("Initializing External Notification Module\n");
|
2021-03-13 05:32:23 +00:00
|
|
|
|
2023-01-18 20:51:48 +00:00
|
|
|
output = moduleConfig.external_notification.output ? moduleConfig.external_notification.output
|
|
|
|
: EXT_NOTIFICATION_MODULE_OUTPUT;
|
2021-03-13 05:32:23 +00:00
|
|
|
|
2022-12-28 13:57:40 +00:00
|
|
|
// Set the direction of a pin
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("Using Pin %i in digital mode\n", output);
|
2022-12-28 13:57:40 +00:00
|
|
|
pinMode(output, OUTPUT);
|
|
|
|
setExternalOff(0);
|
|
|
|
externalTurnedOn[0] = 0;
|
2023-01-18 20:51:48 +00:00
|
|
|
if (moduleConfig.external_notification.output_vibra) {
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("Using Pin %i for vibra motor\n", moduleConfig.external_notification.output_vibra);
|
2022-12-28 13:57:40 +00:00
|
|
|
pinMode(moduleConfig.external_notification.output_vibra, OUTPUT);
|
|
|
|
setExternalOff(1);
|
|
|
|
externalTurnedOn[1] = 0;
|
|
|
|
}
|
2023-01-18 20:51:48 +00:00
|
|
|
if (moduleConfig.external_notification.output_buzzer) {
|
2022-12-28 13:57:40 +00:00
|
|
|
if (!moduleConfig.external_notification.use_pwm) {
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("Using Pin %i for buzzer\n", moduleConfig.external_notification.output_buzzer);
|
2022-12-08 15:27:56 +00:00
|
|
|
pinMode(moduleConfig.external_notification.output_buzzer, OUTPUT);
|
|
|
|
setExternalOff(2);
|
|
|
|
externalTurnedOn[2] = 0;
|
2022-12-28 13:57:40 +00:00
|
|
|
} else {
|
2023-01-18 20:51:48 +00:00
|
|
|
config.device.buzzer_gpio = config.device.buzzer_gpio ? config.device.buzzer_gpio : PIN_BUZZER;
|
2022-12-28 13:57:40 +00:00
|
|
|
// in PWM Mode we force the buzzer pin if it is set
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("Using Pin %i in PWM mode\n", config.device.buzzer_gpio);
|
2022-12-08 15:27:56 +00:00
|
|
|
}
|
2022-10-22 11:35:34 +00:00
|
|
|
}
|
2021-03-13 05:32:23 +00:00
|
|
|
} else {
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("External Notification Module Disabled\n");
|
2022-12-29 22:26:25 +00:00
|
|
|
disable();
|
2021-03-13 05:32:23 +00:00
|
|
|
}
|
2021-03-13 05:14:27 +00:00
|
|
|
}
|
|
|
|
|
2022-02-27 09:49:24 +00:00
|
|
|
ProcessMessage ExternalNotificationModule::handleReceived(const MeshPacket &mp)
|
2021-01-28 03:18:16 +00:00
|
|
|
{
|
2022-05-22 11:27:56 +00:00
|
|
|
if (moduleConfig.external_notification.enabled) {
|
2021-01-28 03:18:16 +00:00
|
|
|
|
2021-03-05 02:19:27 +00:00
|
|
|
if (getFrom(&mp) != nodeDB.getNodeNum()) {
|
2021-01-28 03:18:16 +00:00
|
|
|
|
2022-12-08 15:27:56 +00:00
|
|
|
// Check if the message contains a bell character. Don't do this loop for every pin, just once.
|
|
|
|
auto &p = mp.decoded;
|
|
|
|
bool containsBell = false;
|
|
|
|
for (int i = 0; i < p.payload.size; i++) {
|
|
|
|
if (p.payload.bytes[i] == ASCII_BELL) {
|
|
|
|
containsBell = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-22 11:27:56 +00:00
|
|
|
if (moduleConfig.external_notification.alert_bell) {
|
2022-12-08 15:27:56 +00:00
|
|
|
if (containsBell) {
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("externalNotificationModule - Notification Bell\n");
|
2023-01-04 13:45:28 +00:00
|
|
|
isNagging = true;
|
2022-12-28 13:57:40 +00:00
|
|
|
setExternalOn(0);
|
|
|
|
if (moduleConfig.external_notification.nag_timeout) {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.nag_timeout * 1000;
|
2022-12-08 15:27:56 +00:00
|
|
|
} else {
|
2022-12-28 13:57:40 +00:00
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.output_ms;
|
2022-12-08 15:27:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-28 13:57:40 +00:00
|
|
|
if (moduleConfig.external_notification.alert_bell_vibra) {
|
|
|
|
if (containsBell) {
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("externalNotificationModule - Notification Bell (Vibra)\n");
|
2023-01-04 13:45:28 +00:00
|
|
|
isNagging = true;
|
2022-12-28 13:57:40 +00:00
|
|
|
setExternalOn(1);
|
|
|
|
if (moduleConfig.external_notification.nag_timeout) {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.nag_timeout * 1000;
|
|
|
|
} else {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.output_ms;
|
2022-12-08 15:27:56 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-28 13:57:40 +00:00
|
|
|
}
|
2022-12-08 15:27:56 +00:00
|
|
|
|
2022-12-28 13:57:40 +00:00
|
|
|
if (moduleConfig.external_notification.alert_bell_buzzer) {
|
|
|
|
if (containsBell) {
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("externalNotificationModule - Notification Bell (Buzzer)\n");
|
2023-01-04 13:45:28 +00:00
|
|
|
isNagging = true;
|
2022-12-28 13:57:40 +00:00
|
|
|
if (!moduleConfig.external_notification.use_pwm) {
|
2022-12-08 15:27:56 +00:00
|
|
|
setExternalOn(2);
|
2022-12-28 13:57:40 +00:00
|
|
|
} else {
|
2022-12-29 15:53:36 +00:00
|
|
|
rtttl::begin(config.device.buzzer_gpio, rtttlConfig.ringtone);
|
2021-01-28 05:20:18 +00:00
|
|
|
}
|
2022-12-08 15:27:56 +00:00
|
|
|
if (moduleConfig.external_notification.nag_timeout) {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.nag_timeout * 1000;
|
|
|
|
} else {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.output_ms;
|
|
|
|
}
|
2022-12-28 13:57:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (moduleConfig.external_notification.alert_message) {
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("externalNotificationModule - Notification Module\n");
|
2023-01-04 13:45:28 +00:00
|
|
|
isNagging = true;
|
2022-12-28 13:57:40 +00:00
|
|
|
setExternalOn(0);
|
|
|
|
if (moduleConfig.external_notification.nag_timeout) {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.nag_timeout * 1000;
|
2022-10-22 11:35:34 +00:00
|
|
|
} else {
|
2022-12-28 13:57:40 +00:00
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.output_ms;
|
2022-10-22 11:35:34 +00:00
|
|
|
}
|
2021-01-28 05:20:18 +00:00
|
|
|
}
|
2022-12-08 15:27:56 +00:00
|
|
|
|
2023-01-04 13:45:28 +00:00
|
|
|
if (moduleConfig.external_notification.alert_message_vibra) {
|
|
|
|
LOG_INFO("externalNotificationModule - Notification Module (Vibra)\n");
|
|
|
|
isNagging = true;
|
|
|
|
setExternalOn(1);
|
|
|
|
if (moduleConfig.external_notification.nag_timeout) {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.nag_timeout * 1000;
|
|
|
|
} else {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.output_ms;
|
2022-12-08 15:27:56 +00:00
|
|
|
}
|
2023-01-04 13:45:28 +00:00
|
|
|
}
|
2022-12-08 15:27:56 +00:00
|
|
|
|
2023-01-04 13:45:28 +00:00
|
|
|
if (moduleConfig.external_notification.alert_message_buzzer) {
|
|
|
|
LOG_INFO("externalNotificationModule - Notification Module (Buzzer)\n");
|
|
|
|
isNagging = true;
|
|
|
|
if (!moduleConfig.external_notification.use_pwm) {
|
|
|
|
setExternalOn(2);
|
|
|
|
} else {
|
|
|
|
rtttl::begin(config.device.buzzer_gpio, rtttlConfig.ringtone);
|
|
|
|
}
|
|
|
|
if (moduleConfig.external_notification.nag_timeout) {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.nag_timeout * 1000;
|
|
|
|
} else {
|
|
|
|
nagCycleCutoff = millis() + moduleConfig.external_notification.output_ms;
|
2022-12-08 15:27:56 +00:00
|
|
|
}
|
|
|
|
}
|
2023-01-18 20:51:48 +00:00
|
|
|
|
2022-12-08 15:27:56 +00:00
|
|
|
setIntervalFromNow(0); // run once so we know if we should do something
|
2021-01-28 03:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("External Notification Module Disabled\n");
|
2021-01-28 03:18:16 +00:00
|
|
|
}
|
|
|
|
|
2021-09-23 01:42:09 +00:00
|
|
|
return ProcessMessage::CONTINUE; // Let others look at this message also if they want
|
2021-01-28 03:18:16 +00:00
|
|
|
}
|
2022-12-29 15:53:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief An admin message arrived to AdminModule. We are asked whether we want to handle that.
|
|
|
|
*
|
|
|
|
* @param mp The mesh packet arrived.
|
|
|
|
* @param request The AdminMessage request extracted from the packet.
|
|
|
|
* @param response The prepared response
|
|
|
|
* @return AdminMessageHandleResult HANDLED if message was handled
|
|
|
|
* HANDLED_WITH_RESULT if a result is also prepared.
|
|
|
|
*/
|
2023-01-18 20:51:48 +00:00
|
|
|
AdminMessageHandleResult ExternalNotificationModule::handleAdminMessageForModule(const MeshPacket &mp, AdminMessage *request,
|
|
|
|
AdminMessage *response)
|
2022-12-29 15:53:36 +00:00
|
|
|
{
|
|
|
|
AdminMessageHandleResult result;
|
|
|
|
|
|
|
|
switch (request->which_payload_variant) {
|
|
|
|
case AdminMessage_get_ringtone_request_tag:
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("Client is getting ringtone\n");
|
2022-12-29 15:53:36 +00:00
|
|
|
this->handleGetRingtone(mp, response);
|
|
|
|
result = AdminMessageHandleResult::HANDLED_WITH_RESPONSE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AdminMessage_set_ringtone_message_tag:
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("Client is setting ringtone\n");
|
2022-12-29 15:53:36 +00:00
|
|
|
this->handleSetRingtone(request->set_canned_message_module_messages);
|
|
|
|
result = AdminMessageHandleResult::HANDLED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
result = AdminMessageHandleResult::NOT_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExternalNotificationModule::handleGetRingtone(const MeshPacket &req, AdminMessage *response)
|
|
|
|
{
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("*** handleGetRingtone\n");
|
2023-01-18 20:51:48 +00:00
|
|
|
if (req.decoded.want_response) {
|
2023-01-07 14:24:46 +00:00
|
|
|
response->which_payload_variant = AdminMessage_get_ringtone_response_tag;
|
2023-01-16 09:55:40 +00:00
|
|
|
strncpy(response->get_ringtone_response, rtttlConfig.ringtone, sizeof(response->get_ringtone_response));
|
2023-01-07 14:24:46 +00:00
|
|
|
} // Don't send anything if not instructed to. Better than asserting.
|
2022-12-29 15:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExternalNotificationModule::handleSetRingtone(const char *from_msg)
|
|
|
|
{
|
|
|
|
int changed = 0;
|
|
|
|
|
|
|
|
if (*from_msg) {
|
|
|
|
changed |= strcmp(rtttlConfig.ringtone, from_msg);
|
2023-01-16 09:55:40 +00:00
|
|
|
strncpy(rtttlConfig.ringtone, from_msg, sizeof(rtttlConfig.ringtone));
|
2022-12-30 16:27:07 +00:00
|
|
|
LOG_INFO("*** from_msg.text:%s\n", from_msg);
|
2022-12-29 15:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (changed) {
|
|
|
|
nodeDB.saveProto(rtttlConfigFile, RTTTLConfig_size, &RTTTLConfig_msg, &rtttlConfig);
|
|
|
|
}
|
|
|
|
}
|