Hotfix: don't require watch to be facing up to sleep

This commit is contained in:
Finlay Davidson 2022-01-08 03:55:04 +01:00
parent 42149218b1
commit 0a7826f27d

View File

@ -68,7 +68,7 @@ int32_t MotionController::currentShakeSpeed() {
}
bool MotionController::ShouldLowerSleep() const {
return z <= 0 && y >= 512 && y >= lastY + 192;
return y >= 512 && y >= lastY + 192;
}
void MotionController::IsSensorOk(bool isOk) {