diff --git a/ESP32-SOCKETIO.ino b/ESP32-SOCKETIO.ino index bf9c45f..a7ddf26 100644 --- a/ESP32-SOCKETIO.ino +++ b/ESP32-SOCKETIO.ino @@ -189,8 +189,6 @@ void setup() { macCredentials = preferences.getString("mac", ""); preferences.end(); - Serial.println("There are stored wifi and mac addresses (not shown for privacy)"); - setPairedStatus(); if (wifiCredentials == "" || getNumberOfMacAddresses() < 2) { diff --git a/data/script.js b/data/script.js index f17f946..35dbf27 100644 --- a/data/script.js +++ b/data/script.js @@ -38,7 +38,7 @@ function configureDisplay(local_paired_status) { case 'remoteSetup': console.log("remote"); //Show local wifi form, local and remote IDs - $('#remoteWifiForm').hide(); + $('#remoteWifiForm').show(); $('#remoteMacForm').show(); break; case 'localSetup': @@ -50,7 +50,7 @@ function configureDisplay(local_paired_status) { case 'pairedSetup': //just show local wifi details console.log("paired"); - $('#remoteWifiForm').hide(); + $('#remoteWifiForm').show(); $('#remoteMacForm').hide(); break; }