I have an automation to turn off my projector when my AV receiver turns off, however when the automation is triggered to power off the projector, it throws an the error:
Stopped because an error was encountered at May 14, 2025 at 2:23:55 PM (runtime: 1.63 seconds)
unavailable time
If this will also happen if I trigger the automation manually, but not as often.
I am able to power on and off the projector using the PJlink card as well as switch inputs.
The automation:
alias: Cinema off
description: When AV Receiver turn off, the projector will turn off
triggers:
- trigger: state
entity_id:
- media_player.basement
from: playing
to: "off"
for:
hours: 0
minutes: 0
seconds: 5
conditions: []
actions:
- action: media_player.turn_off
metadata: {}
data: {}
target:
entity_id:
- media_player.epsonprojector
continue_on_error: true
- choose:
- conditions:
- condition: state
entity_id: media_player.epsonprojector
state: "on"
for:
hours: 0
minutes: 0
seconds: 15
sequence:
- action: media_player.turn_off
metadata: {}
data: {}
target:
entity_id: media_player.epsonprojector
continue_on_error: true
mode: single