Created
January 16, 2016 10:55
-
-
Save notthetup/56c1bd66c3ec5da57252 to your computer and use it in GitHub Desktop.
mqtt with piglow on RPi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mosquitto as mqtt | |
from piglow import PiGlow | |
piglow = PiGlow() | |
# The callback for when the client receives a CONNACK response from the server. | |
def on_connect(client, userdata, rc): | |
print("Connected with result code "+str(rc)) | |
# Subscribing in on_connect() means that if we lose the connection and | |
# reconnect then subscriptions will be renewed. | |
client.subscribe("scpi") | |
# The callback for when a PUBLISH message is received from the server. | |
def on_message(client, userdata, msg): | |
print(msg.topic+" "+str(msg.payload)) | |
piglow.blue(int(msg.payload)) | |
client = mqtt.Mosquitto() | |
client.on_connect = on_connect | |
client.on_message = on_message | |
client.connect("192.168.23.129") | |
# Blocking call that processes network traffic, dispatches callbacks and | |
# handles reconnecting. | |
# Other loop*() functions are available that give a threaded interface and a | |
# manual interface. | |
client.loop_forever() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment