From 3786cbdfe6d3299d9b81c2079f4feb54c8646fb7 Mon Sep 17 00:00:00 2001 From: Hel Gibbons Date: Mon, 3 Jul 2023 13:18:18 +0100 Subject: [PATCH] Stellar: correct typo --- micropython/examples/stellar_unicorn/thermometer_pico.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/examples/stellar_unicorn/thermometer_pico.py b/micropython/examples/stellar_unicorn/thermometer_pico.py index 21524af6..b1b8d3e7 100644 --- a/micropython/examples/stellar_unicorn/thermometer_pico.py +++ b/micropython/examples/stellar_unicorn/thermometer_pico.py @@ -95,7 +95,7 @@ while True: # or uncomment these lines if you'd prefer it in Freedom Units # graphics.set_pen(WHITE) - # fahrenheit = (temperature_average * 9 / 5) + 32 + # fahrenheit = (temperature * 9 / 5) + 32 # graphics.text(f"{fahrenheit:.0f}°", 2, 5, scale=1) # time to update the display