BLE and battery icon replaced in Clock screen. Added heartbeat and step icons in Clock screen. Replace all labels in Menu by icons. Add doc to generate new font.
32 lines
631 B
C++
32 lines
631 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#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 Gauge : public Screen{
|
|
public:
|
|
Gauge(DisplayApp* app);
|
|
~Gauge() override;
|
|
|
|
bool Refresh() override;
|
|
bool OnButtonPushed() override;
|
|
|
|
private:
|
|
lv_style_t style;
|
|
lv_color_t needle_colors[3];
|
|
lv_obj_t * gauge1;
|
|
|
|
uint32_t value=30;
|
|
bool running = true;
|
|
|
|
};
|
|
}
|
|
}
|
|
}
|