From ad9459767df17c6c9df7649cfeec2ace64dc4dd7 Mon Sep 17 00:00:00 2001 From: Peter Hinch Date: Fri, 5 Nov 2021 17:35:11 +0000 Subject: [PATCH] README: Add reference to monitor. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 577c469..3d3b4ac 100644 --- a/README.md +++ b/README.md @@ -308,10 +308,13 @@ Unlike the code samples these are fully documented and supported. ## 5.1 uasyncio -[Tutorial](https://github.com/peterhinch/micropython-async/blob/master/v3/docs/TUTORIAL.md) +[Tutorial](https://github.com/peterhinch/micropython-async/blob/master/v3/docs/TUTORIAL.md) +Main focus: using uasyncio to drive and communicate with hardware devices. [Drivers](https://github.com/peterhinch/micropython-async/blob/master/v3/docs/DRIVERS.md) Asynchronous device drivers for switches, pushbuttons and ADC's. Also has information on interfacing interrupts to uasyncio. +[Asynchronous monitor](https://github.com/peterhinch/micropython-monitor) Use a +raspberry Pico and a logic analyser or scope to monitor asynchronous code. [Schedule](https://github.com/peterhinch/micropython-async/blob/master/v3/docs/SCHEDULE.md) Schedule events at specified times and dates. [HTU21D](https://github.com/peterhinch/micropython-async/blob/master/v3/docs/HTU21D.md)