#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