Cesar_Morisco
Active Member
hey guys
Could someone tell me where I am wrong to put the password on the AP Esp8266 Thanks
Could someone tell me where I am wrong to put the password on the AP Esp8266 Thanks
Password Ap:
Sub Process_Globals
Private Astream As AsyncStreams
Private server As WiFiServerSocket
Private SSID As String = "ESP8266"
Private PASS As String = "12345678"
End Sub
Public Sub Start
Log("StartAP: ", Main.WiFi.StartAccessPoint(SSID,PASS)) 'ERROR
Log("My AP ip: ", Main.WiFi.AccessPointIp)
Log("My local ip: ", Main.WiFi.LocalIp)
server.Initialize(51042, "server_NewConnection")
server.Listen
End Sub