projects
/
EVA-2020-02-2.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Expand test coverage, bugfix
[EVA-2020-02-2.git]
/
examples
/
compensated-temperature.py
diff --git
a/examples/compensated-temperature.py
b/examples/compensated-temperature.py
index b587999d84fc0153cb1152a24e65c69aef7412fd..048eb804fde2096a7c170bef086a94d8258ec4d0 100755
(executable)
--- a/
examples/compensated-temperature.py
+++ b/
examples/compensated-temperature.py
@@
-26,6
+26,7
@@
bme280 = BME280(i2c_dev=bus)
def get_cpu_temperature():
process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE)
output, _error = process.communicate()
+ output = output.decode()
return float(output[output.index('=') + 1:output.rindex("'")])