2021-10-13 22:08:35 +02:00
|
|
|
#include "displayapp/screens/BleIcon.h"
|
|
|
|
#include "displayapp/screens/Symbols.h"
|
2020-03-14 16:33:47 +01:00
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
2022-04-02 16:03:20 +03:00
|
|
|
const char* BleIcon::GetIcon(bool isConnected) {
|
2022-02-20 15:40:49 +01:00
|
|
|
if (isConnected) {
|
|
|
|
return Symbols::bluetooth;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Symbols::none;
|
2021-12-23 20:30:14 -06:00
|
|
|
}
|