I have some weird behaviour that I am hoping someone can help me with. I have a zigbee wall switch and 6 x RGBW GU10 bulbs. There are also 3 x Govee LED strips that are part of the scene but are not part of the problem.
When the first switch of the Zigbee switch is in the on position, it triggers an automation that calls a scene called cinema_blue. This scene should set all six GU10 bulbs to blue. When the switch is turned on all the lights go blue, but then all go white. I don’t understand what is making them do this extra step as there is nothing anywhere that can make this happen as far as I can see.
Here is the automation:
- id: ‘1646602942853’
alias: Cinema blue
description: ‘’
trigger:- platform: device
type: turned_on
device_id: 84834405c93ac9cb543c28a995a9f27a
entity_id: switch.cinema_switch_switch_1
domain: switch
condition: []
action: - scene: scene.cinema_blue
mode: single
- platform: device
Here is the scene:
- id: ‘1645826909547’
name: sc_cinema_blue
entities:
light.legoshelves:
min_mireds: 111
max_mireds: 500
supported_color_modes:
- color_temp
- hs
color_mode: hs
brightness: 255
hs_color:
- 240
- 100
rgb_color:
- 0
- 0
- 255
xy_color:
- 0.136
- 0.04
entity_id:
- light.lego_shelf_top
- light.lego_shelf_middle
- light.lego_shelf_bottom
icon: mdi:lightbulb-group
friendly_name: LegoShelves
supported_features: 0
state: ‘on’
light.cinema:
min_mireds: 153
max_mireds: 500
supported_color_modes:
- brightness
- color_temp
- hs
- onoff
color_mode: hs
brightness: 255
hs_color:
- 240
- 100
rgb_color:
- 0
- 0
- 255
xy_color:
- 0.136
- 0.04
entity_id:
- light.cinema1
- light.cinema2
- light.cinema3
- light.cinema4
- light.cinema5
- light.cinema6
icon: mdi:lightbulb-group
friendly_name: Cinema
supported_features: 0
state: ‘on’