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