Increase timeout for HRM value reset

pull/1376/head
Marco Heiming 2022-02-01 07:50:05 +01:00
parent 10c9eeaea0
commit 15d2e00fa3
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,7 @@ Bangle.on('HRM', function(hrm) {
timerHrm = setTimeout(() => {
hrtValue = '...';
drawHeartRate();
}, 10000);
}, 60000);
}
}
});