diff options
| author | krolyxon <me@krolyxon.com> | 2026-05-14 23:36:41 +0530 |
|---|---|---|
| committer | krolyxon <me@krolyxon.com> | 2026-05-14 23:36:41 +0530 |
| commit | 3631045878a955407115561fa86b96566bd33cfc (patch) | |
| tree | 18bc50154075d55f6012d63d76aab052e5014671 /src/wifi | |
| parent | 58c9c8f51dcec555250195d127a49572c1b9fd9a (diff) | |
avoid using relative includes
Diffstat (limited to 'src/wifi')
| -rw-r--r-- | src/wifi/wifi_analyzer.cpp | 4 | ||||
| -rw-r--r-- | src/wifi/wifi_scan.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/wifi/wifi_analyzer.cpp b/src/wifi/wifi_analyzer.cpp index 2f46b87..f630f70 100644 --- a/src/wifi/wifi_analyzer.cpp +++ b/src/wifi/wifi_analyzer.cpp @@ -2,8 +2,8 @@ #include <WiFi.h> #include <esp_wifi.h> -#include "../ui/display.h" -#include "../utils/buttons.h" +#include "ui/display.h" +#include "utils/buttons.h" // ===== CONFIG ===== #define GRAPH_WIDTH 128 diff --git a/src/wifi/wifi_scan.cpp b/src/wifi/wifi_scan.cpp index cb284ff..ec172c8 100644 --- a/src/wifi/wifi_scan.cpp +++ b/src/wifi/wifi_scan.cpp @@ -1,5 +1,5 @@ -#include "../ui/display.h" -#include "../utils/buttons.h" +#include "ui/display.h" +#include "utils/buttons.h" #include <Arduino.h> #include <WiFi.h> |
