2020-03-14 11:33:47 -04:00
|
|
|
#pragma once
|
|
|
|
|
2021-12-23 21:30:14 -05:00
|
|
|
#include "components/ble/BleController.h"
|
|
|
|
|
2020-03-14 11:33:47 -04:00
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
class BleIcon {
|
|
|
|
public:
|
2022-04-02 09:03:20 -04:00
|
|
|
static const char* GetIcon(bool isConnected);
|
2020-03-14 11:33:47 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-12-23 21:30:14 -05:00
|
|
|
}
|