2020-03-14 15:33:47 +00:00
|
|
|
#include "BleIcon.h"
|
2020-07-04 11:58:15 +00:00
|
|
|
#include "Symbols.h"
|
2020-03-14 15:33:47 +00:00
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
2020-07-04 11:58:15 +00:00
|
|
|
const char* BleIcon::GetIcon(bool isConnected) {
|
|
|
|
if(isConnected) return Symbols::bluetooth;
|
|
|
|
else return "";
|
2020-03-14 15:33:47 +00:00
|
|
|
}
|