diff --git a/source/_integrations/lg_netcast.markdown b/source/_integrations/lg_netcast.markdown index 7d57d93555b..f23d0855f52 100644 --- a/source/_integrations/lg_netcast.markdown +++ b/source/_integrations/lg_netcast.markdown @@ -66,3 +66,17 @@ media_player: mac: AA-BB-CC-DD-EE-FF broadcast_address: 11.22.33.44 ``` + +## Change channel through play_media service + +The `play_media` service can be used in a script to switch to the specified TV channel. It selects the major channel number according to the `media_content_id` parameter: + +```yaml +# Example action entry in script to switch to channel number 15 +service: media_player.play_media +target: + entity_id: media_player.lg_tv +data: + media_content_id: 15 + media_content_type: channel +```