Skip to content

Commit 1940cb6

Browse files
authored
Merge pull request #33 from jerryneedell/jerryn_simpletest
fix simpletest
2 parents 570da14 + e8689dc commit 1940cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/bme680_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
temperature_offset = -5
1717

1818
while True:
19-
print("\nTemperature: %0.1f C" % bme680.temperature + temperature_offset)
19+
print("\nTemperature: %0.1f C" % (bme680.temperature + temperature_offset))
2020
print("Gas: %d ohm" % bme680.gas)
2121
print("Humidity: %0.1f %%" % bme680.humidity)
2222
print("Pressure: %0.3f hPa" % bme680.pressure)

0 commit comments

Comments
 (0)