home-assistant / core

:house_with_garden: Open source home automation that puts local control and privacy first.
https://www.home-assistant.io
Apache License 2.0
71.14k stars 29.81k forks source link

Hue Dynamic Scene not playing? #64026

Closed dennisbrouwer91 closed 2 years ago

dennisbrouwer91 commented 2 years ago

The problem

Hi,

I have some dynamic scenes in my Hue app, and they are nicely imported as script in Home-Assistant. When i trigger one of the scenes, the Hue light goes on but doesn't start 'playing' the Dynamic scene.

What version of Home Assistant Core has the issue?

core-2021.12.9

What was the last working version of Home Assistant Core?

No response

What type of installation are you running?

Home Assistant Supervised

Integration causing the issue

Philips Hue

Link to integration documentation on our website

https://www.home-assistant.io/integrations/hue/

Example YAML snippet

No response

Anything in the logs that might be useful for us?

Sadly no info from the logs

Additional information

No response

probot-home-assistant[bot] commented 2 years ago

hue documentation hue source (message by IssueLinks)

probot-home-assistant[bot] commented 2 years ago

Hey there @balloob, @marcelveldt, mind taking a look at this issue as it has been labeled with an integration (hue) you are listed as a code owner for? Thanks! (message by CodeOwnersMention)

marcelveldt commented 2 years ago

If a scene is dynamic, the current default is to enable dynamic mode if you active the scene. Note that only official Philips/Signify lights support this mode.

marcelveldt commented 2 years ago

BTW: How did you trigger the scene ?

dennisbrouwer91 commented 2 years ago

The scene in the Hue app is dynamic (i can also press the 'play' button there). I've tried it both ways :

`service: hue.hue_activate_scene

data:

scene_name: Soho

group_name: Gang 1e `

And ` service: scene.turn_on

target:

entity_id: scene.gang_1e_soho

`

They both don't seem to actually start the dynamic scene.

marcelveldt commented 2 years ago

scene.turn_on will call the scene in dynamic mode, it's hardcoded that way actually (and will be changed in a next release)

marcelveldt commented 2 years ago

Do remember that you will NOT see the play symbol actually in the Hue app. The only thing to notice if the dynamic scene is active is within the light itself it will show "dynamic". And, of course just looking at the lights for some time will also suffice to know if it's cycling through the colors :-)

dennisbrouwer91 commented 2 years ago

Okay, with scene_turn on it now seems to work. Thanks!