From: Philip Howard Date: Tue, 20 Aug 2019 15:35:39 +0000 (+0100) Subject: Merge pull request #20 from makeupsomething/patch-1 X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/commitdiff_plain/2d9581bb732a9281a5a40944706ceefdf21f6b97?hp=876dfbe7c3ec660f7ba93c4f7777333b7cf1e1cc Merge pull request #20 from makeupsomething/patch-1 Fix typo --- diff --git a/examples/all-in-one-no-pm.py b/examples/all-in-one-no-pm.py old mode 100644 new mode 100755 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 diff --git a/examples/luftdaten.py b/examples/luftdaten.py index 4d3d49a..27478c5 100755 --- a/examples/luftdaten.py +++ b/examples/luftdaten.py @@ -2,6 +2,7 @@ import requests import ST7735 +import time from bme280 import BME280 from pms5003 import PMS5003, ReadTimeoutError from subprocess import PIPE, Popen, check_output @@ -165,13 +166,19 @@ font = ImageFont.truetype("fonts/Asap/Asap-Bold.ttf", font_size) print("Raspberry Pi serial: {}".format(get_serial_number())) print("Wi-Fi: {}\n".format("connected" if check_wifi() else "disconnected")) +time_since_update = 0 +update_time = time.time() + # Main loop to read data, display, and send to Luftdaten while True: try: + time_since_update = time.time() - update_time values = read_values() print(values) - resp = send_to_luftdaten(values, id) - print("Response: {}\n".format("ok" if resp else "failed")) + if time_since_update > 145: + resp = send_to_luftdaten(values, id) + update_time = time.time() + print("Response: {}\n".format("ok" if resp else "failed")) display_status() except Exception as e: print(e)