-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcloud4rpi.py
107 lines (85 loc) · 3.52 KB
/
cloud4rpi.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
# --------------------------------------------------------------------------- #
# Cloud4RPi client library for ESP8266, https://github.com/cloud4rpi
# --------------------------------------------------------------------------- #
import json
from time import time
# https://raw.githubusercontent.com/micropython/micropython-lib/mqtt/umqtt.simple/umqtt/simple.py
from mqtt import MQTTClient
PING_INTERVAL = 40 # seconds. Should be less then 55
C4R_BROKER_HOST = 'mq.cloud4rpi.io'
C4R_BROKER_PORT = 1883
C4R_TOPIC_FORMAT = b'devices/%s/%s'
class Device:
def __init__(self, device_token):
self.__device_token = bytes(device_token, 'utf-8')
self.__variables = None
self.__diag_variables = None
self.__mqtt = None
self.__bindings = dict()
self.next_ping_time = time()
def __publish(self, topic, payload=None):
if payload is None:
return
msg = json.dumps({'payload': payload})
self.__mqtt.publish(C4R_TOPIC_FORMAT %
(self.__device_token, topic), msg, qos=1)
print(topic, "<--", msg)
self.mqtt_ping_reset()
def __on_message(self, topic, msg):
print(topic.decode().rsplit('/')[-1], "-->", msg.decode())
data = json.loads(msg)
for var_name, callback in self.__bindings.items():
if var_name in data.keys():
ret = callback(data[var_name])
self.__variables[var_name]['value'] = ret
self.__publish('data/cr', {var_name: ret})
def connect(self):
self.__mqtt = MQTTClient(client_id=self.__device_token,
server=C4R_BROKER_HOST,
port=C4R_BROKER_PORT)
self.__mqtt.set_callback(self.__on_message)
try:
self.__mqtt.connect()
self.__mqtt.subscribe(C4R_TOPIC_FORMAT %
(self.__device_token, 'commands'), qos=1)
except Exception as e:
print("[Exception] %s: %s" % (type(e).__name__, e))
return False
self.mqtt_ping_reset()
return True
def ping(self):
self.__mqtt.ping()
self.mqtt_ping_reset()
def mqtt_ping_reset(self):
self.next_ping_time = time() + PING_INTERVAL
print("Next MQTT ping at", self.next_ping_time)
def declare(self, variables):
self.__variables = variables
def declare_diag(self, diag_variables):
self.__diag_variables = diag_variables
def publish_config(self):
cfg = []
for var_name, var_config in self.__variables.items():
cfg.append({'name': var_name, 'type': var_config['type']})
self.__bindings[var_name] = var_config['bind']
self.__publish('config', cfg)
def publish_diag(self):
self.__publish('diagnostics', self.__diag_variables)
def publish_data(self):
for var_name, callback in self.__bindings.items():
self.__variables[var_name]['value'] = \
callback(self.__variables[var_name]['value'])
cfg = {var_name: var_config['value']
for var_name, var_config in self.__variables.items()}
self.__publish('data', cfg)
def check_commands(self):
"""Call me at least once per 55s"""
self.__mqtt.check_msg()
if time() >= self.next_ping_time:
print("MQTT ping at", time())
self.ping()
def connect(device_token):
device = Device(device_token)
if device.connect():
return device
return None