我是n1盒子做的hass,而且有线连接路由器的
不知道为啥,这个延迟很大,我自动化在下面,也没写了延迟,就写了个等待大门打开的触发条件。
测试的过程中发现,有的时候开门关门过快,hass也没记录下来,但米家是有记录的。
本来想在家里人面前秀一波这个回家自动化的。
我的自动化下面,希望大佬能帮我看看,是我设置的问题,还是就网络的问题。
id: '1644207998241'
alias: 欢迎回家(我)
description: 我
trigger:
- platform: state
entity_id: person.tdh
to: home #gps定位我到家的范围了
condition:
- condition: state
entity_id: binary_sensor.isa_dw2hl_4557_magnet_sensor
state: 'off' #大门的小米门窗传感器是关着的
- condition: time
after: '17:00' #傍晚5点之后
action:
- wait_for_trigger:
- platform: state
entity_id: binary_sensor.isa_dw2hl_4557_magnet_sensor
from: 'off'
to: 'on'
continue_on_timeout: false
timeout: '00:05:00' #如果5分钟之内门打开
- service: xiaomi_miot.intelligent_speaker
data:
entity_id: media_player.xiaomi_lx06_96c9_play_control
text: 欢迎回家,小爱在家等候多时了! #小爱同学的回家欢迎词
- type: turn_on
device_id: c67d7bb135d9539117851e41c6c9dea0
entity_id: switch.lumi_b1lacn02_fb2f_switch
domain: switch #开客厅灯
- type: turn_on
device_id: 26bc9a842d9882b177bedb08aa65eef2
entity_id: light.opple_bydceiling_2524_light
domain: light #开卧室灯
复制代码