Increase buzz duration

This commit is contained in:
2026-03-10 16:54:44 -06:00
parent 07bb582ddd
commit ea58f2101f

View File

@@ -42,7 +42,7 @@
let intervals = Math.floor(Tt1 / fifteenMinutes); let intervals = Math.floor(Tt1 / fifteenMinutes);
if (intervals > (stopWatch.buzz1 || 0)) { if (intervals > (stopWatch.buzz1 || 0)) {
stopWatch.buzz1 = intervals; stopWatch.buzz1 = intervals;
Bangle.buzz(); Bangle.buzz(500);
saveStopWatch(); saveStopWatch();
} }
} }
@@ -61,7 +61,7 @@
const oneMinute = 60 * 1000; const oneMinute = 60 * 1000;
if (!stopWatch.buzzed2 && Tt2 >= oneMinute) { if (!stopWatch.buzzed2 && Tt2 >= oneMinute) {
stopWatch.buzzed2 = true; stopWatch.buzzed2 = true;
Bangle.buzz(); Bangle.buzz(500);
saveStopWatch(); saveStopWatch();
} }
} }