Announcement

Collapse
No announcement yet.

TV IP Control possibillity or Do we need IR?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    There's also a plug-in that will do the networking for you.
    https://forums.homeseer.com/showthread.php?t=169754

    I use this to talk to my Sony Bravia.

    Comment


      #17
      Originally posted by brientim; <tcxspan title="Call 1307400 with 3CX Web Client" onclick="window.open('http://192.168.0.5:5000/webclient/#/call?phone=1307400','_blank');">1307400</tcxspan>
      Also have a look at Media Controller plugin. This provide DLNA compatibility which should be able to control compatible IP TVs
      Hi mate. Thanks for this. It seems to work for the Media controller, (created device) but does not create the Remote Controller for the TV.

      Code:
      UPnP Device Viewer uuid:4D454930-0200-1000-8001-CC7EE7D5D426
      
      Alive = True
      Friendly Name = VIERA ST50 Series
      Device UDN = uuid:4D454930-0200-1000-8001-CC7EE7D5D426
      IP Address = 192.168.0.207
      IP Port = 55000
      Location = http://192.168.0.207:55000/nrc/ddd.xml
      Device Type = urn:panasonic-com:device:p00RemoteController:1
      Application URL = 
      Has Children = False
      ManufacturerName = Panasonic
      Model Number = 
      
      Has Services = 1
      Service ID = urn:upnp-org:serviceId:p00NetworkControl
            Service Type Identifier = urn:panasonic-com:service:p00NetworkControl:1
            Service LastTransportStatus = 0
            Service Type = urn:panasonic-com:service:p00NetworkControl:1
            Service URL = http://192.168.0.207:55000/nrc/sdd_0.xml
            Service Control URL = http://192.168.0.207:55000/nrc/control_0
            Service Event URL = http://192.168.0.207:55000/nrc/event_0
      Attached Files

      Comment


        #18
        Originally posted by andyf View Post
        There's also a plug-in that will do the networking for you.
        https://forums.homeseer.com/showthread.php?t=169754

        I use this to talk to my Sony Bravia.
        Thanks Andy. Unfortunately that one does not handle SOAP requests which are used by the Pana.

        Comment


          #19
          Originally posted by macrho View Post
          I have a Panasonic TC-65AX800U and am able to turn it on via WOL sent via BLLAN.

          I found a project on GitHub for Control Panasonic Viera TVs using C#
          I then saw some talk over on iRule.
          I grabbed the Advanced REST client on the Chrome web store

          In the Chrome Advanced REST client, I did the following:

          Set up the URL as: http://192.168.1.10:55000/nrc/control_0/ with POST as the method

          Then set the header:
          Code:
          Accept: text/xml
          Cache-Control: no-cache
          Pragma: no-cache
          SOAPACTION: "urn:panasonic-com:service:p00NetworkControl:1#X_SendKey"
          Content-Length: 324
          Content-Type: text/xml;charset="utf-8
          then set the payload:

          Code:
          <?xml version="1.0" encoding="utf-8"?>
          <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
          <s:Body>
          <u:X_SendKey xmlns:u="urn:panasonic-com:service:p00NetworkControl:1">
          <X_KeyEvent>NRC_POWER-ONOFF</X_KeyEvent>
          </u:X_SendKey>
          </s:Body>
          </s:Envelope>
          When I hit send, my TV shuts off.
          The GitHub project referenced above lists all of the commands that you can send.

          So, IP control is possible.

          Now to find out how I can wire this up in HS3


          NOTE: I had to turn two settings on for this to work.. In the menu for the tv, navigate to network and then TV Remote App settings and turn both TV Remote and Wake on LAN ON
          I'm trying this with TH-55FX650_Series Viera, and it gives me below error. Tried valious NRC_XXX-ONOFF commands, all with same result.

          The TV works with the Panasonic remote app on Android, I'm also able to control the TV using the Mediaplayer plugin (mostly volume controls & power off only work, player does not)

          Code:
          <?xml version="1.0" encoding="utf-8"?>
          <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
           <s:Body>
            <s:Fault>
             <faultcode>s:Client</faultcode>
             <faultstring>UPnPError</faultstring>
             <detail>
              <UPnPError xmlns="urn:schemas-upnp-org:control-1-0">
               <errorCode>401</errorCode>
               <errorDescription>Invalid action</errorDescription>
              </UPnPError>
             </detail>
            </s:Fault>
           </s:Body>
          </s:Envelope>
          Any help in the right direction will be really appreciated.

          Comment

          Working...
          X