diff --git a/micropython/examples/plasma_stick/weather.py b/micropython/examples/plasma_stick/weather.py index bb0374d1c..eaa1872ed 100644 --- a/micropython/examples/plasma_stick/weather.py +++ b/micropython/examples/plasma_stick/weather.py @@ -3,6 +3,7 @@ import uasyncio import urequests import time +import gc import plasma from plasma import plasma_stick # Random functions! randrange is for picking integers from a range, and uniform is for floats. @@ -258,3 +259,5 @@ def snow(): move_to_target() # nudge our current colours closer to the target colours display_current() # display current colours to strip + gc.collect() +