aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/DisplayApp.cpp
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2023-02-20 09:29:10 +0200
committerRiku Isokoski <riksu9000@gmail.com>2023-02-25 18:06:37 +0200
commita5eac74fb524b0c39ded901cd1d32b19905ff241 (patch)
tree98971dbe736a56319cada359235b6367804188f6 /src/displayapp/DisplayApp.cpp
parent0d074ee6e9dd93d0e3199f995726b8994dbcbfe6 (diff)
motion: Disable Motion app
This is a debugging app, not useful for most people. Also remove the app icon.
Diffstat (limited to 'src/displayapp/DisplayApp.cpp')
-rw-r--r--src/displayapp/DisplayApp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp
index 6698ea28..1648a090 100644
--- a/src/displayapp/DisplayApp.cpp
+++ b/src/displayapp/DisplayApp.cpp
@@ -363,6 +363,9 @@ void DisplayApp::LoadScreen(Apps app, DisplayApp::FullRefreshDirections directio
currentScreen =
std::make_unique<Screens::ApplicationList>(this, settingsController, batteryController, bleController, dateTimeController);
break;
+ case Apps::Motion:
+ // currentScreen = std::make_unique<Screens::Motion>(motionController);
+ // break;
case Apps::None:
case Apps::Clock:
currentScreen = std::make_unique<Screens::Clock>(dateTimeController,
@@ -493,9 +496,6 @@ void DisplayApp::LoadScreen(Apps app, DisplayApp::FullRefreshDirections directio
case Apps::Metronome:
currentScreen = std::make_unique<Screens::Metronome>(motorController, *systemTask);
break;
- case Apps::Motion:
- currentScreen = std::make_unique<Screens::Motion>(motionController);
- break;
case Apps::Steps:
currentScreen = std::make_unique<Screens::Steps>(motionController, settingsController);
break;