Hello,
I have this automation to open the curtain during week days:
alias: Abrir Estores Quarto Nascer Sol
description: ""
trigger:
- platform: time
at: "09:30:00"
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
action:
- device_id: xxxxxxxxx
domain: cover
entity_id: xxxxxxxxxx
type: set_position
position: 100
mode: single
Question is, I don’t want that to work in case of public holidays (in Portugal), since I may be sleeping Is there a way to do that?