I’m working on setting a light that turns on at 9pm and turns off at 2:30am on 3 nights a week wed fri and sat. Will this work?
Just getting started in homeassistant so hoping for some help.
'alias: Turn on Stair Light when the top opens
description: ‘’
trigger:
- platform: time
at: ‘21:00:00’
condition: - condition: time
after: ‘02:30:00’
weekday:- wed
- fri
- sat
before: ‘21:00:00’
action:
- type: turn_on
device_id: cf0b4ecc3f7da16788d36ba282f0452a
entity_id: switch.upstairs_light_inside
domain: switch
mode: single’