12 lines
262 B
C++
12 lines
262 B
C++
#include "displayapp/screens/BleIcon.h"
|
|
#include "displayapp/screens/Symbols.h"
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
const char* BleIcon::GetIcon(bool isConnected) {
|
|
if (isConnected) {
|
|
return Symbols::bluetooth;
|
|
}
|
|
|
|
return Symbols::none;
|
|
}
|