标签:topic main info mouseover 开关 需要 nod command color
参考教程: https://www.hachina.io/docs/7230.html
HomeAssistant中MQTT设备的自动发现逻辑是:
支持自动发现的设备包括:
mqtt:
# 此处为mqtt原有的一些配置
# ……
# 配置自动发现
discovery: true
# 自动发现使用的主题位置前缀,缺省为homeassistant
discovery_prefix: homeassistant
<discovery_prefix>/<component>/[<node_id>/]<object_id>/config
<discovery_prefix>
:配置文件中的discovery_prefix,缺省为homeassistant<component>
:设备所在的域,例如light、switch、binary_sensor等<node_id>
:可选,节点ID<object_id>
:设备ID配置信息采用JSON格式。
例如,MQTT设备在主题homeassistant/switch/irrigation/config
,发布信息:
{"name": "garden", "command_topic": "hachina/switch/irrigation/set", "state_topic": "hachina/switch/irrigation/state"}
当HomeAssistant读取此信息,相当于配置文件中存在以下内容:
switch:
- platform: mqtt
name: "garden"
command_topic: "hachina/switch/irrigation/set"
state_topic: "hachina/switch/irrigation/state"
打开手机mqtt调试助手
在hass配置信息话题上发布自己的消息
远程登录hass,我们发现自动多出一一个设备
设备类型 开关
名字 garden
重发送配置,不会出现重复的设备。
灯光这个设备,是之前我们自己手动在配置文件中添加的
原本以为自动添加的设备,会在配置文件中自动生成对应信息,但是打开没有发现,不知道hass自动存到哪了。
(二 -2) 天猫精灵接入Home Assistant-自动发现Mqtt设备
标签:topic main info mouseover 开关 需要 nod command color
原文地址:https://www.cnblogs.com/kekeoutlook/p/9471884.html