LG WebOs Smart Tv Integration - Multiple Tvs

Hi
I’m trying to figure out how to use multiple TVs and probably using the code incorrectly.

Please help me to figure out what should be changed.
as long as it only one tv, it works perfectly and compiling. but when using two \ more TVs it doesn’t.

webostv:

  -name: Main RoomTv

  host: 192.168.0.119

  #other settings

  turn_on_action:

    service: wake_on_lan.send_magic_packet

    data:

      mac: "58-FD-B1-44-89-9S"

      broadcast_address: 192.168.0.119

    -name: Room1Tv

    host: 192.168.0.111

    #other settings

    turn_on_action:

      service: wake_on_lan.send_magic_packet

      data:

        mac: "58-FD-B1-57-55-9S"

        broadcast_address: 192.168.0.111

media_player:

notify:

Thanks

I currently integrate 4 LG WebOS TVs. Try this configuration below-

webostv:
  - name: Main Room TV
    host: 192.168.0.119
    turn_on_action:
     service: wake_on_lan.send_magic_packet
     data:
       mac: 58-FD-B1-44-89-9S
  - name: Room 1 TV
    host: 192.168.0.111
    turn_on_action:
     service: wake_on_lan.send_magic_packet
     data:
       mac: 58-FD-B1-57-55-9S

Also, add this-

wake_on_lan:

Note:

  1. Make your TV IP address static (either through DHCP reservation / manually using TV setting)
  2. Make sure the indentation is correct

Thanks!
I’ll try that.

By the way, can I set Static IP manually using the TV settings when using Wireless connection?

Yes, I think you can. Make note of your current router’s DHCP server IP range. Then, insert a static IP address outside of the DHCP server IP range.

Please note that if you are using wireless connection, Wake On Lan may / may not work.

1 Like