diff options
| author | JF <jf@codingfield.com> | 2020-07-11 19:09:34 (GMT) |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2020-07-11 19:09:34 (GMT) |
| commit | 64c14274fc2f025fc48d3df47a1640f08eb968cd (patch) | |
| tree | 262cf8b4e84c556748f42bbf778b48a68210921d /src/DisplayApp/Screens/BatteryIcon.h | |
| parent | 0bcaf9c22d6183ba8072e10abb9da7aea578b8db (diff) | |
| parent | 6309719a62436fd746a7a8b228205e93b419ca26 (diff) | |
Merge branch 'develop'
# Conflicts:
# CMakeLists.txt
Diffstat (limited to 'src/DisplayApp/Screens/BatteryIcon.h')
| -rw-r--r-- | src/DisplayApp/Screens/BatteryIcon.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/DisplayApp/Screens/BatteryIcon.h b/src/DisplayApp/Screens/BatteryIcon.h index 4e2a3a0..58f04a8 100644 --- a/src/DisplayApp/Screens/BatteryIcon.h +++ b/src/DisplayApp/Screens/BatteryIcon.h @@ -7,8 +7,9 @@ namespace Pinetime { namespace Screens { class BatteryIcon { public: - static lv_img_dsc_t* GetUnknownIcon(); - static lv_img_dsc_t* GetIcon(bool isCharging, float batteryPercent); + static const char* GetUnknownIcon(); + static const char* GetBatteryIcon(float batteryPercent); + static const char* GetPlugIcon(bool isCharging); }; } } |
