summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/BleIcon.cpp
blob: 1bbbd0531a4932f9449a654330bda910b870f69a (plain)
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 "";
}