Skip to content

Commit 3726a3b

Browse files
authored
Merge pull request #48 from makermelissa/master
Fix ram offset for ssd1680
2 parents 7dd411c + a0dd880 commit 3726a3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_epd/ssd1680.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def power_up(self):
136136
self.command(_SSD1680_SOURCE_VOLTAGE, bytearray([0x41, 0x00, 0x32]))
137137

138138
# Set ram X start/end postion
139-
self.command(_SSD1680_SET_RAMXPOS, bytearray([0x00, 0x0F]))
139+
self.command(_SSD1680_SET_RAMXPOS, bytearray([0x01, 0x10]))
140140
# Set ram Y start/end postion
141141
self.command(
142142
_SSD1680_SET_RAMYPOS,

0 commit comments

Comments
 (0)