# 灭蚊器日间循环开闭,开30分钟,关30分钟
# https://www.home-assistant.io/docs/scripts/conditions/
- id: '20180816195000'
alias: free_mosquito
initial_state: true
hide_entity: true
action:
- service: switch.turn_on
entity_id: switch.socket_bl_mos
- delay: '00:30:00'
- service: switch.turn_off
entity_id: switch.socket_bl_mos
trigger:
platform: time
# You can also match on interval. This will match every 60 minutes
minutes: '/60'
seconds: 00
condition:
condition: time
# At least one of the following is required.
after: '06:20:00'
before: '23:59:00'