All Questions
3 questions
0
votes
1
answer
42
views
Asyncio stop waiting for socket
I'm trying to write a code in micropython for ESP32.
ESP32 need to write in LCD Display by example every 10 seconds, and too response in one web server. But when go to web server code section, it stop,...
1
vote
0
answers
682
views
Access WebREPL remotely with TURN - MicroPython
I want to access my ESP32 console remotely and I think that the best way to do so is to create TCP tunnel from the ESP32 to a server and use this server as a really for the connections, so that when I ...
2
votes
0
answers
576
views
While True and sleep in Uasyncio in micropython
I'm writing a surveillance camera app with ESP32-cam and MicroPython.
tl;dr at the end
I'm using the Threaded code below:
import camera
import machine
from config import app_config
from webserver ...