UC8151: Do *not* power off display.

Leave the IC powered so that it drains residual voltage into its circuits, rather than the display itself.

Or so the theory holds.
pull/1020/head
Phil Howard 2024-09-18 12:28:55 +01:00
rodzic 02aa32bc36
commit 2b25e791a7
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -389,7 +389,7 @@ namespace pimoroni {
} }
void UC8151::power_off() { void UC8151::power_off() {
command(POF); //command(POF);
} }
void UC8151::read(uint8_t reg, size_t len, uint8_t *data) { void UC8151::read(uint8_t reg, size_t len, uint8_t *data) {
@ -534,7 +534,7 @@ namespace pimoroni {
void UC8151::off() { void UC8151::off() {
busy_wait(); busy_wait();
command(POF); // turn off //command(POF); // turn off
} }
} }