Connect ESP8266 to unsecured network

I have started playing around with a Sparkfun Thing on an unsecured network using the standalone example sketch. What do I do with the code where it asks for the password?

Blynk.begin(auth, “ssid”, “pass”);

I understand I need to add “linksys” to the code for the “ssid” but there is no password on the unsecured network.Do I just leave it out altogether?

Blynk.begin(auth, “linksys”);

I did not have any luck connecting unless I assigned a password and added it to that line.

Thanks

I do it by making the password spot empty. Like “”

1 Like

Thank you for the reply. I will give that a try.