Transition time to brightness? #50
-
Is it possible to use transition time to the set brightness? Instead of the bulb's default. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
@YanisKyr, hello. This integration is not about light, it is just allow integrate SleepAsAndroid Android application to Home Assistant as states and events. |
Beta Was this translation helpful? Give feedback.
-
Hi Igor, thanks for the reply. Love the integration and the blueprint by the way! I'm using your blueprint to turn lights on/off based on SleepAsAndroid states, and I was trying to take advantage of the transition attribute mentioned here to make the lights turn on/off gradually. Example extract from the automation I'm referring to:
Example extract from another implementation with transition:
|
Beta Was this translation helpful? Give feedback.
-
@YanisKyr, you may use same settings in the integration blueprint. My "live" configuration for service: light.turn_off
data:
transition: 60
target:
area_id:
- b6b333fa2c114cb69f2d831fb4dd0263
- 7259d193925047be89f17abd57c141cb
- 755d515a3d1d421ab9d128394dd16496
- 298a2461d54243ce9ea8e0f31b2f9491 Just use in action "run service" for event, then select service: Also you may switch from visual to yaml mode while editing action (via three dots in action) and add any property that is not configurable via UI, but allowed by service configuration (but it looks like UI allow set any allowed property for service). |
Beta Was this translation helpful? Give feedback.
-
That's brilliant, thanks for pointing me in the right direction. Made it work now :) |
Beta Was this translation helpful? Give feedback.
@YanisKyr, you may use same settings in the integration blueprint.
My "live" configuration for
sleep_tracking_started
event for blueprint:Just use in action "run service" for event, then select service:
light.turn_off
orlight.turn_on
and enable checkboxAlso you may switch from visual to yaml mode while editing action (via three dots in action) and add any property that is not configurable via UI, but allowed by service configuration (but it looks like UI allow set an…