We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3358783 + 57f93a4 commit 122f5faCopy full SHA for 122f5fa
examples/companion_radio/UITask.cpp
@@ -408,8 +408,12 @@ void UITask::handleButtonQuadruplePress() {
408
if (strcmp(_sensors->getSettingName(i), "gps") == 0) {
409
if (strcmp(_sensors->getSettingValue(i), "1") == 0) {
410
_sensors->setSettingValue("gps", "0");
411
+ soundBuzzer(UIEventType::ack);
412
+ sprintf(_alert, "GPS: Disabled");
413
} else {
414
_sensors->setSettingValue("gps", "1");
415
416
+ sprintf(_alert, "GPS: Enabled");
417
}
418
break;
419
0 commit comments