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