From 6a466c17100f9424d632c32c0f90edf2cbc61734 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Mon, 2 Jun 2025 15:36:19 -0500 Subject: [PATCH] displayio api update --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index c2542a8..88d1501 100644 --- a/README.rst +++ b/README.rst @@ -61,6 +61,7 @@ Usage Example import board import displayio + import fourwire import adafruit_ssd1327 import busio import time @@ -73,7 +74,7 @@ Usage Example tft_dc = board.D9 tft_reset = board.D5 - display_bus = displayio.FourWire(spi, command=tft_dc, chip_select=tft_cs, reset=tft_reset, baudrate=1000000) + display_bus = fourwire.FourWire(spi, command=tft_dc, chip_select=tft_cs, reset=tft_reset, baudrate=1000000) time.sleep(1) display = adafruit_ssd1327.SSD1327(display_bus, width=128, height=128)