Search found 3 matches

by MrExplore
Sun Mar 14, 2021 3:02 pm
Forum: ESP32 boards
Topic: Picoweb on ESP32 access point
Replies: 6
Views: 3641

Re: Picoweb on ESP32 access point

Thanks for the reply, I tried both your suggestions and it works :) However, I was curious about which of the two did the trick. Turns out the original code now works without the modifications. I can now stream the cam to my phone when the esp cam is in accesspoint mode. My best guess why it didn't ...
by MrExplore
Sun Mar 07, 2021 7:50 pm
Forum: Programs, Libraries and Tools
Topic: no password required with ESP32 as WLAN AP
Replies: 2
Views: 2203

Re: no password required with ESP32 as WLAN AP

I actually had the exact same problem this weekend and came to the same conclusion. This does NOT work: AP = network.WLAN(network.AP_IF) AP.active(True) AP.config(essid='esp32', password='12345678') This does: AP = network.WLAN(network.AP_IF) AP.active(True) AP.config(essid='esp32', authmode=3, pass...
by MrExplore
Sun Mar 07, 2021 5:53 pm
Forum: ESP32 boards
Topic: Picoweb on ESP32 access point
Replies: 6
Views: 3641

Picoweb on ESP32 access point

Hi All, I'm a micropython newbie and I just started playing around on an ESP32 Cam (AIThinker) The (very basic) code below works. The ESP connects to my wifi, I can access it and get the 'hello world' response from picoweb. However, I would like to set it up as an access point, see the code commente...