CPython supports asynchronous programming via the asyncio
library.
MicroPython provides uasyncio
which is a subset of this, optimised for small
code size and high performance on bare metal targets. This repository provides
documentation, tutorial material and code to aid in its effective use.
Damien has completely rewritten uasyncio
which has been released as V3.0. See
PR5332.
There is currently a choice to be made over whether to run V2 or V3. To run V2,
ensure your firmware build is official MicroPython V1.12 and follow the
uasyncio
installation instructions in the V2 tutorial. For
V3, install the latest daily build which includes uasyncio
.
I strongly recommend V3 unless you need the fast_io
variant of V2. When V3
acquires this ability (it is planned) and appears in a release build I expect
to obsolete all V2 material in this repo.
Resources for V3 and an updated tutorial may be found in the v3 directory.
The remainder of this document is for users of V2 and its fast_io
variant.
This repo also contains an optional fast_io
variant of uasyncio
V2. This
variant offers high I/O performance and also includes workrounds for many of
the bugs in V2. (Bugs properly fixed in V3.)
In general I recommend V3, especially for new projects. It is better in every
respect bar one: the fast_io
variant of V2 currently offers superior I/O
performance, relative both to V2 and V3.
The main reason for running official V2 is that many existing libraries have
not yet been ported to V3. Some will run without change, but those using more
advanced features of uasyncio
may not.
- A tutorial An introductory tutorial on asynchronous
programming and the use of the
uasyncio
library. - Asynchronous device drivers. A module providing drivers for devices such as switches and pushbuttons.
- Synchronisation primitives. Provides commonly used synchronisation primitives plus an API for task cancellation and monitoring.
- A driver for an IR remote control This is intended as an example of an asynchronous device driver. It decodes signals received from infra red remote controls using the popular NEC protocol.
- A driver for the HTU21D temperature and humidity sensor. This is intended to be portable across platforms and is another example of an asynchronous device driver.
- A driver for character LCD displays. A simple asynchronous interface to displays based on the Hitachi HD44780 chip.
- A driver for GPS modules Runs a background task to read and decode NMEA sentences, providing constantly updated position, course, altitude and time/date information.
- Communication using I2C slave mode. Enables a Pyboard to to communicate with another MicroPython device using stream I/O. The Pyboard achieves bidirectional communication with targets such as an ESP8266.
- Communication between devices Enables MicroPython boards to communicate without using a UART. This is hardware agnostic but slower than the I2C version.
This comprises two parts.
- The fast_io version of
uasyncio
is a "drop in" replacement for the official version 2 providing bug fixes, additional functionality and, in certain respects, higher performance. - An optional extension module enabling the fast_io version to run with very low power draw. This is Pyboard-only including Pyboard D.
Official uasyncio
suffers from high levels of latency when scheduling I/O in
typical applications. It also has an issue which can cause bidirectional
devices such as UART's to block. The fast_io
version fixes the bug. It also
provides a facility for reducing I/O latency which can substantially improve
the performance of stream I/O drivers. It provides other features aimed at
providing greater control over scheduling behaviour.
To take advantage of the reduced latency device drivers should be written to
employ stream I/O. To operate at low latency they are simply run under the
fast_io
version. The tutorial
has details of how to write streaming drivers.
The current fast_io
version 0.24 fixes an issue with task cancellation and
timeouts. In uasyncio
version 2.0, where a coroutine is waiting on a
sleep()
or on I/O, a timeout or cancellation is deferred until the coroutine
is next scheduled. This introduces uncertainty into when the coroutine is
stopped.
This is documented here. In essence a Python file is
placed on the device which configures the fast_io
version of uasyncio
to
reduce power consumption at times when it is not busy. This provides a means of
using uasyncio
in battery powered projects. This is decidedly experimental:
hopefully uasyncio
V3 will introduce power saving in a less hacky manner.
Under the hood A guide to help understand the V2
uasyncio
code. For scheduler geeks and those wishing to modify uasyncio
.
All solutions listed below work with stock uasyncio
V2 or fast_io
.
The CPython asyncio
library supports these synchronisation primitives:
Lock
Event
gather
Semaphore
andBoundedSemaphore
.Condition
.Queue
. This was implemented by Paul Sokolvsky inuasyncio.queues
.
See CPython docs.
The file asyn.py
contains implementations of these, also
Barrier
An additional synchronisation primitive.- Cancellation decorators and classes: these are workrounds for the bug where in V2 cancellation does not occur promptly.
- Support for
gather
.
The Event
class in asyn.py
provides a nonstandard option to supply a data
value to the .set
method and to retrieve this with .value
. It is also an
awaitable class.
These are documented here
The file aswitch.py
provides support for:
Delay_ms
A software retriggerable monostable or watchdog.Switch
Debounced switch and pushbutton classes with callbacks.Pushbutton
It is documented here
These notes are intended for users familiar with asyncio
under CPython.
The MicroPython language is based on CPython 3.4. The uasyncio
library
supports a subset of the CPython 3.4 asyncio
library with some V3.5
extensions. In addition there are non-standard extensions to optimise services
such as millisecond level timing and task cancellation. Its design focus is on
high performance and scheduling is performed without RAM allocation.
The uasyncio
library supports the following Python 3.5 features:
async def
andawait
syntax.- Awaitable classes (using
__iter__
rather than__await__
). - Asynchronous context managers.
- Asynchronous iterators.
- Event loop methods
call_soon
andcall_later
. sleep(seconds)
.
It supports millisecond level timing with the following:
- Event loop method
call_later_ms
- uasyncio
sleep_ms(time)
uasyncio
V2 supports coroutine timeouts and cancellation.
wait_for(coro, t_secs)
runscoro
with a timeout.cancel(coro)
tagscoro
for cancellation when it is next scheduled.
Classes Task
and Future
are not supported.
Asynchronous I/O (StreamReader
and StreamWriter
classes) support devices
with streaming drivers, such as UARTs and sockets. It is now possible to write
streaming device drivers in Python.
For timing asyncio uses floating point values of seconds. The uasyncio.sleep
method accepts floats (including sub-second values) or integers. Note that in
MicroPython the use of floats implies RAM allocation which incurs a performance
penalty. The design of uasyncio
enables allocation-free scheduling. In
applications where performance is an issue, integers should be used and the
millisecond level functions (with integer arguments) employed where necessary.
The loop.time
method returns an integer number of milliseconds whereas
CPython returns a floating point number of seconds. call_at
follows the
same convention.