summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Gauge.h
diff options
context:
space:
mode:
authorJoaquim <joaquim.org@gmail.com>2021-02-01 12:14:49 +0000
committerJoaquim <joaquim.org@gmail.com>2021-02-01 12:14:49 +0000
commita4361de0cf467b3fc4fad1dffc18d9271ba4f439 (patch)
tree62e5355ff931eff6b4b2872308d7c91470f4e5ab /src/displayapp/screens/Gauge.h
parentccd423bcef52b241fa0ced82d59fdb432b4347de (diff)
Cleanup
Diffstat (limited to 'src/displayapp/screens/Gauge.h')
-rw-r--r--src/displayapp/screens/Gauge.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/displayapp/screens/Gauge.h b/src/displayapp/screens/Gauge.h
deleted file mode 100644
index 2a6b8f83..00000000
--- a/src/displayapp/screens/Gauge.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#pragma once
-
-#include <cstdint>
-#include "Screen.h"
-#include <lvgl/lvgl.h>
-
-namespace Pinetime {
- namespace Applications {
- namespace Screens {
-
- class Gauge : public Screen{
- public:
- Gauge(DisplayApp* app);
- ~Gauge() override;
-
- bool Refresh() override;
- bool OnButtonPushed() override;
-
- private:
- lv_style_t style;
- lv_color_t needle_colors[3];
- lv_obj_t * gauge1;
-
- uint32_t value=30;
- bool running = true;
-
- };
- }
- }
-}