I've been searching reddit and the forums for a few hours but half the problem is I'm not entirely sure what I'm trying to search for.
I have this automation:
alias: Back Garden Evening On
description: ""
triggers:
- trigger: sun
event: sunset
offset: 0
conditions: []
actions:
- action: light.turn_on
metadata: {}
data:
brightness: 1
target:
entity_id: light.back_garden
- delay: "00:00:05"
- data:
brightness: 255
transition: 1800
target:
entity_id: light.back_garden
action: light.turn_on
mode: single
The idea being that at sunset, light.back_garden turns on (it's already off at this point) at brightness: 1, and slowly transitions to full brightness over a period of half an hour.
What's happening is that the first action is running correctly and the lights come on at minimal brightness, but as soon as the delay finishes, the lights jump to full brightness for a few seconds and then drop down to presumably 2 all the way up to 255.
I'm trying to avoid the 100% at the beginning somehow, but not sure what I'm doing wrong?