InfiniTime.git
ref: aab60cf1371166d6b203363b8f3114d8b831d472
src/DisplayApp/Screens/BleIcon.cpp
1
2
3
4
5
6
7
8
|
#include "BleIcon.h"
#include "Symbols.h"
using namespace Pinetime::Applications::Screens;
const char* BleIcon::GetIcon(bool isConnected) {
if(isConnected) return Symbols::bluetooth;
else return "";
}
|