本帖最后由 okxiongmao 于 2018-5-17 10:15 编辑
昨天在论坛一个自动化教程帖子(https://bbs.hassbian.com/thread-460-1-1.html)里面下载了一个实例来学习,有些疑问,就是为什么执行关闭卫生间一系列开关之前先打开了卫生间的开关,然后延迟0.3秒再关闭卫生间开关又打开主卫排气扇,然后又延迟0.3秒再把它关闭。这么做的意义是什么呐?
还有就是关闭卫生间和打开排气扇的操作成立吗?能同时执行啊?如果能同时执行那么其他的延迟0.3秒的作用又是什么
因为刚入门,有点看不明白,希望大神们可以不吝赐教!
#####################################################卫生间白天自动关###################################################################
- alias: switch.weishengjian01_off
trigger:
platform: state
entity_id: binary_sensor.motion_sensor_158d00014dc24e
to: 'off'
for:
minutes: 2
condition:
condition: time
after: '00:00:00'
before: '19:00:00'
action:
- service: switch.turn_on
entity_id: switch.weishengjian
- delay:
seconds: 0.3
- service: switch.turn_off
entity_id: switch.weishengjian
- service: switch.turn_on
entity_id: switch.zhuweipaiqishan
- delay:
seconds: 0.3
- service: switch.turn_off
entity_id: switch.zhuweipaiqishan
- service: switch.turn_off
entity_id: switch.cesuofengshanchazuo
|