-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmqtt_subscribe_matplotlib.py
75 lines (54 loc) · 1.79 KB
/
mqtt_subscribe_matplotlib.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
#!/usr/bin/env python
import matplotlib.pyplot as plt
import paho.mqtt.client as mqtt
import json
from mqtt_settings import config
from numpy_buffer import RingBuffer
import datetime
import pytz
import dateutil.parser
def now():
return datetime.datetime.now(pytz.utc)
maxlen = 500
data_x = RingBuffer(maxlen, now(), dtype=datetime.datetime)
data_y = RingBuffer(maxlen)
fig, ax = plt.subplots()
line, = ax.plot(data_x.all[::-1], data_y.all[::-1], linestyle='-', marker='+', color='r', markeredgecolor='b')
ax.set_ylim([0, 100])
def on_connect(client, userdata, flags, rc):
print("Connected with result code " + str(rc))
client.subscibe("/sensors/#", 0)
def on_message(client, userdata, msg):
data = json.loads(msg.payload.decode("utf-8")) # deserialization
sent = dateutil.parser.parse(data['ts']) # iso 8601 to datetime.datetime
data['ts'] = sent
received = now()
lag = received - sent
print("%-20s %d %s lag=%s" % (msg.topic, msg.qos, data, lag))
# mosq.publish('pong', "Thanks", 0)
data_x.append(sent)
data_y.append(data['d']['y'])
line.set_xdata(data_x.all[::-1])
xmin, xmax = data_x.min(), data_x.max()
if xmax > xmin:
ax.set_xlim([xmin, xmax])
line.set_ydata(data_y.all[::-1])
ymin, ymax = data_y.min(), data_y.max()
if ymax > ymin:
ax.set_ylim([ymin, ymax])
plt.pause(0.001)
def on_publish(client, userdata, msg):
pass
def main():
cli = mqtt.Client()
cli.on_connect = on_connect
cli.on_message = on_message
cli.on_publish = on_publish
# cli.tls_set('root.ca',
# certfile='c1.crt',
# keyfile='c1.key')
# cli.username_pw_set("guigui", password="abloc")
cli.connect(config['host'], config['port'], config['keepalive'])
cli.loop_forever()
if __name__ == '__main__':
main()