From e00f3a9ede1b8e46b480bd68daf48da0bb08acae Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Thu, 4 Sep 2025 01:11:11 +0200 Subject: Initial --- include/wifi.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 include/wifi.h (limited to 'include/wifi.h') diff --git a/include/wifi.h b/include/wifi.h new file mode 100644 index 0000000..bdcbe76 --- /dev/null +++ b/include/wifi.h @@ -0,0 +1,17 @@ +#ifndef WIFI_H +#define WIFI_H + +#include "esp_wifi.h" +#include "wifi_scan.h" + +/** + * @brief Initializes the WiFi interface in station mode. + * + * Sets up the default WiFi station network interface, + * initializes the WiFi driver with default configurations, + * starts WiFi, scans for available networks, and connects to + * the configured SSID and password. + */ +void wifi_init_sta(void); + +#endif -- cgit v1.2.3