2020-02-26 14:49:26 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include "Screen.h"
|
2020-11-15 10:49:36 -05:00
|
|
|
#include <lvgl/src/lv_core/lv_style.h>
|
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
2020-02-26 14:49:26 -05:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
|
|
|
|
class Meter : public Screen{
|
|
|
|
public:
|
|
|
|
Meter(DisplayApp* app);
|
|
|
|
~Meter() override;
|
|
|
|
|
|
|
|
bool Refresh() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
lv_style_t style_lmeter;
|
|
|
|
lv_obj_t * lmeter;
|
|
|
|
|
|
|
|
uint32_t value=0;
|
2021-04-03 22:08:51 -04:00
|
|
|
|
2020-02-26 14:49:26 -05:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|