From 15d2e00fa35714a4cf5c36b7396737a360d8fc37 Mon Sep 17 00:00:00 2001 From: Marco Heiming Date: Tue, 1 Feb 2022 07:50:05 +0100 Subject: [PATCH] Increase timeout for HRM value reset --- apps/circlesclock/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/circlesclock/app.js b/apps/circlesclock/app.js index 3c8cc9f91..05f9779ef 100644 --- a/apps/circlesclock/app.js +++ b/apps/circlesclock/app.js @@ -809,7 +809,7 @@ Bangle.on('HRM', function(hrm) { timerHrm = setTimeout(() => { hrtValue = '...'; drawHeartRate(); - }, 10000); + }, 60000); } } });