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.
1 parent ad73e1b commit 29b9050Copy full SHA for 29b9050
src/displayapp/screens/Timer.cpp
@@ -122,6 +122,11 @@ void Timer::Refresh() {
122
// Timer exists and has expired, so we're in ringing mode
123
DisplayTime();
124
125
+ if (timerStatus->distanceToExpiry.count() < 10000 && !motorController.IsRinging()) {
126
+ // If 10 seconds haven't passed and we're not buzzing, keep buzzing
127
+ motorController.StartRinging();
128
+ }
129
+
130
if (timerStatus->distanceToExpiry.count() > 10000 && motorController.IsRinging()) {
131
// Stop buzzing after 10 seconds, but continue the counter
132
motorController.StopRinging();
0 commit comments