LG webOS Smart TV
The webostv
platform allows you to control a LG
There is currently support for the following device types within Home Assistant:
To begin with enable LG Connect Apps feature in Network settings of the TV.
Configuration
To add the LG webOS Smart TV integration to your Home Assistant instance, use this My button:
LG webOS Smart TV can be auto-discovered by Home Assistant. If an instance was found, it will be shown as Discovered. You can then set it up right away.
Manual configuration steps
If it wasn’t discovered automatically, don’t worry! You can set up a manual integration entry:
-
Browse to your Home Assistant instance.
-
In the bottom right corner, select the
Add Integration button. -
From the list, select LG webOS Smart TV.
-
Follow the instructions on screen to complete the setup.
Turn on action
Home Assistant is able to turn on an LG webOS Smart TV if you specify an action, provided by an integrationIntegrations connect and integrate Home Assistant with your devices, services, and more. [Learn more] like HDMI-CEC or WakeOnLan.
Common for webOS 3.0 and higher would be to use WakeOnLan feature. To use this feature your TV should be connected to your network via Ethernet rather than Wireless and you should enable the LG Connect Apps feature in Network settings of the TV (or Mobile App in General settings for older models) (*may vary by version).
On newer models (2017+), WakeOnLan may need to be enabled in the TV settings by going to Settings > General > Mobile TV On > Turn On Via WiFi instructions
This usually only works if the TV is connected to the same network. Routing the WakeOnLan packet to a different subnet requires special configuration on your router or may not be possible.
You can create an automation from the user interface, from the device create a new automation and select the Device is requested to turn on automation. Automations can also be created using an automation action:
# Example configuration.yaml entry
wake_on_lan: # enables `wake_on_lan` integration
automation:
- alias: "Turn On Living Room TV with WakeOnLan"
triggers:
- trigger: webostv.turn_on
entity_id: media_player.lg_webos_smart_tv
actions:
- action: wake_on_lan.send_magic_packet
data:
mac: aa:bb:cc:dd:ee:ff
Any other actions to power on the device can be configured.
Sources
It is possible to select which sources will be available to the media player. When the TV is powered on press the CONFIGURE button in the integrationIntegrations connect and integrate Home Assistant with your devices, services, and more. [Learn more] card and select the sources to enable. If you don’t select any source the media player will offer all of the sources of the TV.
Change channel through play_media action
The play_media
action can be used in a script to switch to the specified TV channel. It selects the best matching channel according to the media_content_id
parameter:
- Channel number (i.e., ‘1’ or ‘6’)
- Exact channel name (i.e., ‘France 2’ or ‘CNN’)
- Substring in channel name (i.e., ‘BFM’ in ‘BFM TV’)
# Example action entry in script to switch to channel number 1
action: media_player.play_media
target:
entity_id: media_player.lg_webos_smart_tv
data:
media_content_id: 1
media_content_type: "channel"
# Example action entry in script to switch to channel including 'TF1' in its name
action: media_player.play_media
target:
entity_id: media_player.lg_webos_smart_tv
data:
media_content_id: "TF1"
media_content_type: "channel"
Next/Previous buttons
The behavior of the next and previous buttons is different depending on the active source:
- if the source is ‘LiveTV’ (television): next/previous buttons act as channel up/down
- otherwise: next/previous buttons act as next/previous track
Sound output
The current sound output of the TV can be found under the state attributes. To change the sound output, the following action is available:
Action webostv.select_sound_output
Data attribute | Optional | Description |
---|---|---|
entity_id |
no | Target a specific webostv media player. |
sound_output |
no | Name of the sound output to switch to. |
Generic commands and buttons
Available actions: button
, command
Action webostv.button
Data attribute | Optional | Description |
---|---|---|
entity_id |
no | Target a specific webostv media player. |
button |
no | Name of the button. Known possible values are LEFT , RIGHT , DOWN , UP , HOME , MENU , BACK , ENTER , DASH , INFO , ASTERISK , CC , EXIT , MUTE , RED , GREEN , BLUE , YELLOW , VOLUMEUP , VOLUMEDOWN , CHANNELUP , CHANNELDOWN , PLAY , PAUSE , NETFLIX , GUIDE , AMAZON , 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9
|
Action webostv.command
Data attribute | Optional | Description |
---|---|---|
entity_id |
no | Target a specific webostv media player. |
command |
no | Endpoint for the command, e.g., system.launcher/open . The full list of known endpoints is available at https://github.com/bendavid/aiopylgtv/blob/master/aiopylgtv/endpoints.py |
payload |
yes | An optional payload to provide to the endpoint in the format of key value pair(s). |
Example
script:
home_button:
sequence:
- action: webostv.button
target:
entity_id: media_player.lg_webos_smart_tv
data:
button: "HOME"
open_google_command:
sequence:
- action: webostv.command
target:
entity_id: media_player.lg_webos_smart_tv
data:
command: "system.launcher/open"
payload:
target: https://www.google.com
Notifications
The webostv
notify platform allows you to send notifications to a LG webOS Smart TV.
The icon can be overridden for individual notifications by providing a path to an alternative icon image to use:
automation:
- alias: "Front door motion"
triggers:
- trigger: state
entity_id: binary_sensor.front_door_motion
to: "on"
actions:
- action: notify.livingroom_tv
data:
message: "Movement detected: Front Door"
data:
icon: "/home/homeassistant/images/doorbell.png"
Notes
If Home Assistant and your TV are not on the same network, you need to create a firewall rule, which allows a connection on ports 3000 & 3001 with the TCP protocol from Home Assistant to your TV.