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