1
0
Fork 0
InfiniTime/src/displayapp/screens/BatteryIcon.h

14 lines
311 B
C
Raw Normal View History

#pragma once
namespace Pinetime {
namespace Applications {
namespace Screens {
class BatteryIcon {
2021-04-24 12:00:45 +03:00
public:
static const char* GetUnknownIcon();
static const char* GetBatteryIcon(int batteryPercent);
static const char* GetPlugIcon(bool isCharging);
};
}
}
}