
new navigation add some color to the apps redesign menus new settings menu new quick settings code clean up size reduction by converting navigation images to font and more...
30 lines
497 B
C++
30 lines
497 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "Screen.h"
|
|
#include <lvgl/src/lv_core/lv_style.h>
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
|
|
|
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;
|
|
|
|
|
|
};
|
|
}
|
|
}
|
|
}
|