From 6e54344be9219b03275c65abb5d6b0dfb6eeafaf Mon Sep 17 00:00:00 2001 From: Finlay Davidson Date: Sat, 8 Jan 2022 03:55:04 +0100 Subject: [PATCH] Hotfix: don't require watch to be facing up to sleep --- src/components/motion/MotionController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/motion/MotionController.cpp b/src/components/motion/MotionController.cpp index 2f9660edbf..2386327995 100644 --- a/src/components/motion/MotionController.cpp +++ b/src/components/motion/MotionController.cpp @@ -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) {