From d27ed948cfd0422caf717b3e8d52c542b33ee015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20W=C3=B3jcik?= Date: Mon, 17 Jul 2023 17:41:36 +0200 Subject: [PATCH] Target of remote.send_command should be remote (#28215) If the media_player entity was provided there was an error: ``` [homeassistant.helpers.service] Unable to find referenced entities media_player.sony_tv or it is/they are currently not available ``` It turns out that the remote entity needs to be provided here --- source/_integrations/braviatv.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/braviatv.markdown b/source/_integrations/braviatv.markdown index 7ec2b1107c4..b57e18efa82 100644 --- a/source/_integrations/braviatv.markdown +++ b/source/_integrations/braviatv.markdown @@ -128,7 +128,7 @@ The commands that can be sent to the TV depends on the model of your TV. To disp ```yaml service: remote.send_command target: - entity_id: media_player.bravia_tv + entity_id: remote.bravia_tv data: command: "Down" ```