We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 514e97c + 2b7bd6e commit 37577bcCopy full SHA for 37577bc
examples/stmpe610_button_demo.py
@@ -61,7 +61,7 @@
61
62
# Create the displayio group and show it
63
splash = displayio.Group()
64
-display.show(splash)
+display.root_group = splash
65
66
# Defiine the button
67
button = Button(
examples/stmpe610_touch_calibrator.py
@@ -89,7 +89,7 @@
89
# Activate the display graphics unless REPL_ONLY=True.
90
if not REPL_ONLY:
91
display_group = displayio.Group()
92
- display.show(display_group)
+ display.root_group = display_group
93
94
# Instantiate touchscreen.
95
ts_cs = digitalio.DigitalInOut(board.D6)
0 commit comments