optimize for precision over accuracy
correctly classifying when the watch is on is more important than classifying classifying when the watch is offmaster
parent
dc8319d97a
commit
4a2d8212c1
|
|
@ -11,7 +11,7 @@ exports.isWorn = function() {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
if (Bangle.isCharging())
|
if (Bangle.isCharging())
|
||||||
return resolve(false);
|
return resolve(false);
|
||||||
if (Bangle.getHealthStatus().movement > 146)
|
if (Bangle.getHealthStatus().movement > 124)
|
||||||
return resolve(true);
|
return resolve(true);
|
||||||
return resolve(false);
|
return resolve(false);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue