da39f402e5
BLE and battery icon replaced in Clock screen. Added heartbeat and step icons in Clock screen. Replace all labels in Menu by icons. Add doc to generate new font.
8 lines
No EOL
205 B
C++
8 lines
No EOL
205 B
C++
#include "BleIcon.h"
|
|
#include "Symbols.h"
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
const char* BleIcon::GetIcon(bool isConnected) {
|
|
if(isConnected) return Symbols::bluetooth;
|
|
else return "";
|
|
} |