summaryrefslogtreecommitdiff
path: root/src/DisplayApp/Screens/BatteryIcon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/DisplayApp/Screens/BatteryIcon.h')
-rw-r--r--src/DisplayApp/Screens/BatteryIcon.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/DisplayApp/Screens/BatteryIcon.h b/src/DisplayApp/Screens/BatteryIcon.h
new file mode 100644
index 00000000..4e2a3a03
--- /dev/null
+++ b/src/DisplayApp/Screens/BatteryIcon.h
@@ -0,0 +1,15 @@
+#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);
+ };
+ }
+ }
+} \ No newline at end of file