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
This commit is contained in:
Mateusz Wójcik 2023-07-17 17:41:36 +02:00 committed by GitHub
parent f7d60d293a
commit d27ed948cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
```