Anyone have implemented some way to get the wifi network name and password and then start the process to connect to wifi?
If I get this information from BLE ., is possible to save and then use to connect ?
Any better ideia?
something like this:
The problem is: Imagine you will implant this device on 100 different places and each one you will have different network/password, and the people that will install, don't know how to compile and push the code to arduino.
@Erel any best practice for this?
thanks in advance
If I get this information from BLE ., is possible to save and then use to connect ?
Any better ideia?
something like this:
B4X:
Private wifi As ESP8266WiFi
Private Sub AppStart
Log("AppStart")
If wifi.Connect2("MyWifiNetwork","MyPassword") Then <- This network name and password coming from outside
end if
end sub
The problem is: Imagine you will implant this device on 100 different places and each one you will have different network/password, and the people that will install, don't know how to compile and push the code to arduino.
@Erel any best practice for this?
thanks in advance