Search found 55 matches

by ebolisa
Tue Apr 07, 2020 12:20 pm
Forum: ESP32 boards
Topic: Issue with wifimgr.py
Replies: 10
Views: 6714

Issue with wifimgr.py

Hi, I cannot get to connect using the connection manager wifimgr.py. I noticed that the '@' in my router's password is not recognized. How do I fix it? TIA Request is: b'POST /configure HTTP/1.1\r\nHost: 192.168.4.1\r\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Fir...
by ebolisa
Fri Mar 01, 2019 12:01 pm
Forum: General Discussion and Questions
Topic: Adding a field to wifimgr lib
Replies: 1
Views: 1764

Adding a field to wifimgr lib

Hi, I'm trying to add and extra field to the html code in the wifimgr lib found at https://github.com/tayfunulu/WiFiManager but I'm stuck at def handle_configure(client, request): I just cannot parse the 3 fields. def handle_configure(client, request): match = ure.search("ssid=([^&]*)&password=(.*)&...
by ebolisa
Fri Feb 22, 2019 8:42 am
Forum: General Discussion and Questions
Topic: ESP32 w/oled - mem issue?
Replies: 4
Views: 3286

Re: ESP32 w/oled - mem issue?

Thanks. Adding gc.collect() in the loop solves the problem but not sure it's the way to go.
by ebolisa
Thu Feb 21, 2019 12:00 pm
Forum: General Discussion and Questions
Topic: ESP32 w/oled - mem issue?
Replies: 4
Views: 3286

ESP32 w/oled - mem issue?

Hi, With the below code I noticed that the board's memory space is decreasing while looping. Shouldn't the memory space remain the same? TIA import machine, ssd1306, gc from machine import I2C from time import sleep import esp esp.osdebug(None) i2c = I2C(scl=machine.Pin(4), sda=machine.Pin(5)) oled ...