How I can change the color temperature

Hello,
Sorry about my English, I am French.

I want change my color temperature for my PHILIPS ZHIRUI DOWNLIGHT.

The code doesn’t work, why ?

- id: '1577655937976'
  alias: mont
  trigger:
  - entity_id: input_boolean.notify_home
    from: 'off'
    platform: state
    to: 'on'
  condition: []
  action:
  - data:
      brightness: 20
      entity_id: light.spot_2
      color_temperature: 300
    service: light.turn_on

Tanks.

It looks like the colour temperature range specification is 3000 - 5700K.

color_temperature isn’t a valid option for the light.turn_on service. Should be color_temp.

Also @tom_l that option is in mireds, not Kelvin. That’s why the number is so low. It throws me off too since I’m also used to Kelvin and don’t use mireds.

3 Likes

It’s working with color_temp.

Thanks you Tediore :slight_smile: :grinning:

Yeah I keep forgetting that change. So used to photography and K.

1 Like