I’m trying to set it up so when I turn on the TV, the stereo also turns on.
The automation works and looks like this:
- alias: 'Chester on'
trigger:
platform: state
entity_id: media_player.chester
from: 'off'
to: 'on'
action:
- service: switch.turn_on
entity_id: switch.stereo
However, it will randomly change its state to on and then off, but the screen remains off. I’m guessing it’s some weird standby thing? I even tried to set up a binary ping sensor to test, but of course that one shows the same behavior.
I have turned off the automatic update feature on the TV to make sure that’s not interfering.
But I’m kind of running out of ideas
Has anyone else experienced this and maybe found a solution?