forked from corny/luftdaten-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·156 lines (138 loc) · 4.69 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/usr/bin/env python3
import sys
import os
import time
import datetime
import socket
import requests
from phpserialize import *
from threading import Thread
import numpy as np
# Import-Pfade setzen
sys.path.append(os.path.join(sys.path[0],"sds011"))
sys.path.append(os.path.join(sys.path[0],"bme280"))
from sds011 import SDS011
import Adafruit_DHT
from Adafruit_BME280 import *
# Logging
import logging
logging.basicConfig(level=logging.ERROR)
# logging.basicConfig(level=logging.DEBUG)
# Create an instance of your bme280
dusty = SDS011('/dev/ttyUSB0')
# Set dutycyle to nocycle (permanent)
dusty.dutycycle = 0
bme280 = BME280(
address=0x77,
t_mode=BME280_OSAMPLE_8,
p_mode=BME280_OSAMPLE_8,
h_mode=BME280_OSAMPLE_8,
)
data_array = []
def getSerial():
with open('/proc/cpuinfo','r') as f:
for line in f:
if line[0:6]=='Serial':
return(line[10:26])
raise Exception('CPU serial not found')
def pushLuftdaten(url, pin, values):
try:
requests.post(url,
json={
"software_version": "python-dusty 0.0.2",
"sensordatavalues": [{"value_type": key, "value": val} for key, val in values.items()],
},
headers={
"X-PIN": str(pin),
"X-Sensor": sensorID,
},
timeout=10
)
except:
pass
def push2opensense():
senseBox_ID = "" # your senseBox ID
pm10_ID = "" # your senseBox PM10 sensor ID
pm25_ID = "" # your senseBox PM25 sensor ID
temperature_ID = "" # your senseBox temperature sensor ID
humidity_ID = "" # senseBox humidity sensor ID
pressure_ID = "" # your senseBox pressure sensor ID
ts = data_array[6] # RFC 3339 Timestamp # optional
loc = {"lat": , "lng": , "height": } # location object # optional # insert your lat lng and height (optional)
try:
requests.post("https://api.opensensemap.org/boxes/"+senseBox_ID+"/data",
json={
#SDS011 P10
pm10_ID: [data_array[0], ts, loc],
# SDS011 P25
pm25_ID: [data_array[1], ts, loc],
#BME Temp
temperature_ID: [data_array[2], ts, loc],
#BME Hum
humidity_ID: [data_array[3], ts, loc],
#BME Press
pressure_ID: [data_array[4]/100, ts, loc], # Pressure in hPA, remove "\100" if you want the value in Pa
},
headers={
"content-type": "application/json"
},
timeout=10 # optional
)
except:
pass
def send_sensor_data():
pushLuftdaten('https://api-rrd.madavi.de/data.php', 0, {
"SDS_P1": data_array[0],
"SDS_P2": data_array[1],
"BME280_temperature": data_array[2],
"BME280_pressure": data_array[4],
"BME280_humidity": data_array[3],
})
pushLuftdaten('https://api.luftdaten.info/v1/push-sensor-data/', 1, {
"P1": data_array[0],
"P2": data_array[1],
})
pushLuftdaten('https://api.luftdaten.info/v1/push-sensor-data/', 11, {
"temperature": data_array[2],
"pressure": data_array[4],
"humidity": data_array[3],
})
push2opensense()
def read_sensor_data():
pm25_values = []
pm10_values = []
dusty.workstate = SDS011.WorkStates.Measuring
try:
for a in range(8):
values = dusty.get_values()
if values is not None:
pm10_values.append(values[0])
pm25_values.append(values[1])
finally:
dusty.workstate = SDS011.WorkStates.Sleeping
pm25_value = np.mean(pm25_values)
pm10_value = np.mean(pm10_values)
temperature = bme280.read_temperature()
humidity = bme280.read_humidity()
pressure = bme280.read_pressure()
# hum2, temp2 = Adafruit_DHT.read_retry(Adafruit_DHT.DHT22, 23)
global data_array
data_array = [pm10_value, pm25_value, temperature, humidity, pressure, datetime.datetime.now().strftime("%d.%m.%Y %H:%M:%S"), datetime.datetime.utcnow().isoformat("T")+"Z"]
def start():
while True:
starttime = time.time()
read_sensor_data()
send_sensor_data()
time.sleep(60.0 - ((time.time() - starttime) % 60.0))
def socket_thread():
serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
serversocket.bind(('localhost', 8367))
serversocket.listen(5)
while True:
connection, address = serversocket.accept()
connection.send(dumps(data_array))
sensorID = "raspi-" + getSerial()
t1 = Thread(target = start)
t2 = Thread(target = socket_thread)
t1.start()
t2.start()