blob: 5058f3eb8442ab9ffa14458382092eef57275461 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "displayapp/screens/BleIcon.h"
#include "displayapp/screens/Symbols.h"
using namespace Pinetime::Applications::Screens;
const char* BleIcon::GetIcon(bool isConnected) {
if (isConnected)
return Symbols::bluetooth;
else
return "";
}
|