-
Notifications
You must be signed in to change notification settings - Fork 0
/
cheerlights-blinkstick-mqtt.py
52 lines (37 loc) · 1.14 KB
/
cheerlights-blinkstick-mqtt.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
#!/usr/bin/env python
# This is a for from https://bitbucket.org/thiseldo/random-python-code/src/8d5d0c7c17b9/Blinkstick/
from blinkstick import blinkstick
import sys
import mosquitto
def on_connect(mosq, obj, rc):
print("rc: "+str(rc))
def on_message(mosq, obj, msg):
sticks[0].set_color(name=(msg.payload))
print(msg.topic+" "+str(msg.payload))
def on_publish(mosq, obj, mid):
print("mid: "+str(mid))
def on_subscribe(mosq, obj, mid, granted_qos):
print("Subscribed: "+str(mid)+" "+str(granted_qos))
def on_log(mosq, obj, level, string):
print(string)
def main():
global sticks
print "BlinkStick MQTT script"
print ""
sticks = blinkstick.find_all()
if len(sticks) == 0:
print "BlinkStick not found..."
return 64
mqttc = mosquitto.Mosquitto()
mqttc.on_message = on_message
mqttc.on_connect = on_connect
mqttc.on_publish = on_publish
mqttc.on_subscribe = on_subscribe
mqttc.connect("test.mosquitto.org", 1883, 60)
mqttc.subscribe("cheerlights", 0)
rc = 0
while rc == 0:
rc = mqttc.loop()
return 0
if __name__ == "__main__":
sys.exit(main())