Hi,
because the transition doesn’t work with my IKEA Gateway and Bulb i’ve tried to build a workaround for getting a smooth fade on. But it takes very long time…i expected 2,5s but it takes over 5m until the light reaches full brightness.
Maybe someone can show me how to get what i want
(btw. i’m just starting with HASS)
lightonlow_lamp1_start:
alias: "Lampe 1 langsam an begin"
sequence:
- service: light.turn_on
entity_id: light.test_lampe_1
data:
brightness: 15
- service: script.turn_on
entity_id: script.lightonlow_lamp1
lightonlow_lamp1:
alias: "Lampe 1 langsam an"
sequence:
- condition: template
value_template: '{{states.light.test_lampe_1.attributes.brightness < 255}}'
- service: light.turn_on
entity_id: light.test_lampe_1
data_template:
brightness: '{{states.light.test_lampe_1.attributes.brightness + 1}}'
- service: script.turn_on
entity_id: script.lightonlow_lamp1_helper
lightonlow_lamp1_helper:
alias: "Lampe 1 langsam delay"
sequence:
- delay:
milliseconds: 10
- service: script.turn_on
data:
entity_id: script.lightonlow_lamp1
Thanks