summaryrefslogtreecommitdiff
path: root/src/displayapp/DisplayApp.cpp
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-03-26 04:04:07 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-03-26 04:06:47 (GMT)
commit5215bc45a6520258c021a6df3940de9f1f16d6ff (patch)
tree9a990b2d1f32a51be3ed7f796ac3d33573152a07 /src/displayapp/DisplayApp.cpp
parent6ef420d2407a4685b56a233f6b0f849e90c6cf49 (diff)
sans steps
Diffstat (limited to 'src/displayapp/DisplayApp.cpp')
-rw-r--r--src/displayapp/DisplayApp.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp
index 8a9875b..603d29f 100644
--- a/src/displayapp/DisplayApp.cpp
+++ b/src/displayapp/DisplayApp.cpp
@@ -15,7 +15,6 @@
#include "displayapp/screens/Meter.h"
#include "displayapp/screens/Notifications.h"
#include "displayapp/screens/Tile.h"
-#include "displayapp/screens/Steps.h"
#include "displayapp/screens/Error.h"
#include "drivers/Cst816s.h"
@@ -29,7 +28,6 @@
#include "displayapp/screens/settings/SettingTimeFormat.h"
#include "displayapp/screens/settings/SettingWakeUp.h"
#include "displayapp/screens/settings/SettingDisplay.h"
-#include "displayapp/screens/settings/SettingSteps.h"
#include "displayapp/screens/settings/SettingShakeThreshold.h"
#include "libs/lv_conf.h"
@@ -359,17 +357,10 @@ void DisplayApp::LoadApp(Apps app) {
currentScreen = std::make_unique<Screens::SettingDisplay>(this, settingsController);
ReturnApp(Apps::Settings);
break;
- case Apps::SettingSteps:
- currentScreen = std::make_unique<Screens::SettingSteps>(this, settingsController);
- ReturnApp(Apps::Settings);
- break;
case Apps::SettingShakeThreshold:
currentScreen = std::make_unique<Screens::SettingShakeThreshold>(this, settingsController, motionController, *systemTask);
ReturnApp(Apps::Settings);
break;
- case Apps::Steps:
- currentScreen = std::make_unique<Screens::Steps>(this, motionController, settingsController);
- break;
}
currentApp = app;
}