Is it possible to connect to an SSID that does not require a password? My project using ESP8266-01 modules will sometimes be used in non-password protected guest networks.
asked Jan 11, 2018 at 3:13
-
1yes, just skip the password. it works.dandavis– dandavis2018年01月11日 22:03:52 +00:00Commented Jan 11, 2018 at 22:03
1 Answer 1
Yes, it works! You can use:
WiFi.begin(ssid, NULL)
or even leave the passphrase empty, because it is optional:
WiFi.begin(ssid)
programandoconro
1331 silver badge8 bronze badges