From 4a2d8212c1abb97e185925cee9cbb20a24fa31e2 Mon Sep 17 00:00:00 2001 From: Spence Churchill Date: Fri, 9 Sep 2022 17:54:08 -0700 Subject: [PATCH] optimize for precision over accuracy correctly classifying when the watch is on is more important than classifying classifying when the watch is off --- modules/wear_detect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wear_detect.js b/modules/wear_detect.js index 61321ac59..9581657cf 100644 --- a/modules/wear_detect.js +++ b/modules/wear_detect.js @@ -11,7 +11,7 @@ exports.isWorn = function() { return new Promise(resolve => { if (Bangle.isCharging()) return resolve(false); - if (Bangle.getHealthStatus().movement > 146) + if (Bangle.getHealthStatus().movement > 124) return resolve(true); return resolve(false); });