I’m using the last hass.io version and I have this automation:
- id: '1588082223528'
alias: Mattina lollo
description: ''
trigger:
- entity_id: switch.stop_tapparella_lollo
from: 'off'
platform: state
to: 'on'
condition:
condition: and
conditions:
- condition: state
entity_id: device_tracker.telefono_lollo
state: home
- condition: time
after: '6:55:00'
before: '9:00:00'
action:
- data: {}
entity_id: cover.tapparella_lorenzo
service: cover.open_cover
- data: {}
entity_id: cover.tapparella_bagno_ragazzi
service: cover.open_cover
- data: {}
entity_id: cover.tapparella_studio_lorenzo
service: cover.open_cover
- data: {}
entity_id: cover.tapparella_finestra_cucina
service: cover.open_cover
This automation doesn’t work. As soon as I remove the time condition it starts working correctly. How can I fix it?
Thank you for your support.