Skip to content

Commit a9ab1f0

Browse files
committed
increase gps/buzzer alert times
600 is a bit short for eink
1 parent 9f18530 commit a9ab1f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/companion_radio/ui-new/UITask.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -632,11 +632,11 @@ void UITask::toggleGPS() {
632632
if (strcmp(_sensors->getSettingValue(i), "1") == 0) {
633633
_sensors->setSettingValue("gps", "0");
634634
soundBuzzer(UIEventType::ack);
635-
showAlert("GPS: Disabled", 600);
635+
showAlert("GPS: Disabled", 800);
636636
} else {
637637
_sensors->setSettingValue("gps", "1");
638638
soundBuzzer(UIEventType::ack);
639-
showAlert("GPS: Enabled", 600);
639+
showAlert("GPS: Enabled", 800);
640640
}
641641
_next_refresh = 0;
642642
break;
@@ -651,10 +651,10 @@ void UITask::toggleBuzzer() {
651651
if (buzzer.isQuiet()) {
652652
buzzer.quiet(false);
653653
soundBuzzer(UIEventType::ack);
654-
showAlert("Buzzer: ON", 600);
654+
showAlert("Buzzer: ON", 800);
655655
} else {
656656
buzzer.quiet(true);
657-
showAlert("Buzzer: OFF", 600);
657+
showAlert("Buzzer: OFF", 800);
658658
}
659659
_next_refresh = 0; // trigger refresh
660660
#endif

0 commit comments

Comments
 (0)