Update adafruit_ssd1680.py
Co-authored-by: Melissa LeBlanc-Williams <melissa@adafruit.com>
This commit is contained in:
parent
2075bbb03a
commit
f85db07626
1 changed files with 3 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue