From 3c8c5b2beba10bc97c9e6e2a7d087ff93a8b518d Mon Sep 17 00:00:00 2001 From: Peter Hinch Date: Tue, 10 May 2022 17:04:24 +0100 Subject: [PATCH] Improvements to docs. --- DISPLAYS.md | 10 ++++++++++ DRIVERS.md | 11 +++++++++++ 2 files changed, 21 insertions(+) diff --git a/DISPLAYS.md b/DISPLAYS.md index e6d9cf4..de5600e 100644 --- a/DISPLAYS.md +++ b/DISPLAYS.md @@ -64,6 +64,16 @@ hardware: these are easy to port to MicroPython. Only a minimal subset is needed to support these GUI's, with the result that the drivers can be very simple. See [this doc](./DRIVERS.md#7-writing-device-drivers) for details. +# Links + +#### [Device driver document.](./DRIVERS.md) + +#### [nano-gui](https://github.com/peterhinch/micropython-nano-gui) + +#### [micro-gui](https://github.com/peterhinch/micropython-micro-gui) + +#### [Writer and CWriter](https://github.com/peterhinch/micropython-font-to-py/blob/master/writer/WRITER.md) + [1d]: https://github.com/peterhinch/micropython-nano-gui/blob/master/DRIVERS.md#22-drivers-for-ssd1331 [2d]: https://github.com/peterhinch/micropython-nano-gui/blob/master/DRIVERS.md#21-drivers-for-ssd1351 [3d]: https://github.com/micropython/micropython/blob/master/drivers/display/ssd1306.py diff --git a/DRIVERS.md b/DRIVERS.md index 2362343..5c1bac2 100644 --- a/DRIVERS.md +++ b/DRIVERS.md @@ -61,6 +61,7 @@ access via the `Writer` and `CWriter` classes is documented      5.2.3 [EPD public bound variables](./DRIVERS.md#523-epd-public-bound-variables) 6. [EPD Asynchronous support](./DRIVERS.md#6-epd-asynchronous-support) 7. [Writing device drivers](./DRIVERS.md#7-writing-device-drivers) + 8. [Links](./DRIVERS.md#8-links) The [Micropower use](./DRIVERS.md#515-micropower-use) section is applicable to EPD's in general but makes specific reference to the 2.9" micropower demo. @@ -1180,4 +1181,14 @@ If this produces correct output the GUI's can be expected to work. Authors of device drivers are encouraged to raise an issue or PR so that the library can be extended. +# 8. Links + +#### [Device driver document.](./DRIVERS.md) + +#### [nano-gui](https://github.com/peterhinch/micropython-nano-gui) + +#### [micro-gui](https://github.com/peterhinch/micropython-micro-gui) + +#### [Writer and CWriter](https://github.com/peterhinch/micropython-font-to-py/blob/master/writer/WRITER.md) + ###### [Contents](./DRIVERS.md#contents)