spejsiot/master/test-client.py

23 lines
794 B
Python
Raw Permalink Normal View History

2015-12-26 23:29:30 +00:00
import paho.mqtt.client as mqtt
import time
import random
2015-12-26 23:29:30 +00:00
# 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("#")
2015-12-26 23:29:30 +00:00
client.publish("main/status/penisy", "dupa")
# The callback for when a PUBLISH message is received from the server.
def on_message(client, userdata, msg):
2016-06-29 15:00:22 +00:00
print('%d %-20s %s' % (time.time(), msg.topic, msg.payload))
2015-12-26 23:29:30 +00:00
client = mqtt.Client("test-client-%d" % random.randint(100, 999))
2015-12-26 23:29:30 +00:00
client.on_connect = on_connect
client.on_message = on_message
client.connect("localhost", 1883, 60)
client.loop_forever()