Skip to content

Commit 7aa6ca7

Browse files
committed
Make vibration after timer ends more noticable
Replace the single short vibration after timer ends with three ones with longer duration. The single short pulse was very easy to miss.
1 parent ba78fff commit 7aa6ca7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/displayapp/DisplayApp.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,11 @@ void DisplayApp::Refresh() {
372372
} else {
373373
LoadNewScreen(Apps::Timer, DisplayApp::FullRefreshDirections::Up);
374374
}
375-
motorController.RunForDuration(35);
375+
motorController.RunForDuration(100);
376+
vTaskDelay(pdMS_TO_TICKS(500));
377+
motorController.RunForDuration(100);
378+
vTaskDelay(pdMS_TO_TICKS(500));
379+
motorController.RunForDuration(100);
376380
break;
377381
case Messages::AlarmTriggered:
378382
if (currentApp == Apps::Alarm) {

0 commit comments

Comments
 (0)