From 10d81356df22a2eff212caedac15c7f3dc16f026 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Mon, 19 Aug 2019 10:52:04 +0100 Subject: [PATCH] Switch temp comp method for #28 --- examples/compensated-temperature.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/examples/compensated-temperature.py b/examples/compensated-temperature.py index 048eb80..7d0d0f1 100755 --- a/examples/compensated-temperature.py +++ b/examples/compensated-temperature.py @@ -2,7 +2,6 @@ import time from bme280 import BME280 -from subprocess import PIPE, Popen try: from smbus2 import SMBus @@ -24,10 +23,10 @@ bme280 = BME280(i2c_dev=bus) # Get the temperature of the CPU for compensation 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("'")]) + with open("/sys/class/thermal/thermal_zone0/temp", "r") as f: + temp = f.read() + temp = int(temp) / 1000.0 + return temp # Tuning factor for compensation. Decrease this number to adjust the -- 2.30.2