InfiniTime/src/displayapp/screens/BatteryIcon.h
2020-11-16 01:35:51 +01:00

14 lines
317 B
C++

#pragma once
namespace Pinetime {
namespace Applications {
namespace Screens {
class BatteryIcon {
public:
static const char* GetUnknownIcon();
static const char* GetBatteryIcon(float batteryPercent);
static const char* GetPlugIcon(bool isCharging);
};
}
}
}