Skip to content

Commit a0dd880

Browse files
committed
Fix ram offset for ssd1680
1 parent ec379ba commit a0dd880

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)