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.
2 parents 570da14 + e8689dc commit 1940cb6Copy full SHA for 1940cb6
examples/bme680_simpletest.py
@@ -16,7 +16,7 @@
16
temperature_offset = -5
17
18
while True:
19
- print("\nTemperature: %0.1f C" % bme680.temperature + temperature_offset)
+ print("\nTemperature: %0.1f C" % (bme680.temperature + temperature_offset))
20
print("Gas: %d ohm" % bme680.gas)
21
print("Humidity: %0.1f %%" % bme680.humidity)
22
print("Pressure: %0.3f hPa" % bme680.pressure)
0 commit comments