projects
/
EVA-2020-02-2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
a73ee78
)
Adding delay to avoid rate-limiting by Luftdaten
author
Sandy Macdonald
<sandyjmacdonald@gmail.com>
Tue, 13 Aug 2019 14:27:16 +0000
(15:27 +0100)
committer
GitHub
<noreply@github.com>
Tue, 13 Aug 2019 14:27:16 +0000
(15:27 +0100)
examples/luftdaten.py
patch
|
blob
|
blame
|
history
diff --git
a/examples/luftdaten.py
b/examples/luftdaten.py
index 4d3d49acd87a86dae17d79f51981f67d75fc261a..27478c590c06088cea81334723a92417de559359 100755
(executable)
--- a/
examples/luftdaten.py
+++ b/
examples/luftdaten.py
@@
-2,6
+2,7
@@
import requests
import ST7735
import requests
import ST7735
+import time
from bme280 import BME280
from pms5003 import PMS5003, ReadTimeoutError
from subprocess import PIPE, Popen, check_output
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"))
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:
# 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)
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)
display_status()
except Exception as e:
print(e)