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