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
Got this snippet from Alex, makes code transparent with respect to password protected and non-password protected WiFi networks. We can update Arduino WiFi-examples to use this:
// Connect to Wifi network.
while (status != WL_CONNECTED)
{
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
if (strlen(pass) > 0)
{
status = WiFi.begin(ssid, pass);
}
else
{
status = WiFi.begin(ssid);
}
// Wait for connection.
delay(5000);
}
The text was updated successfully, but these errors were encountered:
Got this snippet from Alex, makes code transparent with respect to password protected and non-password protected WiFi networks. We can update Arduino WiFi-examples to use this:
The text was updated successfully, but these errors were encountered: