summaryrefslogtreecommitdiff
path: root/src/displayapp/Screens/Gauge.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/Screens/Gauge.h')
-rw-r--r--src/displayapp/Screens/Gauge.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/displayapp/Screens/Gauge.h b/src/displayapp/Screens/Gauge.h
new file mode 100644
index 00000000..03c06bed
--- /dev/null
+++ b/src/displayapp/Screens/Gauge.h
@@ -0,0 +1,32 @@
+#pragma once
+
+#include <cstdint>
+#include "Screen.h"
+#include <bits/unique_ptr.h>
+#include <libs/lvgl/src/lv_core/lv_style.h>
+#include <libs/lvgl/src/lv_core/lv_obj.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;
+
+ };
+ }
+ }
+}