2021-10-13 20:08:35 +00:00
|
|
|
#include "displayapp/screens/BleIcon.h"
|
|
|
|
#include "displayapp/screens/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) {
|
2021-04-18 17:28:14 +00:00
|
|
|
if (isConnected)
|
|
|
|
return Symbols::bluetooth;
|
|
|
|
else
|
|
|
|
return "";
|
2020-03-14 15:33:47 +00:00
|
|
|
}
|