From a0b2ae259248deafd81a5fc342d63e57c8f6716f Mon Sep 17 00:00:00 2001 From: James Carr Date: Mon, 12 Jul 2021 20:44:42 +0100 Subject: [PATCH] Remove max_size usage from displayio.Group --- AHT20_OLED/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AHT20_OLED/code.py b/AHT20_OLED/code.py index 45e3de920..d05352641 100755 --- a/AHT20_OLED/code.py +++ b/AHT20_OLED/code.py @@ -25,7 +25,7 @@ display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=128, height=32) # Make the display context -splash = displayio.Group(max_size=8) +splash = displayio.Group() display.show(splash) text = "hello world"