We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c52bda commit 67c2d33Copy full SHA for 67c2d33
examples/shtc3_displayio_simpletest.py
@@ -35,6 +35,8 @@
35
while True:
36
temperature, relative_humidity = sht.measurements
37
# Update the label.text property to change the text on the display
38
- display_output_label.text = f"Temperature: {temperature:.1f} C Humidity: {relative_humidity:.1f} %"
+ display_output_label.text = (
39
+ f"Temperature: {temperature:.1f} C Humidity: {relative_humidity:.1f} %"
40
+ )
41
# wait for a bit
42
time.sleep(1)
0 commit comments