brakaab
(brakaab)
December 30, 2019, 9:42am
1
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.
tom_l
December 30, 2019, 10:01am
2
It looks like the colour temperature range specification is 3000 - 5700K.
Tediore
December 30, 2019, 1:42pm
3
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
brakaab
(brakaab)
December 30, 2019, 3:28pm
4
It’s working with color_temp.
Thanks you Tediore
tom_l
December 30, 2019, 4:49pm
5
Yeah I keep forgetting that change. So used to photography and K.
1 Like