added wifi connect dots ...

pico-mitt
alanbjohnston 3 years ago committed by GitHub
parent 1efafc13c3
commit 49f7722fc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4555,6 +4555,12 @@ void prompt_for_input() {
strcpy(serial_string, pass);
Serial.println("Connecting to Wifi");
WiFi.begin(ssid, pass);
while (WiFi.status() != WL_CONNECTED) {
Serial.print(".");
delay(500);
}
} else
Serial.println("No password entered.");
} else

Loading…
Cancel
Save

Powered by TurnKey Linux.