uasyncio - How detect the end task in another task.

Discussion about programs, libraries and tools that work with MicroPython. Mostly these are provided by a third party.
Target audience: All users and developers of MicroPython.
Primesty
Posts: 49
Joined: Sun Jun 28, 2020 11:06 pm

Re: uasyncio - How detect the end task in another task.

Post by Primesty » Sat Nov 14, 2020 7:19 pm

After many hours of fine-tuning, I'm finally able to share my first 'big' Micropython project. A temp-reader, which uses two different temperature senors:

https://github.com/mraess/micropython_public

I'm sure there are things that can be improved and written more elegantly, but for now it works and runs reliably.

Platform: ESP32, Micropython 1.13
Sensors: BME280, MAX31855
Periphery: Neopixel, rotary encoder, 1602 LCD

Everything runs asynchronously via uasyncio. Many thanks to @pythoncoder who gracefully responded to many of my inquiries and informed many of the coding decisions.

Post Reply