Here’s a simple template light that defines rgb_template
(Template Light - Home Assistant) statically for testing purposes. I expected that rgb_template
would dictate the color of the light in the frontend. However, the light is only default yellow. Shouldn’t it be blue as per the template?
light:
- platform: template
lights:
scene_light_entry_unsecured:
friendly_name: Scene Light - Entry Unsecured
unique_id: scene_light_entry_unsecured
rgb_template: "{{ [0, 0, 255] }}" # Blue
turn_on:
- service: light.turn_on
target:
entity_id: light.scene_lights
turn_off:
- service: light.turn_off
target:
entity_id: light.scene_lights