Search found 3 matches
- Tue Mar 17, 2020 6:10 pm
- Forum: ESP32 boards
- Topic: ESP32 using OTA updates
- Replies: 6
- Views: 4658
ESP32 using OTA updates
Hi, I need to implement OTA updates in my project. I found something like this: https://medium.com/@ronald.dehuysser/micropython-ota-updates-and-github-a-match-made-in-heaven-45fde670d4eb But everytime I'm trying to download this library to my ESP I've got wierd error and I don't know why... Ready t...
- Mon Mar 16, 2020 2:35 pm
- Forum: ESP32 boards
- Topic: Can't set accesspoint password
- Replies: 3
- Views: 763
Can't set accesspoint password
Hi,
I'm trying to make accesspoint with password. I'm using this code:
But it always doesn't have any password.
I'm trying to make accesspoint with password. I'm using this code:
Code: Select all
import network
ssid = 'MicroPython-AP'
password = '123456789'
ap = network.WLAN(network.AP_IF)
ap.active(True)
ap.config(essid=ssid, password=password)
- Sat Mar 14, 2020 11:17 am
- Forum: ESP32 boards
- Topic: Picoweb problem with reading request content
- Replies: 1
- Views: 518
Picoweb problem with reading request content
Hi, I'm trying to get request content to process it. I've got html page with two inputs and submit button. My code looks like this: def index(req, resp): yield from req.read_form_data() print(req.form) But everytime that I press the button I've got error: File "picoweb/__init__.py", line 72, in read...