From bfcbb1350b9e1293f2327f540e981205b1c279ac Mon Sep 17 00:00:00 2001 From: Mike Causer Date: Tue, 20 Aug 2019 00:43:43 +1000 Subject: [PATCH 1/2] Update WRITER.md to include ref to HX1230 driver. --- writer/WRITER.md | 1 + 1 file changed, 1 insertion(+) diff --git a/writer/WRITER.md b/writer/WRITER.md index 1f8c98a..0a84eca 100644 --- a/writer/WRITER.md +++ b/writer/WRITER.md @@ -12,6 +12,7 @@ display driver is subclassed from the `framebuf` class. Examples are: [this driver](https://github.com/peterhinch/micropython-nano-gui/blob/master/drivers/ssd1351/ssd1351.py) for STM32 (Pyboards etc) or [this one](https://github.com/peterhinch/micropython-nano-gui/blob/master/drivers/ssd1351/ssd1351_generic.py) for other targets. + * The [HX1230 96x68 LCD](https://github.com/mcauser/micropython-hx1230.git). Basic support is for scrolling text display using multiple fonts. The [nanogui](https://github.com/peterhinch/micropython-nano-gui.git) module has From 0ea6d712a1f9a8c2c35a7c6b5bf10da8614b88ea Mon Sep 17 00:00:00 2001 From: Mike Causer Date: Tue, 20 Aug 2019 00:44:03 +1000 Subject: [PATCH 2/2] Update DRIVERS.md to include ref to HX1230 driver. --- writer/DRIVERS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/writer/DRIVERS.md b/writer/DRIVERS.md index 806a8b4..72c5672 100644 --- a/writer/DRIVERS.md +++ b/writer/DRIVERS.md @@ -62,6 +62,7 @@ tested with `writer.py` and `nanogui.py`. * The [SSD1306 OLED driver](https://github.com/micropython/micropython/blob/master/drivers/display/ssd1306.py) * The [Nokia 5110](https://github.com/mcauser/micropython-pcd8544/blob/master/pcd8544_fb.py) * The [SSD1331 colour OLED](https://github.com/peterhinch/micropython-nano-gui/blob/master/drivers/ssd1331/ssd1331.py) + * The [HX1230 96x68 LCD](https://github.com/mcauser/micropython-hx1230/blob/master/hx1230_fb.py) The latter example illustrates a very simple driver which provides full access to `writer.py` and `nanogui.py` libraries.