I am trying to automate my lights dimming when I turn on the TV…
So I put this automation together:
- id: '1234567890123'
alias: TV Dim Living Room Lights
trigger:
- entity_id: binary_sensor.livingroomtv
from: 'off'
platform: state
to: 'on'
condition:
- condition: state
entity_id: light.living_room
state: 'on'
action:
- data_template:
brightness: '{{ state_attr(''light.living_room'', ''brightness'') / 2 }}'
entity_id: light.living_room
service: light.turn_on
But the brightness is not being set… any ideas?
Thanks