Hi Guys...
I'm trying my WeMos Clone and I'm always getting a time out error...
Here's my board:
I'm trying a very simple example derivate from one of EREL's examples, that in this case (should) just log the wireless networks in range SSID's
Please help!!
I'm trying my WeMos Clone and I'm always getting a time out error...
Here's my board:
I'm trying a very simple example derivate from one of EREL's examples, that in this case (should) just log the wireless networks in range SSID's
B4X:
Sub Process_Globals
Public Serial1 As Serial
Private wifi As ESP8266WiFi
End Sub
Private Sub AppStart
Serial1.Initialize(115200)
Log("AppStart")
ScanNetworks
End Sub
Private Sub ScanNetworks 'ignore
Dim numberOfNetworks As Byte = wifi.Scan
Log("Found: ", numberOfNetworks, " networks.")
For i = 0 To numberOfNetworks - 1
Log(wifi.ScannedSSID(i))
Next
End Sub
Please help!!
Last edited: