aboutsummaryrefslogtreecommitdiff
path: root/src/libs/BleConnectionStatus.h
diff options
context:
space:
mode:
authorkrolyxon <me@krolyxon.com>2026-05-14 23:19:41 +0530
committerkrolyxon <me@krolyxon.com>2026-05-14 23:19:41 +0530
commit58c9c8f51dcec555250195d127a49572c1b9fd9a (patch)
treebbf6f4003fbb36882ee81ed511eec66fd15e735f /src/libs/BleConnectionStatus.h
parent206ed229198be252a9ae94342b39618aaab55925 (diff)
add .clang-format, and apply formatting
Diffstat (limited to 'src/libs/BleConnectionStatus.h')
-rw-r--r--src/libs/BleConnectionStatus.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/libs/BleConnectionStatus.h b/src/libs/BleConnectionStatus.h
index b703150..45b7185 100644
--- a/src/libs/BleConnectionStatus.h
+++ b/src/libs/BleConnectionStatus.h
@@ -3,18 +3,17 @@
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)
-#include <BLEServer.h>
#include "BLE2902.h"
#include "BLECharacteristic.h"
+#include <BLEServer.h>
-class BleConnectionStatus : public BLEServerCallbacks
-{
-public:
- BleConnectionStatus(void);
- bool connected = false;
- void onConnect(BLEServer* pServer);
- void onDisconnect(BLEServer* pServer);
- BLECharacteristic* inputMouse;
+class BleConnectionStatus : public BLEServerCallbacks {
+ public:
+ BleConnectionStatus(void);
+ bool connected = false;
+ void onConnect(BLEServer *pServer);
+ void onDisconnect(BLEServer *pServer);
+ BLECharacteristic *inputMouse;
};
#endif // CONFIG_BT_ENABLED