diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2021-11-29 17:38:06 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2021-11-29 17:38:06 -0700 |
commit | c6a0cf2ff3403e9726ea6429af50bedcfd4f9a01 (patch) | |
tree | 428d4348bbf9ea44fa279368002d2c58b9f388c9 /include | |
parent | 1888bc20144559265b0719e5a0f83a5150a867c6 (diff) | |
download | esp32-ws2812b-c6a0cf2ff3403e9726ea6429af50bedcfd4f9a01.tar.gz esp32-ws2812b-c6a0cf2ff3403e9726ea6429af50bedcfd4f9a01.tar.bz2 esp32-ws2812b-c6a0cf2ff3403e9726ea6429af50bedcfd4f9a01.zip |
Added simple routine to use a server socket.
Diffstat (limited to 'include')
-rw-r--r-- | include/station.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/station.h b/include/station.h index 70d1b14..39d7f53 100644 --- a/include/station.h +++ b/include/station.h @@ -2,6 +2,6 @@ #ifndef STATION_H_ #define STATION_H_ -void wifi_init_station(); +void wifi_init_station(const char* ssid, const char* psk); #endif /* STATION_H_ */ |