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. 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