aboutsummaryrefslogtreecommitdiffstats
path: root/include/wifi.h
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2025-09-04 01:11:11 +0200
committerFilip Wandzio <contact@philw.dev>2025-09-04 01:11:11 +0200
commite00f3a9ede1b8e46b480bd68daf48da0bb08acae (patch)
treef666b9aa4d0a03246ab9880e11802d91a23ab1e7 /include/wifi.h
downloade1-e00f3a9ede1b8e46b480bd68daf48da0bb08acae.tar.gz
e1-e00f3a9ede1b8e46b480bd68daf48da0bb08acae.zip
Initial
Diffstat (limited to 'include/wifi.h')
-rw-r--r--include/wifi.h17
1 files changed, 17 insertions, 0 deletions
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 @@
1#ifndef WIFI_H
2#define WIFI_H
3
4#include "esp_wifi.h"
5#include "wifi_scan.h"
6
7/**
8 * @brief Initializes the WiFi interface in station mode.
9 *
10 * Sets up the default WiFi station network interface,
11 * initializes the WiFi driver with default configurations,
12 * starts WiFi, scans for available networks, and connects to
13 * the configured SSID and password.
14 */
15void wifi_init_sta(void);
16
17#endif