From 33378e6de86d774166eea741eb203616824b0289 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Tue, 20 May 2025 12:43:23 -0700 Subject: [PATCH] Update Bonnet example to reflect latest hardware --- examples/ssd1680_2.13_mono_eink_bonnet.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/ssd1680_2.13_mono_eink_bonnet.py b/examples/ssd1680_2.13_mono_eink_bonnet.py index a21f57c..2557df6 100644 --- a/examples/ssd1680_2.13_mono_eink_bonnet.py +++ b/examples/ssd1680_2.13_mono_eink_bonnet.py @@ -35,7 +35,7 @@ display_bus = FourWire(spi, command=epd_dc, chip_select=epd_cs, reset=epd_reset, baudrate=1000000) time.sleep(1) -# For issues with display not updating top/bottom rows correctly set colstart to 8 +# For issues with display not updating top/bottom rows correctly try setting colstart to 8 or 0 display = adafruit_ssd1680.SSD1680( display_bus, width=250, @@ -43,6 +43,7 @@ busy_pin=epd_busy, highlight_color=0xFF0000, rotation=90, + colstart=-8, )