InfiniTime/src/displayapp/screens/Gauge.h

31 lines
539 B
C
Raw Normal View History

2020-02-26 19:49:26 +00:00
#pragma once
#include <cstdint>
#include "Screen.h"
2020-11-15 15:49:36 +00:00
#include <lvgl/lvgl.h>
2020-02-26 19:49:26 +00:00
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;
};
}
}
}