aboutsummaryrefslogtreecommitdiff
path: root/include/station.h
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2021-11-29 16:39:37 -0700
committerJosh Rahm <joshuarahm@gmail.com>2021-11-29 16:39:37 -0700
commit1888bc20144559265b0719e5a0f83a5150a867c6 (patch)
treee82e18ae283a30f434196f50d114ca4beeef0189 /include/station.h
parent41574c410661c7ce9231cf9c29602f307f393276 (diff)
downloadesp32-ws2812b-1888bc20144559265b0719e5a0f83a5150a867c6.tar.gz
esp32-ws2812b-1888bc20144559265b0719e5a0f83a5150a867c6.tar.bz2
esp32-ws2812b-1888bc20144559265b0719e5a0f83a5150a867c6.zip
Add ability to connect to wifi.
This adds a small subsystem to connect to a basic WPA accesspoint.
Diffstat (limited to 'include/station.h')
-rw-r--r--include/station.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/station.h b/include/station.h
new file mode 100644
index 0000000..70d1b14
--- /dev/null
+++ b/include/station.h
@@ -0,0 +1,7 @@
+#pragma once
+#ifndef STATION_H_
+#define STATION_H_
+
+void wifi_init_station();
+
+#endif /* STATION_H_ */