From 9cbcea3f575854c988194861eefa0b36fdbc3912 Mon Sep 17 00:00:00 2001 From: JustScott Date: Tue, 18 Feb 2025 11:22:47 -0600 Subject: [PATCH] Pass settingsController to motionController Supports the sleep settings PR #2230 --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 4b7bbda..f59beaf 100644 --- a/main.cpp +++ b/main.cpp @@ -357,7 +357,7 @@ Pinetime::Controllers::MotorController motorController {}; Pinetime::Controllers::DateTime dateTimeController {settingsController}; Pinetime::Drivers::Watchdog watchdog; Pinetime::Controllers::NotificationManager notificationManager; -Pinetime::Controllers::MotionController motionController; +Pinetime::Controllers::MotionController motionController {settingsController}; #if defined(INFINITIME_TIMERCONTROLLER) Pinetime::Controllers::TimerController timerController; #endif