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
Please note that WEP/WPA has significant security vulnerabilities and its use is strongly discouraged.
91
+
The support may therefore be removed in the future. Please migrate to WPA2 or newer.
92
+
93
+
Solution
94
+
^^^^^^^^
95
+
96
+
Nevertheless, it may be necessary to connect to insecure networks. To do this, the security requirement of the ESP32 must be lowered to an insecure level by using:
97
+
98
+
.. code-block:: arduino
99
+
100
+
WiFi.setMinSecurity(WIFI_AUTH_WEP); // Lower min security to WEP.
101
+
// or
102
+
WiFi.setMinSecurity(WIFI_AUTH_WPA_PSK); // Lower min security to WPA.
103
+
104
+
Why does the board not connect to WPA3-encrypted Wi-Fi?
0 commit comments