InfiniTime/src/displayapp/screens/BatteryIcon.h

14 lines
317 B
C
Raw Normal View History

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