I am attempting to create a sunrise simulation using my bedroom lamps and an input:date_time. I have the basic automation but I am looking for an efficient way to offset the time so the light is on full at the alarm time not 30 minutes after.
here is my current automation:
alias: wakeup_lights
trigger:
- platform: time
at: input_datetime.alarm_time
action:
- service: light.turn_on
data:
transition: 1800
rgb_color:
- 255
- 255
- 255
brightness_pct: 100
entity_id:
- light.bedside_light
- light.feit_bedroom1
mode: single
Any help is greatly appriciated.