paho MQTT on_message returning a funny message - python
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: some help please :) I just started to play with MQTT in python. When I run the following program: import paho.mqtt.client as mqtt def on_connect(client, userdata, flags, rc): print("Connected with result code "+str(rc)) client.subscribe("watchdog/#") def on_message(client, userdata, msg): message = str(msg.payload) print(msg.topic+" "+message) client = mqtt.Client() client.username_pw_set('XXXX', password='XXXXXXX') client.on_connect = on_connect client.on_message = on_message client.connect("XXXX", XXXXX, 60) client.loop_forever() the