ac7b2da611
Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
29 lines
523 B
C++
29 lines
523 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "displayapp/screens/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;
|
|
|
|
void Refresh() override;
|
|
|
|
private:
|
|
lv_style_t style_lmeter;
|
|
lv_obj_t* lmeter;
|
|
|
|
uint32_t value = 0;
|
|
|
|
lv_task_t* taskRefresh;
|
|
};
|
|
}
|
|
}
|
|
}
|