summaryrefslogtreecommitdiff
path: root/.pio/libdeps/esp32-s3-n16r8/ESP32 BLE Mouse/BleConnectionStatus.h
diff options
context:
space:
mode:
authorkrolyxon <me@krolyxon.com>2026-06-08 23:12:15 +0530
committerkrolyxon <me@krolyxon.com>2026-06-08 23:12:15 +0530
commit8a4d103196312b8a18afc0a2ba0fc13ff1a0b180 (patch)
treea92424ac65fbdb93702ea8c44a5c52c9fd66e28c /.pio/libdeps/esp32-s3-n16r8/ESP32 BLE Mouse/BleConnectionStatus.h
parent1d557527be495c59bbc07f194d903b1cec1780d3 (diff)
remove .pio
Diffstat (limited to '.pio/libdeps/esp32-s3-n16r8/ESP32 BLE Mouse/BleConnectionStatus.h')
-rw-r--r--.pio/libdeps/esp32-s3-n16r8/ESP32 BLE Mouse/BleConnectionStatus.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/.pio/libdeps/esp32-s3-n16r8/ESP32 BLE Mouse/BleConnectionStatus.h b/.pio/libdeps/esp32-s3-n16r8/ESP32 BLE Mouse/BleConnectionStatus.h
deleted file mode 100644
index 45b7185..0000000
--- a/.pio/libdeps/esp32-s3-n16r8/ESP32 BLE Mouse/BleConnectionStatus.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef ESP32_BLE_CONNECTION_STATUS_H
-#define ESP32_BLE_CONNECTION_STATUS_H
-#include "sdkconfig.h"
-#if defined(CONFIG_BT_ENABLED)
-
-#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;
-};
-
-#endif // CONFIG_BT_ENABLED
-#endif // ESP32_BLE_CONNECTION_STATUS_H