From 97d0edd164c769fe106795dca48e5242af6df4ad Mon Sep 17 00:00:00 2001 From: Paul Cutler Date: Thu, 2 Nov 2023 14:10:01 -0500 Subject: [PATCH] Fixes #23 --- examples/ov5640_pico_st7789.py | 2 +- examples/ov5640_stopmotion_kaluga1_3.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ov5640_pico_st7789.py b/examples/ov5640_pico_st7789.py index 3e08559..80c8d49 100644 --- a/examples/ov5640_pico_st7789.py +++ b/examples/ov5640_pico_st7789.py @@ -82,7 +82,7 @@ bitmap, pixel_shader=ColorConverter(input_colorspace=Colorspace.RGB565_SWAPPED) ) g.append(tg) -display.show(g) +display.root_group = g t0 = time.monotonic_ns() display.auto_refresh = False diff --git a/examples/ov5640_stopmotion_kaluga1_3.py b/examples/ov5640_stopmotion_kaluga1_3.py index 1d9c95a..3c4b428 100644 --- a/examples/ov5640_stopmotion_kaluga1_3.py +++ b/examples/ov5640_stopmotion_kaluga1_3.py @@ -153,7 +153,7 @@ def next_filename(extension="jpg"): # Blank the whole display, we'll draw what we want with directio empty_group = displayio.Group() -display.show(empty_group) +display.root_group = empty_group display.auto_refresh = False display.refresh()