Search found 4 matches
- Thu Jan 21, 2021 2:56 pm
- Forum: ESP32 boards
- Topic: how install picoweb on ESP32?
- Replies: 17
- Views: 21571
Re: how install picoweb on ESP32?
Any idea why downloading picoweb init.py from github causes my wifi connection to turn off? I get a "wifi: STA_DISCONNECTED: reason 200 beacon timeout" message, followed by nonstop "wifi: STA_DISCONNECTED: reason 201 no AP found" messages. Is is that my flash has too much stuff on it already, preven...
- Tue Dec 29, 2020 8:48 pm
- Forum: ESP8266 boards
- Topic: wlan.connect timeout
- Replies: 9
- Views: 11549
Re: wlan.connect timeout
So I've been observing the connect() call for more than 2 minutes now and it's still running. This is what my code looks like: sta_if = network.WLAN(network.STA_IF) sta_if.active(True) ntwrk = 'some network ID from sta_if.scan() pwd = 'user_entered_password' def connect_to_web(ntwrk, pwd): print('Co...
- Tue Dec 29, 2020 8:23 pm
- Forum: ESP8266 boards
- Topic: wlan.connect timeout
- Replies: 9
- Views: 11549
Re: wlan.connect timeout
I'm working on a ESP32 board and am new to both ESP32 and micropython. Does anyone know if there's a straightforward way to cause WLAN.connect to timeout if user provides an incorrect password?
- Tue Dec 29, 2020 7:28 pm
- Forum: ESP32 boards
- Topic: WLAN.status() always reports STAT_CONNECTING but expect STAT_WRONG_PASSWORD
- Replies: 5
- Views: 8156
Re: WLAN.status() always reports STAT_CONNECTING but expect STAT_WRONG_PASSWORD
Has anyone by any chance figured a solution out to this WLAN.status() problem? I'm new to working with micropython and ESP32 boards and am having a hard time figuring out how to force stop a WLAN.connect() process if user enters an incorrect password. I've realized that a successful connection gives...