|
楼主 |
发表于 2021-7-6 01:04:50
|
显示全部楼层
本帖最后由 itispip 于 2021-7-6 02:01 编辑
MQTT服务器这部分不属于HomeAssistant,看你自己使用的MQTT服务器是哪个,由MQTT服务器自己决定。例如,我使用的是mosquitto,它的bridge设置如下。
# ==========
# Bridges
# ==========
connection Deye
address xxxxx.mqtt.iot.gz.baidubce.com:1883
topic xxx/xxx/xxx/status/hex in
topic xxx/xxx/xxx/command/hex out
remote_username xxx/xxx
remote_password xxx
local_clientid xxx
remote_clientid xxx
bridge_protocol_version mqttv311
try_private false
notifications false
bridge_outgoing_retain false
bridge_attempt_unsubscribe false
cleansession false
keepalive_interval 60
这里面的关键是,除了state topic和command topic,什么都不能发给德业服务器,否则就会被拒绝连接。所以try_private, notifications, retain, unsubscribe之类的一切会发送额外数据的东西都要设置为false。具体你的MQTT服务器怎么设置,你得自己看。
|
|