2020-02-26 20:49:26 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
2021-10-13 22:08:35 +02:00
|
|
|
#include "displayapp/screens/Screen.h"
|
2020-11-15 16:49:36 +01:00
|
|
|
#include <lvgl/src/lv_core/lv_style.h>
|
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
2020-02-26 20:49:26 +01:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
class Meter : public Screen {
|
2021-04-24 11:00:45 +02:00
|
|
|
public:
|
2021-04-18 19:28:14 +02:00
|
|
|
Meter(DisplayApp* app);
|
|
|
|
~Meter() override;
|
2020-02-26 20:49:26 +01:00
|
|
|
|
2021-07-19 15:26:12 +02:00
|
|
|
void Refresh() override;
|
2020-02-26 20:49:26 +01:00
|
|
|
|
2021-04-24 11:00:45 +02:00
|
|
|
private:
|
2021-04-18 19:28:14 +02:00
|
|
|
lv_style_t style_lmeter;
|
|
|
|
lv_obj_t* lmeter;
|
2020-02-26 20:49:26 +01:00
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
uint32_t value = 0;
|
2021-07-19 15:26:12 +02:00
|
|
|
|
|
|
|
lv_task_t* taskRefresh;
|
2020-02-26 20:49:26 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|