From 713a6582e58e0a3ce6e7c548a0eef1010f153a41 Mon Sep 17 00:00:00 2001 From: notEvil Date: Sat, 16 Sep 2023 19:07:35 +0200 Subject: [PATCH] - changed buzz pattern before long break --- apps/pomoplus/common.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/pomoplus/common.js b/apps/pomoplus/common.js index b1cd42de8..bf3e80751 100644 --- a/apps/pomoplus/common.js +++ b/apps/pomoplus/common.js @@ -105,14 +105,13 @@ exports.nextPhase = function (vibrate) { if (vibrate) { if (exports.state.phase == exports.PHASE_WORKING) { - Bangle.buzz(750, 1); + Bangle.buzz(800, 1); } else if (exports.state.phase == exports.PHASE_SHORT_BREAK) { Bangle.buzz(); setTimeout(Bangle.buzz, 400); } else { Bangle.buzz(); - setTimeout(Bangle.buzz, 400); - setTimeout(Bangle.buzz, 600); + setTimeout(Bangle.buzz, 400, 400); } } -} \ No newline at end of file +}