Skip to content

Commit

Permalink
Merge pull request #48 from makermelissa/master
Browse files Browse the repository at this point in the history
Fix ram offset for ssd1680
  • Loading branch information
ladyada committed Mar 12, 2021
2 parents 7dd411c + a0dd880 commit 3726a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_epd/ssd1680.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def power_up(self):
self.command(_SSD1680_SOURCE_VOLTAGE, bytearray([0x41, 0x00, 0x32]))

# Set ram X start/end postion
self.command(_SSD1680_SET_RAMXPOS, bytearray([0x00, 0x0F]))
self.command(_SSD1680_SET_RAMXPOS, bytearray([0x01, 0x10]))
# Set ram Y start/end postion
self.command(
_SSD1680_SET_RAMYPOS,
Expand Down

0 comments on commit 3726a3b

Please sign in to comment.