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()