Light can be controlled, but fails to follow scene

The bulb in question is a zigbee controlled filament bulb from Lidl. I have added it using Phoscon/deconz.

I can switch and dim the bulb while creating a scene, but as soon as i store the scene and try to recall it the bulb doesnt respond. It does create a log:

Logger: homeassistant.components.light.reproduce_state
Source: components/light/reproduce_state.py:162
Integration: Licht (documentation, issues)
First occurred: 21:37:45 (1 occurrences)
Last logged: 21:37:45

Color mode color_temp specified but attribute color_temp missing for: light.dimmable_light_9

Seems like quite a clear message, but i dont now where to make any changes.

Share the yaml generated for your scene.

For some reason i can’t copy text from the file editor on my iphone, so i made a screenshot.

The yaml of the scene is:

Try:

      supported_color_modes:
      - color_temp
      color_mode: color_temp

This is my scene using a Lidl light. I’m using zigbee2mqtt.

- id: '1695968075897'
  name: filament werkkamer
  entities:
    light.hobbykamer_filament_light:
      min_color_temp_kelvin: 2000
      max_color_temp_kelvin: 3500
      min_mireds: 285
      max_mireds: 500
      supported_color_modes:
      - color_temp
      color_mode: color_temp
      brightness: 255
      color_temp_kelvin: 3500
      color_temp: 285
      hs_color:
      - 27.173
      - 44.774
      rgb_color:
      - 255
      - 192
      - 140
      xy_color:
      - 0.455
      - 0.374
      icon: mdi:lightbulb-variant-outline
      friendly_name: Hobbykamer filament light
      supported_features: 40
      state: 'on'
  metadata: {}
- id: '1695968103127'
  name: filament werkkamer warm
  entities:
    light.hobbykamer_filament_light:
      min_color_temp_kelvin: 2000
      max_color_temp_kelvin: 3500
      min_mireds: 285
      max_mireds: 500
      supported_color_modes:
      - color_temp
      color_mode: color_temp
      brightness: 255
      color_temp_kelvin: 2000
      color_temp: 500
      hs_color:
      - 30.601
      - 94.547
      rgb_color:
      - 255
      - 136
      - 13
      xy_color:
      - 0.599
      - 0.382
      icon: mdi:lightbulb-variant-outline
      friendly_name: Hobbykamer filament light
      supported_features: 40
      state: 'on'
  metadata: {}

[EDIT: now used a LIDL Filament light instead a normal LIDL light]

I finally found that the solution was quite simple.

I just changed the “supported_color_modes” to “brightness” and fully removed “color_mode”.
I tried this before, but then i found that you can reloud the scenes.yaml in the developer tools.
That made the different.

Leaving it here for others with the same problem.