Search found 3 matches

by kacpo1
Tue Mar 17, 2020 6:10 pm
Forum: ESP32 boards
Topic: ESP32 using OTA updates
Replies: 7
Views: 16358

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...
by kacpo1
Mon Mar 16, 2020 2:35 pm
Forum: ESP32 boards
Topic: Can't set accesspoint password
Replies: 3
Views: 2202

Can't set accesspoint password

Hi,

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)
But it always doesn't have any password.
by kacpo1
Sat Mar 14, 2020 11:17 am
Forum: ESP32 boards
Topic: Picoweb problem with reading request content
Replies: 1
Views: 1417

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...