各位大佬,鄙人刚玩ha不久,最近在新家调试自动化,发现个问题,求教一下。
1.家里过道安装了一个“子擎存在传感器 Lite”(吸顶安装,其实这个检测精度确实不错!)
2.检测过道是否有人存在或者移动或者进入,如果有,就开启4个灯
alias: 过道灯控制-开
description: ""
trigger:
- platform: template
value_template: >
{% set occupancy_state = states('binary_sensor.c85ccca78480_occupancy') %}
{% set occupancy_status = states('sensor.c85ccca78480_occupancy_status')
%} {{ occupancy_state == 'on' or (occupancy_status in ['EnterIn',
'MoveAway']) }}
condition:
action:
- service: light.turn_on
data: {}
target:
entity_id:
- light.dced83727465_light
- light.dced836f879d_light
- light.649e31835c14_light
- light.dced8372148c_light
mode: single
现在我遇到的问题是,监测到有人,4个灯不会同时开启,总会有个先后顺序,没有延迟,但是如果在米家设置自动化,4个灯会同时开启,没有先后顺序,即使我给这4个灯设置了编组,也会存在这种情况
求解,如何在ha里面让4个灯同时打开,没有任何延迟,谢谢
|