Merge mcauser doc updates

pull/28/head
Peter Hinch 2019-09-06 09:14:35 +01:00
commit ae77904df9
2 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

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

Wyświetl plik

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