Ned Konz

Results 23 comments of Ned Konz

Very useful! However, when trying this on my app, I got this exception (I have fixed some line numbers in the traceback): ``` 7.468 [app_main] [ERROR] Traceback (most recent call...

Actually, your latest does look like it works with the other `asyncio` methods since it doesn't re-define `Task`. I just tried it with my code and it's working.

build failure is due to an unrelated `manifest.py` issue.

OSError 104 is `ECONNRESET`. Which can be caused by one end or the other closing a socket too soon. But one should usually enclose network functions in `try`/`except` blocks anyway:...

OK @brainelectronics I think I addressed everything you mentioned. How does it look?

I just had to figure this out myself. Assuming you've checked out Micropython and pimoroni-pico repositories, you can do this: ```shell MPY= # wherever you have the micropython repo PMP=...

@Laura-VFA you would have to add support for the second I2S channel that's used by the other codec chip that is connected to the other two microphones

I'm working on this right now.

I have it working on an ESP32 without SPIRAM (after frozen compilation); it should also work from the filesystem. Try [this branch](https://github.com/Product-Creation-Studio/Micropython-ESP-WiFi-Manager/tree/ned/add-captive-portal-dns-server).