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