Skip to content

Commit 1d4cf22

Browse files
committed
Fix column offset for ssd1680 instead of ssd1675
1 parent e3791ca commit 1d4cf22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adafruit_ssd1680.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class SSD1680(displayio.EPaperDisplay):
6868

6969
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
7070
if "colstart" not in kwargs:
71-
kwargs["colstart"] = 1
71+
kwargs["colstart"] = 8
7272
stop_sequence = bytearray(_STOP_SEQUENCE)
7373
try:
7474
bus.reset()

examples/ssd1680_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
# For issues with display not updating top/bottom rows correctly set colstart to 8
3838
display = adafruit_ssd1680.SSD1680(
3939
display_bus,
40-
colstart=1,
40+
colstart=8,
4141
width=250,
4242
height=122,
4343
busy_pin=epd_busy,

0 commit comments

Comments
 (0)