From 3a67497cbca57c8d8f1d7a25fde2382543a81e10 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Thu, 6 Jul 2023 16:54:55 -0700 Subject: [PATCH] Fix SSD1675 driver --- adafruit_epd/ssd1675.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_epd/ssd1675.py b/adafruit_epd/ssd1675.py index 90ee1ff..bd7ef5d 100644 --- a/adafruit_epd/ssd1675.py +++ b/adafruit_epd/ssd1675.py @@ -173,7 +173,7 @@ def power_down(self) -> None: def update(self) -> None: """Update the display from internal memory""" - self.command(_SSD1675_DISP_CTRL2, bytearray([0xC7])) + self.command(_SSD1675_DISP_CTRL2, bytearray([0xF4])) self.command(_SSD1675_MASTER_ACTIVATE) self.busy_wait() if not self._busy: