Skip to content

Commit 73ae823

Browse files
authored
Merge pull request #80 from makermelissa/alignment-fix
Fix SSD1675 driver
2 parents f0ef2f4 + 3a67497 commit 73ae823

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_epd/ssd1675.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def power_down(self) -> None:
173173

174174
def update(self) -> None:
175175
"""Update the display from internal memory"""
176-
self.command(_SSD1675_DISP_CTRL2, bytearray([0xC7]))
176+
self.command(_SSD1675_DISP_CTRL2, bytearray([0xF4]))
177177
self.command(_SSD1675_MASTER_ACTIVATE)
178178
self.busy_wait()
179179
if not self._busy:

0 commit comments

Comments
 (0)