flake8 fiddling
[EVA-2020-02-2.git] / examples / compensated-temperature.py
CommitLineData
a155e335
SM
1#!/usr/bin/env python
2
3import time
4from bme280 import BME280
5from subprocess import PIPE, Popen
6
7try:
8 from smbus2 import SMBus
9except ImportError:
10 from smbus import SMBus
11
ec075941
SM
12print("""compensated-temperature.py - Use the CPU temperature
13to compensate temperature readings from the BME280 sensor.
14Method adapted from Initial State's Enviro pHAT review:
15https://medium.com/@InitialState/tutorial-review-enviro-phat-for-raspberry-pi-4cd6d8c63441
a155e335
SM
16
17Press Ctrl+C to exit!
18
19""")
20
21bus = SMBus(1)
22bme280 = BME280(i2c_dev=bus)
23
ec075941 24
9d2c6929 25# Get the temperature of the CPU for compensation
a155e335
SM
26def get_cpu_temperature():
27 process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE)
28 output, _error = process.communicate()
29 return float(output[output.index('=') + 1:output.rindex("'")])
30
ec075941 31
9d2c6929
SM
32# Tuning factor for compensation. Decrease this number to adjust the
33# temperature down, and increase to adjust up
87417b92 34factor = 0.8
a155e335 35
9d2c6929
SM
36cpu_temps = [0] * 5
37
a155e335
SM
38while True:
39 cpu_temp = get_cpu_temperature()
9d2c6929
SM
40 # Smooth out with some averaging to decrease jitter
41 cpu_temps = cpu_temps[1:] + [cpu_temp]
42 avg_cpu_temp = sum(cpu_temps) / float(len(cpu_temps))
a155e335 43 raw_temp = bme280.get_temperature()
9d2c6929 44 comp_temp = raw_temp - ((avg_cpu_temp - raw_temp) / factor)
a155e335
SM
45 print("Compensated temperature: {:05.2f} *C".format(comp_temp))
46 time.sleep(1.0)