Increase buzz duration
This commit is contained in:
@@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user