summaryrefslogtreecommitdiff
path: root/src/Components/Ble/BleController.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Components/Ble/BleController.h')
-rw-r--r--src/Components/Ble/BleController.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Components/Ble/BleController.h b/src/Components/Ble/BleController.h
index be491ee9..4f037fc1 100644
--- a/src/Components/Ble/BleController.h
+++ b/src/Components/Ble/BleController.h
@@ -1,15 +1,29 @@
#pragma once
+#include <FreeRTOS.h>>
+#include <queue.h>
+
namespace Pinetime {
namespace Controllers {
class Ble {
public:
+ struct NotificationMessage {
+ uint8_t size = 0;
+ const char* message = nullptr;
+ };
+
+ Ble();
bool IsConnected() const {return isConnected;}
void Connect();
void Disconnect();
+ void PushNotification(const char* message, uint8_t size);
+ bool PopNotification(NotificationMessage& msg);
+
private:
bool isConnected = false;
+ QueueHandle_t notificationQueue;
+
};
}
} \ No newline at end of file