InfiniTime/src/displayapp/screens/Meter.h

33 lines
616 B
C
Raw Normal View History

2020-02-26 19:49:26 +00:00
#pragma once
#include <cstdint>
#include <chrono>
#include "Screen.h"
#include <bits/unique_ptr.h>
#include <libs/lvgl/src/lv_core/lv_style.h>
#include <libs/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;
bool OnButtonPushed() override;
private:
lv_style_t style_lmeter;
lv_obj_t * lmeter;
uint32_t value=0;
bool running = true;
};
}
}
}