python paho-mqtt 发布 NULL 值
python paho-mqtt publish NULL value
我正在尝试从 CSV 文件中读取并使用 paho-mqtt 发布行值,但代理日志响应它无法使用 NULL
更新主题
for r in reader:
publish.single(strMqttChannel, r[2], hostname=strMqttBroker, auth={'username': 'user', 'password': 'password'})
r[2] 是我试过的最简单的情况 1
它也可以是负小数,例如 -1.5
str(r[2])
也不行
如果我传递没有变量的值,它就像 charm:
publish.single(strMqttChannel, "1", hostname=strMqttBroker, auth={'username': 'user', 'password': 'password'})
我做错了什么?
r[2].strip()
成功了....
我正在尝试从 CSV 文件中读取并使用 paho-mqtt 发布行值,但代理日志响应它无法使用 NULL
更新主题for r in reader:
publish.single(strMqttChannel, r[2], hostname=strMqttBroker, auth={'username': 'user', 'password': 'password'})
r[2] 是我试过的最简单的情况 1
它也可以是负小数,例如 -1.5
str(r[2])
也不行
如果我传递没有变量的值,它就像 charm:
publish.single(strMqttChannel, "1", hostname=strMqttBroker, auth={'username': 'user', 'password': 'password'})
我做错了什么?
r[2].strip()
成功了....