-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontrol.py
93 lines (69 loc) · 2.03 KB
/
control.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
from os import uname
from socket import gethostname
import sys
import time
import cloud4rpi
import rpi
import tilt
# Put your device token here. To get the token,
# sign up at https://cloud4rpi.io and create a device.
DEVICE_TOKEN = '__YOUR_DEVICE_TOKEN__'
# Constants
DATA_SENDING_INTERVAL = 60 # secs
DIAG_SENDING_INTERVAL = 600 # secs
POLL_INTERVAL = 0.5 # 500 ms
beacon = {}
def F2C(degreesF):
return (degreesF - 32) / 1.8
def getTemp():
return F2C(int(beacon['Temp'])) if beacon else 20
def getGravity():
return beacon['Gravity'] if beacon else 1000
def main():
# Put variable declarations here
variables = {
'Gravity': {
'type': 'numeric',
'bind': getGravity
},
'Beer Temp': {
'type': 'numeric',
'bind': getTemp
}
}
diagnostics = {
'CPU Temp': rpi.cpu_temp,
'IP Address': rpi.ip_address,
'Host': gethostname(),
'Operating System': " ".join(uname())
}
device = cloud4rpi.connect(DEVICE_TOKEN)
device.declare(variables)
device.declare_diag(diagnostics)
device.publish_config()
# Adds a 1 second delay to ensure device variables are created
time.sleep(1)
try:
data_timer = 0
diag_timer = 0
while True:
if data_timer <= 0:
global beacon
beacon = tilt.getFirstTilt()
device.publish_data()
data_timer = DATA_SENDING_INTERVAL
if diag_timer <= 0:
device.publish_diag()
diag_timer = DIAG_SENDING_INTERVAL
time.sleep(POLL_INTERVAL)
diag_timer -= POLL_INTERVAL
data_timer -= POLL_INTERVAL
except KeyboardInterrupt:
cloud4rpi.log.info('Keyboard interrupt received. Stopping...')
except Exception as e:
error = cloud4rpi.get_error_message(e)
cloud4rpi.log.error("ERROR! %s %s", error, sys.exc_info()[0])
finally:
sys.exit(0)
if __name__ == '__main__':
main()