aboutsummaryrefslogtreecommitdiff
path: root/src/bluetooth
diff options
context:
space:
mode:
authorkrolyxon <me@krolyxon.com>2026-05-14 23:36:41 +0530
committerkrolyxon <me@krolyxon.com>2026-05-14 23:36:41 +0530
commit3631045878a955407115561fa86b96566bd33cfc (patch)
tree18bc50154075d55f6012d63d76aab052e5014671 /src/bluetooth
parent58c9c8f51dcec555250195d127a49572c1b9fd9a (diff)
avoid using relative includes
Diffstat (limited to 'src/bluetooth')
-rw-r--r--src/bluetooth/ble_mouse.cpp2
-rw-r--r--src/bluetooth/blescanner.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/bluetooth/ble_mouse.cpp b/src/bluetooth/ble_mouse.cpp
index 872f471..3499c5f 100644
--- a/src/bluetooth/ble_mouse.cpp
+++ b/src/bluetooth/ble_mouse.cpp
@@ -3,7 +3,7 @@
#include <Arduino.h>
#include <BleMouse.h>
-#include "../utils/buttons.h"
+#include "utils/buttons.h"
#include "ui/display.h"
// ===== BLE MOUSE =====
diff --git a/src/bluetooth/blescanner.cpp b/src/bluetooth/blescanner.cpp
index 682f5f2..923da65 100644
--- a/src/bluetooth/blescanner.cpp
+++ b/src/bluetooth/blescanner.cpp
@@ -4,8 +4,8 @@
#include <BLEScan.h>
#include <vector>
-#include "../config.h"
-#include "../utils/buttons.h"
+#include "config.h"
+#include "utils/buttons.h"
#include "ui/display.h"
// ===== DEVICE STRUCT =====