optimize for precision over accuracy

correctly classifying when the watch is on is more important than classifying classifying when the watch is off
pull/2121/head
Spence Churchill 2022-09-09 17:54:08 -07:00 committed by GitHub
parent dc8319d97a
commit 4a2d8212c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});