summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Steps.h
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/screens/Steps.h
parent6ef420d2407a4685b56a233f6b0f849e90c6cf49 (diff)
sans steps
Diffstat (limited to 'src/displayapp/screens/Steps.h')
-rw-r--r--src/displayapp/screens/Steps.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/displayapp/screens/Steps.h b/src/displayapp/screens/Steps.h
deleted file mode 100644
index f109e0f..0000000
--- a/src/displayapp/screens/Steps.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#pragma once
-
-#include <cstdint>
-#include <lvgl/lvgl.h>
-#include "displayapp/screens/Screen.h"
-#include <components/motion/MotionController.h>
-
-namespace Pinetime {
-
- namespace Controllers {
- class Settings;
- }
-
- namespace Applications {
- namespace Screens {
-
- class Steps : public Screen {
- public:
- Steps(DisplayApp* app, Controllers::MotionController& motionController, Controllers::Settings& settingsController);
- ~Steps() override;
-
- void Refresh() override;
- void lapBtnEventHandler(lv_event_t event);
-
- private:
- Controllers::MotionController& motionController;
- Controllers::Settings& settingsController;
-
- uint32_t currentTripSteps = 0;
-
- lv_obj_t* lSteps;
- lv_obj_t* lStepsIcon;
- lv_obj_t* stepsArc;
- lv_obj_t* resetBtn;
- lv_obj_t* resetButtonLabel;
- lv_obj_t* tripLabel;
-
- uint32_t stepsCount;
-
- lv_task_t* taskRefresh;
- };
- }
- }
-}