PR7682 improvements: drivers, writer.py, docs.

pull/24/head
Peter Hinch 2021-08-29 12:02:42 +01:00
rodzic dbc4f4689b
commit dcc3c71a6f
2 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -113,7 +113,7 @@ my GUI's employ the American spelling of `color`.
## 1.1 Change log
26 Aug 2021 Support [PR7682](https://github.com/micropython/micropython/pull/7682)
for fast text rendering.
for fast text rendering.
25 Apr 2021 Support TTGO T-Display.
26 Mar 2021 Add ST7789. Alter uasyncio support on ili9341.
14 Mar 2021 Tested on Pi Pico.
@ -211,7 +211,9 @@ code. This stuff is easier than you might think.
As of Aug 2021 color displays can benefit from a substantial performance boost
in rendering text. To take advantage of this, firmware should be dated after
26 Aug 21. The display driver and GUI core files should be updated. Ensure that
the new file `drivers/boolpalette.py` exists on the target hardware.
the new file `drivers/boolpalette.py` exists on the target hardware. Usge of
this mode is automatic but can be checked by running the `aclock.py` demo which
reports the status at the REPL.
###### [Contents](./README.md#contents)

Wyświetl plik

@ -31,7 +31,7 @@ def aclock():
'Aug', 'Sept', 'Oct', 'Nov', 'Dec')
# Instantiate CWriter
CWriter.set_textpos(ssd, 0, 0) # In case previous tests have altered it
wri = CWriter(ssd, arial10, GREEN, BLACK, verbose=False)
wri = CWriter(ssd, arial10, GREEN, BLACK) # Report on fast mode. Or use verbose=False
wri.set_clip(True, True, False)
# Instantiate displayable objects