-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathraspberrypi-firebase.py
84 lines (69 loc) · 2.01 KB
/
raspberrypi-firebase.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
import pyrebase
import serial
import time
k = 0
config = {
"apiKey": "AAAAS5jDbs0:APA91bGaHI1TH-y1hqOSI1mJxGTThyVntfaORIqcjzPyWc1aP0rLBuFfdC9qFa9gmWlBBnQvILJvb_JPIkoXXziKmyW86fNKS-MeWQ2JYOypJ5BLOTyjmMBR5B-NCwmM2FBIUpmvjzWI",
"authDomain": "green-sense.firebaseapp.com",
"databaseURL": "https://green-sense.firebaseio.com",
"storageBucket": "green-sense.appspot.com"
}
firebase = pyrebase.initialize_app(config)
db = firebase.database()
sdata=serial.Serial("/dev/ttyACM0",9600)
sdata.baudrate=9600
i = 1
tim=""
while i == 1:
readdata=sdata.readline()
readdata=str(readdata) ##readdata has the data
data = {"Data": readdata}
ti = data["Data"]
ti = data["Data"]
for j in range (0,len(ti)):
if(ti[j] ==";"):
tim = ti[(j+1):(j+4)]
print(tim)
while int(tim)> 60:
k=k+1
if k<60:
break
hrs = str(k)
findata = readdata[2:24]+hrs
da = {"Data1": findata}
print(da)
db.child("arduino").push(da)
import pyrebase
import serial
import time
k = 0
config = {
"apiKey": "AAAAS5jDbs0:APA91bGaHI1TH-y1hqOSI1mJxGTThyVntfaORIqcjzPyWc1aP0rLBuFfdC9qFa9gmWlBBnQvILJvb_JPIkoXXziKmyW86fNKS-MeWQ2JYOypJ5BLOTyjmMBR5B-NCwmM2FBIUpmvjzWI",
"authDomain": "green-sense.firebaseapp.com",
"databaseURL": "https://green-sense.firebaseio.com",
"storageBucket": "green-sense.appspot.com"
}
firebase = pyrebase.initialize_app(config)
db = firebase.database()
sdata=serial.Serial("/dev/ttyACM0",9600)
sdata.baudrate=9600
i = 1
while i == 1:
readdata=sdata.readline()
readdata=str(readdata) ##readdata has the data
data = {"Data": readdata}
ti = data["Data"]
ti = data["Data"]
for j in range (0,len(ti)):
if(ti[j] ==";"):
tim = ti[(j+1):(j+4)]
print(tim)
while int(tim)> 60:
k=k+1
if k<60:
break
hrs = str(k)
findata = readdata[2:24]+hrs
da = {"Data1": findata}
print(da)
db.child("arduino").push(da)