From d0588d9baf4c9044352323163cc5b16bf9214911 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Wed, 16 Mar 2022 13:58:46 -0700 Subject: [PATCH] Fix offset for 1.9 display example --- examples/st7789_170x320_1.9_simpletest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/st7789_170x320_1.9_simpletest.py b/examples/st7789_170x320_1.9_simpletest.py index 48b016a..10d854a 100644 --- a/examples/st7789_170x320_1.9_simpletest.py +++ b/examples/st7789_170x320_1.9_simpletest.py @@ -24,7 +24,7 @@ display_bus = displayio.FourWire(spi, command=tft_dc, chip_select=tft_cs, reset=tft_rst) -display = ST7789(display_bus, width=320, height=170, colstart=34, rotation=90) +display = ST7789(display_bus, width=320, height=170, colstart=35, rotation=90) # Make the display context splash = displayio.Group()