You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/esp8266wifi/readme.rst
+33
Original file line number
Diff line number
Diff line change
@@ -156,6 +156,39 @@ The Client class creates `clients <https://en.wikipedia.org/wiki/Client_(computi
156
156
157
157
Check out the separate section with `list of functions <client-class.rst>`__
158
158
159
+
WiFi Multi
160
+
~~~~~~~~~~
161
+
162
+
`ESP8266WiFiMulti.h` can be used to connect to a WiFi network with strongest WiFi signal (RSSI). This requires registering one or more access points with SSID and password. It automatically switches to another WiFi network when the WiFi connection is lost.
163
+
164
+
Example:
165
+
166
+
.. code:: cpp
167
+
#include <ESP8266WiFiMulti.h>
168
+
169
+
ESP8266WiFiMulti wifiMulti;
170
+
171
+
// WiFi connect timeout per AP. Increase when connecting takes longer.
0 commit comments