blob: 019f80397fbce972cdd9281148acb2c81343e442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "displayapp/screens/BleIcon.h"
#include "displayapp/screens/Symbols.h"
using namespace Pinetime::Applications::Screens;
const char* BleIcon::GetIcon(bool isRadioEnabled, bool isConnected) {
if(!isRadioEnabled) {
return Symbols::airplane;
}
if (isConnected) {
return Symbols::bluetooth;
}
return Symbols::none;
}
|