I recently set up an automation to turn on two LIFX rgb wifi bulbs to a specified colour. I.e. like this:
...
action:
- service: light.turn_on
data:
transition: 2
rgb_color: [255, 208, 171]
brightness_pct: 50
target:
entity_id: light.tv_lamps
...
The automation works as designed - except that the colour is significantly different to that when setting the same rgb values with the standard light pop-up (sorry - I don’t know what this is called) that displays when clicking on same light helper in the Entities Card. BTW this light helper is set to a group of 2 bulbs (tv_lamps).
The automation above sets the bulbs to a very warm / almost orange colour. The light pop-up, when clicking on a preset colour with the same rgb values, sets the bulbs to an off-white colour.
Does anyone have an idea why the same rgb values give different colours?
Thanks,
Justin.