哟,伙计们。所以我对 Python 比较陌生,并且是 MQTT 的新手。所以,我试图通过 MQTT 简单地连接两个程序。其中一个程序是发布者:
import paho.mqtt.client as mqtt
import sys, tty, termios
## Publisher reads a keyboard input
def getch():
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
tty.setraw(sys.stdin.fileno())
ch = sys.stdin.read(1)
finally:
termios.tcsetattr(fd,termios.TCSADRAIN, old_settings)
return ch
while True:
##Publisher connects to MQTT broker
mqttc= mqtt.Client("python_pub")
mqttc.connect("iot.eclipse.org", 1883)
char= getch()
mqttc.publish("Labbo/control", str(char))
mqtt.Client()
所以,基本上发布者读取一个密钥输入并将其发送给代理。并且客户端程序应该读取击键并做出相应的反应:
import paho.mqtt.client as mqtt
def on_connect(client, userdata, flags, rc):
print("Connected with result code "+str(rc))
client.subscribe("Labbo/control")
def on_message(client, userdata, msg):
print(msg.topic+" "+str(msg.payload))
## v v PROBLEM LINE v v ##
char=str(msg.payload)
## ^ ^ PROBLEM LINE ^ ^ ##
client = mqtt.Client()
client.on_connect = on_connect
client.on_message = on_message
client.connect("iot.eclipse.org", 1883, 60)
##The program just needs to close itself upon entering "x" on the Publisher
while True:
if char=="x":
break
这是一个简单的测试程序,但我在尝试“读取”MQTT 有效负载时遇到了很多麻烦。