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:
|
2021-12-23 21:30:14 -05:00
|
|
|
static const char* GetIcon(Pinetime::Controllers::Ble::ConnectStates state);
|
2020-03-14 11:33:47 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-12-23 21:30:14 -05:00
|
|
|
}
|