diff --git a/examples/ssd1680_2.13_featherwing.py b/examples/ssd1680_2.13_featherwing.py index c194735..c0b0dc9 100644 --- a/examples/ssd1680_2.13_featherwing.py +++ b/examples/ssd1680_2.13_featherwing.py @@ -33,7 +33,6 @@ time.sleep(1) display = adafruit_ssd1680.SSD1680( display_bus, - colstart=8, width=250, height=122, highlight_color=0xFF0000, diff --git a/examples/ssd1680_2.13_mono_eink_bonnet.py b/examples/ssd1680_2.13_mono_eink_bonnet.py index 0b2203e..be9cd41 100644 --- a/examples/ssd1680_2.13_mono_eink_bonnet.py +++ b/examples/ssd1680_2.13_mono_eink_bonnet.py @@ -37,7 +37,6 @@ time.sleep(1) # For issues with display not updating top/bottom rows correctly set colstart to 8 display = adafruit_ssd1680.SSD1680( display_bus, - colstart=8, width=250, height=122, busy_pin=epd_busy, diff --git a/examples/ssd1680_2.13_tricolor_breakout.py b/examples/ssd1680_2.13_tricolor_breakout.py index 7f6992d..089fdeb 100644 --- a/examples/ssd1680_2.13_tricolor_breakout.py +++ b/examples/ssd1680_2.13_tricolor_breakout.py @@ -32,7 +32,6 @@ time.sleep(1) display = adafruit_ssd1680.SSD1680( display_bus, - colstart=8, width=250, height=122, highlight_color=0xFF0000, diff --git a/examples/ssd1680_four_corners.py b/examples/ssd1680_four_corners.py index 28f9a76..007a3c7 100644 --- a/examples/ssd1680_four_corners.py +++ b/examples/ssd1680_four_corners.py @@ -32,7 +32,6 @@ display_bus = displayio.FourWire( ) display = adafruit_ssd1680.SSD1680( display_bus, - colstart=8, width=250, height=122, busy_pin=epd_busy, diff --git a/examples/ssd1680_simpletest.py b/examples/ssd1680_simpletest.py index a59d230..37b2dd1 100644 --- a/examples/ssd1680_simpletest.py +++ b/examples/ssd1680_simpletest.py @@ -37,7 +37,6 @@ time.sleep(1) # For issues with display not updating top/bottom rows correctly set colstart to 8 display = adafruit_ssd1680.SSD1680( display_bus, - colstart=8, width=250, height=122, busy_pin=epd_busy,