InfiniTime.git
ref: e888b92b1f2e239223a31e21f0f6bfdc9f2e6a9b
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 "";
}
|