projects
/
EVA-2020-02-2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
0c5111f
)
Decode fix for #3
author
Phil Howard
<phil@gadgetoid.com>
Tue, 25 Jun 2019 21:49:46 +0000
(22:49 +0100)
committer
Phil Howard
<phil@gadgetoid.com>
Tue, 25 Jun 2019 21:49:46 +0000
(22:49 +0100)
examples/compensated-temperature.py
patch
|
blob
|
blame
|
history
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()
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("'")])
return float(output[output.index('=') + 1:output.rindex("'")])