B4R Question Wifi Network and password externally

Alberto Iglesias

Well-Known Member
Licensed User
Longtime User
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:

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
 

embedded

Active Member
Licensed User
Longtime User
I have also an app ESP Configurator based on Erel project...just upload the code in esp ..and connect your phone WiFi to the network made my esp.
With the help of app...you can change the desired parameter..please visit Share my creation section for that.
 
Upvote 0
Top