QUERY · ISSUE
aiohttp newer version
enhancementproposed-close
This is how I install the aiohttp library on ESP32 C3 super mini:
import mip
mip.install('aiohttp')
Unfortunately, this installs a very old version: 0.0.6.
Is there any way to get a newer version?
CANDIDATE · PULL REQUEST
esp32: Freeze aioespnow module into ESP32 firmware by default.
port-esp32
Uncomment the # require("aioespnow") line in ports/esp32/boards/manifest.py as proposed in #12580.
This PR can be merged after the lib/micropython-lib submodule is updated to a revision which includes micropython/aioespnow/aioespnow.py. This is expected to occur prior to the release of v1.21.0.
aioespnow extends the espnow module with support for asyncio methods: arecv() and asend() and is documented in the espnow documentation.
Fixes #12580