LG Web OS TV - Multiple TV Config

Hey, Team -

First. Thank you for taking the time to read this. I have 2 new(ish) LG TVs, and I’m finding it rather difficult to set them up.

I don’t believe the documentation is accurate. As based on LG webOS Multiple TV configuration, this wasn’t working.

Has this been addressed? If not, can we update documentation? If it is, my Configuration YAML is below:

webostv:
  host: "IP"
  name: "Bedroom LG TV"
  turn_on_action:
      service: wake_on_lan.send_magic_packet
      data:
        mac: "MAC"
        broadcast_address: "BROADCAST"
  host: "IP"
  name: "Living Room LG TV"
  turn_on_action:
      service: wake_on_lan.send_magic_packet
      data:
        mac: "MAC"
        broadcast_address: "BROADCAST"
  customize:
    sources:
      - "HDMI 1"
      - "HDMI 2"
      - "HDMI 3"
      - "HDMI 4"
      - youtube
      - netflix

Note. Wake on WAN is higher on the file. Currently, Living Room only works. If I change the order of where they are, the other works.

Tried with - ??


webostv:
  -host: !secret living_room_tv_ip
    name: Living Room TV
    turn_on_action:
      service: wake_on_lan.send_magic_packet
      data:
        mac: !secret living_room_tv_mac
  -host: !secret bedroom_tv_ip
    name: Bedroom TV
    turn_on_action:
      service: wake_on_lan.send_magic_packet
      data:
        mac: !secret bedroom_tv_mac

1 Like

That worked flawlessly. We should update documentation to reflect this. I only had to ensure there was no space behind - . Restart and everything is working.

Thank you @aceindy!