From 0734de30ea76e5b19e75aa34be6a95824ac89fe8 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 27 Jul 2022 13:53:06 +0100 Subject: [PATCH] Inky Frame: Fix random joke for #462. --- micropython/examples/inky_frame/inky_frame_random_joke.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/examples/inky_frame/inky_frame_random_joke.py b/micropython/examples/inky_frame/inky_frame_random_joke.py index cb1b474f..4eb7cbc5 100644 --- a/micropython/examples/inky_frame/inky_frame_random_joke.py +++ b/micropython/examples/inky_frame/inky_frame_random_joke.py @@ -24,7 +24,7 @@ uasyncio.get_event_loop().run_until_complete(network_manager.client(WIFI_CONFIG. graphics = PicoGraphics(DISPLAY) WIDTH, HEIGHT = graphics.get_bounds() -FILENAME = "random-joke.jpg" +FILENAME = "/sd/random-joke.jpg" JOKE_IDS = "https://pimoroni.github.io/feed2image/jokeapi-ids.txt" JOKE_IMG = "https://pimoroni.github.io/feed2image/jokeapi-{}-600x448.jpg"