mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
39 lines
926 B
Python
39 lines
926 B
Python
import mqtt
|
|
import PikaStdDevice
|
|
|
|
client = mqtt.MQTT('broker.emqx.io',port=1883,clinetID='clientid',username='name_',password='passwd_')
|
|
|
|
ret = client.connect()
|
|
print("ret:%d" % ret)
|
|
|
|
def callback0(signal):
|
|
print("py cb: %s:%s" % (client.recv_topic, client.recv_msg))
|
|
|
|
|
|
ret = client.subscribe('topic_pikapy_qos0', 0, callback0)
|
|
print("ret:%d" % ret)
|
|
ret = client.subscribe('topic_pikapy_qos1', 1,0)
|
|
print("ret:%d" % ret)
|
|
ret = client.subscribe('topic_pikapy_qos2', 2,0)
|
|
print("ret:%d" % ret)
|
|
|
|
|
|
#sleep wait for recv data
|
|
T = PikaStdDevice.Time()
|
|
T.sleep_s(5)
|
|
|
|
out = client.listSubscribrTopic()
|
|
print('out',out)
|
|
|
|
# client.unsubscribe('topic_pikapy_qos0');
|
|
# client.unsubscribe('topic_pikapy_qos1');
|
|
# client.unsubscribe('topic_pikapy_qos2');
|
|
# T.sleep_s(5)
|
|
# client.listSubscribrTopic()
|
|
|
|
|
|
# ret = client.setWill(1,'topic_will',1,'lost mqtt connect')
|
|
T.sleep_s(10)
|
|
# exit()
|
|
ret = client.disconnect()
|
|
print("ret:%d" % ret) |