Update adafruit_ssd1680.py

Co-authored-by: Melissa LeBlanc-Williams <melissa@adafruit.com>
This commit is contained in:
David Edwards 2023-02-15 22:07:25 +00:00 committed by GitHub
parent 2075bbb03a
commit f85db07626
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,7 +65,9 @@ class SSD1680(displayio.EPaperDisplay):
Display rotation
"""
def __init__(self, bus: displayio.Fourwire, column_correction=1, **kwargs) -> None:
def __init__(self, bus: displayio.Fourwire, **kwargs) -> None:
if "colstart" not in kwargs:
kwargs["colstart"] = 1
stop_sequence = bytearray(_STOP_SEQUENCE)
try:
bus.reset()