Lightbulbs change color as soon as i finish editing the scene

Trying to set up a scene to have warm light, everything seems to work fine, i set up the color in the scene, but as soon as i exit the lightbulb changes color to a cold light, testing the scene gives the same result

Using 2 lightbulbs flashed with Tasmota

These devices are also RGB, i think that may be causing the issue, seems like they go plain white color instead of setting the light to warm

  • id: ‘1586866828446’
    name: Luci calde
    entities:
    light.enklen:
    brightness: 255
    color_temp: 500
    effect: ‘0’
    effect_list:
    - ‘0’
    - ‘1’
    - ‘2’
    - ‘3’
    - ‘4’
    friendly_name: Comodino SX
    hs_color:
    - 0
    - 0
    max_mireds: 500
    min_mireds: 153
    rgb_color:
    - 255
    - 255
    - 255
    state: ‘on’
    supported_features: 23
    xy_color:
    - 0.323
    - 0.329
    light.enklen_2:
    brightness: 255
    color_temp: 500
    effect: ‘0’
    effect_list:
    - ‘0’
    - ‘1’
    - ‘2’
    - ‘3’
    - ‘4’
    friendly_name: Comodino DX
    hs_color:
    - 0
    - 0
    max_mireds: 500
    min_mireds: 153
    rgb_color:
    - 255
    - 255
    - 255
    state: ‘on’
    supported_features: 23
    xy_color:
    - 0.323
    - 0.329
    light.led:
    brightness: 255
    effect: ‘0’
    effect_list:
    - ‘0’
    - ‘1’
    - ‘2’
    - ‘3’
    - ‘4’
    friendly_name: LED
    hs_color:
    - 29.838
    - 72.549
    rgb_color:
    - 255
    - 162
    - 70
    state: ‘on’
    supported_features: 21
    xy_color:
    - 0.543
    - 0.393

Lets look at the supported features of your lights.

Reference Code for light

# Bitfield of features supported by the light entity
SUPPORT_BRIGHTNESS = 1
SUPPORT_COLOR_TEMP = 2
SUPPORT_EFFECT = 4
SUPPORT_FLASH = 8
SUPPORT_COLOR = 16
SUPPORT_TRANSITION = 32
SUPPORT_WHITE_VALUE = 128

Comodino SX - supported features: 23 (‭00010111‬)
Comodino DX - supported features: 23 (‭00010111‬)
LED - supported_features: 21 (‭00010101‬)

As we can see, your 2 comodino lights support the following features:

brightness, color_temp, effect, color.

Your LED light supports:

brightness, effect, color

So your LED doesn’t support color_temp. Any calls to change color_temp will be ignored.

I’m guessing you’re talking about the other 2 lights?

What does your scene look like?

You cannot define both rgb_color and color_temp in the same light.turn_on call as both of them try to set a color. Are you setting both?