Add pico_epaper_42_part partial update driver.

pull/9/merge
peterhinch 2023-03-14 17:00:32 +00:00
rodzic b86fd2a1d7
commit 96e25dfb34
1 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -1239,6 +1239,17 @@ following constructor args:
* `busy=None` A `Pin` instance defined as `Pin.IN, Pin.PULL_UP`.
* `asyn=False` Set `True` for asynchronous applications.
An alternative driver supporting partial updates is `pico_epaper_42_part.py`.
Usage is as above, but the driver supports two methods:
* `set_partial()`
* `set_full()`
After issuing `set_partial()`, subsequent updates will be partial. Normal
updates are restored by issuing `set_full()`. These should not be issued while
an update is in progress.
Partial updates are fast and visually unobtrusive but they are prone to
ghosting.
###### [Contents](./DRIVERS.md#contents)
# 6. EPD Asynchronous support