Skip to content

Instantly share code, notes, and snippets.

@LarsBergqvist
Last active March 1, 2018 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LarsBergqvist/0bbbd07aea514f12118dcbc5c3874f17 to your computer and use it in GitHub Desktop.
Save LarsBergqvist/0bbbd07aea514f12118dcbc5c3874f17 to your computer and use it in GitHub Desktop.
paho mqtt subscriber example
import paho.mqtt.client as mqtt
def on_connect(client, userdata, flags, rc):
print("Connected with result code "+str(rc))
client.subscribe("Hellos/+")
def on_message(client, userdata, msg):
print(msg.topic+" "+str(msg.payload))
client = mqtt.Client()
client.on_connect = on_connect
client.on_message = on_message
client.connect("192.168.1.16", 1883, 60)
client.loop_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment