InfiniTime/src/DisplayApp/Screens/BatteryIcon.h

15 lines
321 B
C
Raw Normal View History

#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);
};
}
}
}