Skip to content

Commit 4db0887

Browse files
authored
Update README with display column start info
Added comment regarding display column start adjustment. This came up once again in the Adafruit forums. While one example on the simple test page has this note, the other two do not and the main page also fails to mention it. So added the same code on examples/ssd1680_simpletest.py to the example code on the main page. Anyone reviewing this feel free to make any corrections or additional changes you feel will make this issue (ssd1680 vs ssd1680z drive chip) issue more readily apparent. No need to run it past me. Thank you.
1 parent c22e6d0 commit 4db0887

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,15 @@ Usage Example
9292
)
9393
time.sleep(1)
9494
95+
# For issues with display not updating top/bottom rows correctly set colstart to 8, 0, or -8
9596
display = adafruit_ssd1680.SSD1680(
9697
display_bus,
9798
width=250,
9899
height=122,
99100
busy_pin=epd_busy,
100101
highlight_color=0xFF0000,
101102
rotation=270,
103+
colstart=-8, # Comment out for older displays
102104
)
103105
104106
g = displayio.Group()

0 commit comments

Comments
 (0)