summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Gauge.h
blob: 2a6b8f830d36a10bef82b38fc138277ebad31add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#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;

      };
    }
  }
}