From 742511c7e3f589b45d5ffb49f415f2b4bb22f9a3 Mon Sep 17 00:00:00 2001 From: peterhinch Date: Wed, 26 Apr 2023 12:12:07 +0100 Subject: [PATCH] README.md: Add comment re import order in hardware_setup.py. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a77036..3bfc6c6 100644 --- a/README.md +++ b/README.md @@ -336,7 +336,7 @@ spi = SPI(0, baudrate=30_000_000) gc.collect() # Precaution before instantiating framebuf # Instantiate display and assign to ssd. For args see display drivers doc. ssd = SSD(spi, pcs, pdc, prst, usd=True) - +# The following import must occur after ssd is instantiated. from gui.core.ugui import Display, quiet # quiet() # Define control buttons