Skip to content

Commit

Permalink
Merge pull request #80 from makermelissa/alignment-fix
Browse files Browse the repository at this point in the history
Fix SSD1675 driver
  • Loading branch information
makermelissa committed Jul 7, 2023
2 parents f0ef2f4 + 3a67497 commit 73ae823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_epd/ssd1675.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 73ae823

Please sign in to comment.