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
I have an app that tries to detect if the connection is successful after the password is saved. Basically,
ESP8266 starts the ondemand config portal
When user enters the password and hits the "save" button the URL changes to 192.168.4.1/wifisave
At that point my app understands that the password was entered
if the password is correct, the config portal closes
if the password is incorrect, the config portal restarts
is there way for the app to detect if 8266 was able to connect to the wifi before config portal closes? for example if the URL has changed to 192.168.4.1/wifisucess or wififailed, the app could detect it.
The text was updated successfully, but these errors were encountered:
If the portal closes successfully then ESP should have migrated to the new network and you are unlikely to get a response from 192.168.4.1 unless by accident this is the new IP too.
Your app would need to identify the new IP of the ESP. You might need to add a way to ping your app from the ESP after reconnection.
I have an app that tries to detect if the connection is successful after the password is saved. Basically,
ESP8266 starts the ondemand config portal
When user enters the password and hits the "save" button the URL changes to 192.168.4.1/wifisave
At that point my app understands that the password was entered
if the password is correct, the config portal closes
if the password is incorrect, the config portal restarts
is there way for the app to detect if 8266 was able to connect to the wifi before config portal closes? for example if the URL has changed to 192.168.4.1/wifisucess or wififailed, the app could detect it.
The text was updated successfully, but these errors were encountered: