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