diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2021-11-29 16:39:37 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2021-11-29 16:39:37 -0700 |
commit | 1888bc20144559265b0719e5a0f83a5150a867c6 (patch) | |
tree | e82e18ae283a30f434196f50d114ca4beeef0189 /include/station.h | |
parent | 41574c410661c7ce9231cf9c29602f307f393276 (diff) | |
download | esp32-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.h | 7 |
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_ */ |