print both credentials

pico-mitt
alanbjohnston 3 years ago committed by GitHub
parent 84f2ddc520
commit a93001dd88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4554,9 +4554,13 @@ void prompt_for_input() {
if ( strlen(serial_string) > 0) {
strcpy(serial_string, pass);
Serial.println("Connecting to Wifi");
//const char ssid2[] = "CubeSatSim";
//const char pass2[] = "amsatao7";
const char ssid2[] = "CubeSatSim";
const char pass2[] = "amsatao7";
// WiFi.begin(ssid2, pass2);
Serial.printf("%s%s\n",ssid, pass);
Serial.printf("%s%s\n",ssid2, pass2);
WiFi.begin(ssid, pass);
unsigned int elapsed_timer = (unsigned int) millis();

Loading…
Cancel
Save

Powered by TurnKey Linux.