Merged cipy-improved-logging, omitted luftdaten.py for now
[EVA-2020-02-2.git] / examples / compensated-temperature.py
index 6a9c115ed05cf3d6229f5ead5178724a1f1967d4..74b6babf103cf63c3b98da31c733a83f62a54e90 100755 (executable)
@@ -2,7 +2,6 @@
 
 import time
 from bme280 import BME280
-from subprocess import PIPE, Popen
 
 try:
     from smbus2 import SMBus
@@ -31,9 +30,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, universal_newlines=True)
-    output, _error = process.communicate()
-    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