X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/blobdiff_plain/870b67fb2aafac5ba97285e9e2f8d3836a89ce10..e2d010e2ae9761418d5a59f79cc4b60a251665d5:/examples/compensated-temperature.py?ds=sidebyside diff --git a/examples/compensated-temperature.py b/examples/compensated-temperature.py index 048eb80..3679610 100755 --- a/examples/compensated-temperature.py +++ b/examples/compensated-temperature.py @@ -24,9 +24,8 @@ bme280 = BME280(i2c_dev=bus) # Get the temperature of the CPU for compensation def get_cpu_temperature(): - process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE) + process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE, universal_newlines=True) output, _error = process.communicate() - output = output.decode() return float(output[output.index('=') + 1:output.rindex("'")])