Merge pull request #16 from mcauser/hx1230

Add HX1230 to the list of supported devices
pull/28/head
Peter Hinch 2019-08-19 18:26:53 +01:00 zatwierdzone przez GitHub
commit 311e78bc56
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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 [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 [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 [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 The latter example illustrates a very simple driver which provides full access
to `writer.py` and `nanogui.py` libraries. 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) [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 STM32 (Pyboards etc) or [this one](https://github.com/peterhinch/micropython-nano-gui/blob/master/drivers/ssd1351/ssd1351_generic.py)
for other targets. 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 Basic support is for scrolling text display using multiple fonts. The
[nanogui](https://github.com/peterhinch/micropython-nano-gui.git) module has [nanogui](https://github.com/peterhinch/micropython-nano-gui.git) module has