From 9334da5d9f6a145cb7788c9567d934645a608757 Mon Sep 17 00:00:00 2001 From: jposada202020 Date: Thu, 23 Feb 2023 19:59:24 -0500 Subject: [PATCH] updating colstart kwarg --- examples/ssd1675_2.13_monochrome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ssd1675_2.13_monochrome.py b/examples/ssd1675_2.13_monochrome.py index 6cb2882..e5507a7 100644 --- a/examples/ssd1675_2.13_monochrome.py +++ b/examples/ssd1675_2.13_monochrome.py @@ -28,7 +28,7 @@ time.sleep(1) display = adafruit_ssd1675.SSD1675( - display_bus, width=250, height=122, rotation=270, busy_pin=epd_busy + display_bus, colstart=8, width=250, height=122, rotation=270, busy_pin=epd_busy ) g = displayio.Group()