15 lines
No EOL
321 B
C++
15 lines
No EOL
321 B
C++
#pragma once
|
|
|
|
#include <libs/lvgl/src/lv_draw/lv_img_decoder.h>
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Screens {
|
|
class BatteryIcon {
|
|
public:
|
|
static lv_img_dsc_t* GetUnknownIcon();
|
|
static lv_img_dsc_t* GetIcon(bool isCharging, float batteryPercent);
|
|
};
|
|
}
|
|
}
|
|
} |