mirror of https://github.com/espruino/BangleApps
optimize for precision over accuracy
correctly classifying when the watch is on is more important than classifying classifying when the watch is offpull/2121/head
parent
dc8319d97a
commit
4a2d8212c1
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue