uPyEcho
uPyEcho copied to clipboard
Emulated Belkin WeMo device that works with Amazon Echo (Alexa) using MicroPython on an ESP32
https://github.com/lemariva/uPyEcho/blob/e09c28db2a4594b68d0c2ee1d1784bbf84137733/main.py#L298-L302 self.client_sockets dictionary of sockets keeps growing unchecked. You need to pop each client socket when no data is received: ```py self.client_sockets.pop(fileno) ``` Also, in the poller.remove() function you need...
I was porting uPyEcho to latest MicroPython (June 2020-- 1.12_2 ) to run on the TinPICO. As part of that, I had to change all the references to `clock.gmtime()` to...