Skip to content

Commit c5c8a7c

Browse files
committed
Update everywhere.
1 parent 902bae2 commit c5c8a7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/clue_temperature_humidity_monitor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
humidity = clue.humidity
2323
clue_display[3].text = "Temp: {:.1f} C".format(temperature)
2424
clue_display[5].text = "Humi: {:.1f} %".format(humidity)
25-
if temperature < min_temp:
25+
if temperature < min_temperature:
2626
clue_display[3].color = clue.BLUE
2727
alarm = True
28-
elif temperature > max_temp:
28+
elif temperature > max_temperature:
2929
clue_display[3].color = clue.RED
3030
alarm = True
3131
else:

0 commit comments

Comments
 (0)