Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Wunsch: Adapter für Panasonic Viera Smart TV Steuerung

NEWS

  • Neuer ioBroker-Blog online: Monatsrückblick März/April 2026
    BluefoxB
    Bluefox
    5
    1
    112

  • Verwendung von KI bitte immer deutlich kennzeichnen
    HomoranH
    Homoran
    8
    1
    154

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    865

Wunsch: Adapter für Panasonic Viera Smart TV Steuerung

Scheduled Pinned Locked Moved ioBroker Allgemein
175 Posts 47 Posters 40.3k Views 17 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Adrian-01

    Hallo zusammen,

    ich habe versucht mittelst dem Python Skript den pin Code zu bekommen, allerdings scheitert es leider schon nach der Installation von Panasonic-Viera.
    Da komme ich leider nicht mehr weiter welche Befehle sollten dann in der Commandozeile ausgeführt werden ?

    Kann mir hier jemand weiterhelfen ?

    VumerV Offline
    VumerV Offline
    Vumer
    wrote on last edited by
    #147

    @adrian-01

    Hast du so versucht?
    https://forum.iobroker.net/topic/3501/wunsch-adapter-für-panasonic-viera-smart-tv-steuerung/132

    A 1 Reply Last reply
    0
    • VumerV Vumer

      @adrian-01

      Hast du so versucht?
      https://forum.iobroker.net/topic/3501/wunsch-adapter-für-panasonic-viera-smart-tv-steuerung/132

      A Offline
      A Offline
      Adrian-01
      wrote on last edited by
      #148

      @vumer

      Ja, bzw. Was genau muss ich ab dem Punkt „und los gehts“ tun ?

      Gruß

      VumerV 1 Reply Last reply
      0
      • A Adrian-01

        @vumer

        Ja, bzw. Was genau muss ich ab dem Punkt „und los gehts“ tun ?

        Gruß

        VumerV Offline
        VumerV Offline
        Vumer
        wrote on last edited by Vumer
        #149

        @adrian-01

        python
        
        root@viera:~# 
        root@viera:~# python
        
        
        A 1 Reply Last reply
        0
        • VumerV Vumer

          @adrian-01

          python
          
          root@viera:~# 
          root@viera:~# python
          
          
          A Offline
          A Offline
          Adrian-01
          wrote on last edited by
          #150

          @vumer

          das sieht schon mal besser aus :)
          Aber ich bekomme leider nach der Anfrage rc.request_pin_code() folgende Fehlermeldung:

          Traceback (most recent call last):
            File "<stdin>", line 1, in <module>
            File "/panasonic-viera/panasonic_viera/__init__.py", line 346, in request_pin_code
              raise e # Pass to the next handler
            File "/panasonic-viera/panasonic_viera/__init__.py", line 338, in request_pin_code
              res = self.soap_request(URL_CONTROL_NRC, URN_REMOTE_CONTROL, 'X_DisplayPinCode', params, body_elem="u")
            File "/panasonic-viera/panasonic_viera/__init__.py", line 258, in soap_request
              raise e # Pass to the next handler
            File "/panasonic-viera/panasonic_viera/__init__.py", line 254, in soap_request
              res = urlopen(req, timeout=5).read()
            File "/usr/lib/python3.9/urllib/request.py", line 214, in urlopen
              return opener.open(url, data, timeout)
            File "/usr/lib/python3.9/urllib/request.py", line 523, in open
              response = meth(req, response)
            File "/usr/lib/python3.9/urllib/request.py", line 632, in http_response
              response = self.parent.error(
            File "/usr/lib/python3.9/urllib/request.py", line 561, in error
              return self._call_chain(*args)
            File "/usr/lib/python3.9/urllib/request.py", line 494, in _call_chain
              result = func(*args)
            File "/usr/lib/python3.9/urllib/request.py", line 641, in http_error_default
              raise HTTPError(req.full_url, code, msg, hdrs, fp)
          urllib.error.HTTPError: HTTP Error 403: Forbidden
          

          woran könnte das liegen?

          VumerV 1 Reply Last reply
          0
          • A Adrian-01

            @vumer

            das sieht schon mal besser aus :)
            Aber ich bekomme leider nach der Anfrage rc.request_pin_code() folgende Fehlermeldung:

            Traceback (most recent call last):
              File "<stdin>", line 1, in <module>
              File "/panasonic-viera/panasonic_viera/__init__.py", line 346, in request_pin_code
                raise e # Pass to the next handler
              File "/panasonic-viera/panasonic_viera/__init__.py", line 338, in request_pin_code
                res = self.soap_request(URL_CONTROL_NRC, URN_REMOTE_CONTROL, 'X_DisplayPinCode', params, body_elem="u")
              File "/panasonic-viera/panasonic_viera/__init__.py", line 258, in soap_request
                raise e # Pass to the next handler
              File "/panasonic-viera/panasonic_viera/__init__.py", line 254, in soap_request
                res = urlopen(req, timeout=5).read()
              File "/usr/lib/python3.9/urllib/request.py", line 214, in urlopen
                return opener.open(url, data, timeout)
              File "/usr/lib/python3.9/urllib/request.py", line 523, in open
                response = meth(req, response)
              File "/usr/lib/python3.9/urllib/request.py", line 632, in http_response
                response = self.parent.error(
              File "/usr/lib/python3.9/urllib/request.py", line 561, in error
                return self._call_chain(*args)
              File "/usr/lib/python3.9/urllib/request.py", line 494, in _call_chain
                result = func(*args)
              File "/usr/lib/python3.9/urllib/request.py", line 641, in http_error_default
                raise HTTPError(req.full_url, code, msg, hdrs, fp)
            urllib.error.HTTPError: HTTP Error 403: Forbidden
            

            woran könnte das liegen?

            VumerV Offline
            VumerV Offline
            Vumer
            wrote on last edited by Vumer
            #151

            @adrian-01
            was sagt

            python --version
            

            ?

            A 1 Reply Last reply
            0
            • VumerV Vumer

              @adrian-01
              was sagt

              python --version
              

              ?

              A Offline
              A Offline
              Adrian-01
              wrote on last edited by
              #152

              @vumer said in Wunsch: Adapter für Panasonic Viera Smart TV Steuerung:

              python --version

              Hallo Vumer,

              sorry für die späte Rückmeldung Version 3.9.2.
              Habe es eben nochmal versucht, leider noch der gleiche Fehler.

              Gruß,

              VumerV 1 Reply Last reply
              0
              • A Adrian-01

                @vumer said in Wunsch: Adapter für Panasonic Viera Smart TV Steuerung:

                python --version

                Hallo Vumer,

                sorry für die späte Rückmeldung Version 3.9.2.
                Habe es eben nochmal versucht, leider noch der gleiche Fehler.

                Gruß,

                VumerV Offline
                VumerV Offline
                Vumer
                wrote on last edited by
                #153

                @adrian-01
                welches Modell hast du?
                Musst du in der Remote App eine PIN eintragen die auf dem Fernseher erscheint wenn du dich das erste mal verbinden möchtest?

                A 1 Reply Last reply
                0
                • VumerV Vumer

                  @adrian-01
                  welches Modell hast du?
                  Musst du in der Remote App eine PIN eintragen die auf dem Fernseher erscheint wenn du dich das erste mal verbinden möchtest?

                  A Offline
                  A Offline
                  Adrian-01
                  wrote on last edited by
                  #154

                  @vumer

                  Ja ich musste in der Remote App einen Pin eintragen, der ist auf dem TV erschienen.
                  Ich habe das Model der Serie 55HX900 der TV ist aufjedenfall mit allen KNX Schnittstellen kompatibel, darauf hatte ich beim Kauf geachtet.

                  VumerV 1 Reply Last reply
                  0
                  • A Adrian-01

                    @vumer

                    Ja ich musste in der Remote App einen Pin eintragen, der ist auf dem TV erschienen.
                    Ich habe das Model der Serie 55HX900 der TV ist aufjedenfall mit allen KNX Schnittstellen kompatibel, darauf hatte ich beim Kauf geachtet.

                    VumerV Offline
                    VumerV Offline
                    Vumer
                    wrote on last edited by
                    #155

                    @adrian-01 sagte in Wunsch: Adapter für Panasonic Viera Smart TV Steuerung:

                    HX

                    Die HX Serie ist neuer als meiner. Vielleicht hat Panasonic wieder was geändert? Leider weiß ich auch nicht weiter.

                    A 1 Reply Last reply
                    0
                    • VumerV Vumer

                      @adrian-01 sagte in Wunsch: Adapter für Panasonic Viera Smart TV Steuerung:

                      HX

                      Die HX Serie ist neuer als meiner. Vielleicht hat Panasonic wieder was geändert? Leider weiß ich auch nicht weiter.

                      A Offline
                      A Offline
                      Adrian-01
                      wrote on last edited by
                      #156

                      @vumer

                      Ohje....
                      Naja dann halt wohl doch dauerhaft über das KNX Gateway von ISE.
                      Komischerweise braucht das aber keinen Code.... :)

                      1 Reply Last reply
                      0
                      • A Offline
                        A Offline
                        Adrian-01
                        wrote on last edited by
                        #157

                        Habs jetzt zwar hinbekommen aber leider sehe ich nicht ob der TV an ist und schalten lässt er sich auch nicht :(

                        1 Reply Last reply
                        0
                        • A Offline
                          A Offline
                          Adrian-01
                          wrote on last edited by
                          #158

                          Habe gerade mal geschaut, im LOG steht:

                          2021-11-03 21:44:49.371 - error: panasonic-viera.0 (5414) Error: ping.probe: there was an error while executing the ping program. . Check the path or permissions...

                          habe nochmals den Prozess durchgemacht mit Encryption Key etc.

                          1 Reply Last reply
                          0
                          • T thomke67

                            Immer noch das gleich Verhalten. Ich habe nun 2.0 installiert, aber sobald ich die Lautstärke ändere, steigt die Instanz aus....

                            host.raspberrypi	2021-10-11 21:30:54.936	error	instance system.adapter.panasonic-viera.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
                            panasonic-viera.0	2021-10-11 21:30:54.209	warn	Terminated (UNCAUGHT_EXCEPTION): Without reason
                            panasonic-viera.0	2021-10-11 21:30:54.208	info	terminating
                            panasonic-viera.0	2021-10-11 21:30:53.695	error	callback is not a function
                            panasonic-viera.0	2021-10-11 21:30:53.694	error	TypeError: callback is not a function at IncomingMessage.<anonymous> (/opt/iobroker/node_modules/iobroker.panasonic-viera/lib/viera.js:93:17) at IncomingMessage.emit (node:events:402:35) at endReadableNT (node:internal/streams/readable:1343:12) at processTicksAndRejections (node:internal/process/task_queues:83:21)
                            panasonic-viera.0	2021-10-11 21:30:53.692	error	uncaught exception: callback is not a function
                            

                            ccc25bf3-1673-4ffd-8fcd-1bf3ffe05b64-grafik.png

                            C Offline
                            C Offline
                            coto
                            wrote on last edited by
                            #159

                            @thomke67 Hi, hast du hierfür schon eine Lösung gefunden. Kämpfe mit dem gleichen Problem.

                            T 1 Reply Last reply
                            0
                            • T thomke67

                              Immer noch das gleich Verhalten. Ich habe nun 2.0 installiert, aber sobald ich die Lautstärke ändere, steigt die Instanz aus....

                              host.raspberrypi	2021-10-11 21:30:54.936	error	instance system.adapter.panasonic-viera.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
                              panasonic-viera.0	2021-10-11 21:30:54.209	warn	Terminated (UNCAUGHT_EXCEPTION): Without reason
                              panasonic-viera.0	2021-10-11 21:30:54.208	info	terminating
                              panasonic-viera.0	2021-10-11 21:30:53.695	error	callback is not a function
                              panasonic-viera.0	2021-10-11 21:30:53.694	error	TypeError: callback is not a function at IncomingMessage.<anonymous> (/opt/iobroker/node_modules/iobroker.panasonic-viera/lib/viera.js:93:17) at IncomingMessage.emit (node:events:402:35) at endReadableNT (node:internal/streams/readable:1343:12) at processTicksAndRejections (node:internal/process/task_queues:83:21)
                              panasonic-viera.0	2021-10-11 21:30:53.692	error	uncaught exception: callback is not a function
                              

                              ccc25bf3-1673-4ffd-8fcd-1bf3ffe05b64-grafik.png

                              C Offline
                              C Offline
                              coto
                              wrote on last edited by
                              #160

                              @thomke67 sagte in Wunsch: Adapter für Panasonic Viera Smart TV Steuerung:

                              Immer noch das gleich Verhalten. Ich habe nun 2.0 installiert, aber sobald ich die Lautstärke ändere, steigt die Instanz aus....

                              1 Reply Last reply
                              0
                              • C coto

                                @thomke67 Hi, hast du hierfür schon eine Lösung gefunden. Kämpfe mit dem gleichen Problem.

                                T Offline
                                T Offline
                                thomke67
                                wrote on last edited by
                                #161

                                @coto, leider nein. Immer noch das gleiche Verhalten. Auch keinerlei Antwort vom Entwickler...

                                Gruß,
                                Thomas

                                C 1 Reply Last reply
                                0
                                • T thomke67

                                  @coto, leider nein. Immer noch das gleiche Verhalten. Auch keinerlei Antwort vom Entwickler...

                                  C Offline
                                  C Offline
                                  coto
                                  wrote on last edited by
                                  #162

                                  @thomke67 kannst du mal per SSH nachinstallieren

                                  npm install node-panasonic-viera
                                  

                                  https://www.npmjs.com/package/node-panasonic-viera

                                  Seitdem ich das Paket installiert habe, läuft meine Instanz ohne Ausfälle. Vielleicht hilft es bei dir auch.

                                  J T 2 Replies Last reply
                                  0
                                  • C coto

                                    @thomke67 kannst du mal per SSH nachinstallieren

                                    npm install node-panasonic-viera
                                    

                                    https://www.npmjs.com/package/node-panasonic-viera

                                    Seitdem ich das Paket installiert habe, läuft meine Instanz ohne Ausfälle. Vielleicht hilft es bei dir auch.

                                    J Offline
                                    J Offline
                                    jack99n
                                    wrote on last edited by
                                    #163

                                    Bei mir hat es geholfen im Hauptordner 2 Datenpunkte anzulegen, einmal Mute und einmal Volumen.

                                    51E4F7B4-16DB-4CE7-A1A1-8BF901D98075.jpeg 2313AD93-ACC9-459D-A5C2-386B520F1D9E.jpeg 175D16F9-C365-412E-82EC-5D1EBE0B16AB.jpeg

                                    T 1 Reply Last reply
                                    0
                                    • J jack99n

                                      Bei mir hat es geholfen im Hauptordner 2 Datenpunkte anzulegen, einmal Mute und einmal Volumen.

                                      51E4F7B4-16DB-4CE7-A1A1-8BF901D98075.jpeg 2313AD93-ACC9-459D-A5C2-386B520F1D9E.jpeg 175D16F9-C365-412E-82EC-5D1EBE0B16AB.jpeg

                                      T Offline
                                      T Offline
                                      thomke67
                                      wrote on last edited by
                                      #164

                                      @jack99n, die Datenpunkte habe ich schon drin. Das hat nichts gebracht.

                                      Gruß,
                                      Thomas

                                      1 Reply Last reply
                                      0
                                      • C coto

                                        @thomke67 kannst du mal per SSH nachinstallieren

                                        npm install node-panasonic-viera
                                        

                                        https://www.npmjs.com/package/node-panasonic-viera

                                        Seitdem ich das Paket installiert habe, läuft meine Instanz ohne Ausfälle. Vielleicht hilft es bei dir auch.

                                        T Offline
                                        T Offline
                                        thomke67
                                        wrote on last edited by
                                        #165

                                        @coto, das war der Trick! Nun funktionert der Adapter. Ich hoffe, dass das auf Dauer so bleibt.
                                        Vielen Dank!

                                        Gruß,
                                        Thomas

                                        UHU01U W 2 Replies Last reply
                                        0
                                        • T thomke67

                                          @coto, das war der Trick! Nun funktionert der Adapter. Ich hoffe, dass das auf Dauer so bleibt.
                                          Vielen Dank!

                                          UHU01U Offline
                                          UHU01U Offline
                                          UHU01
                                          wrote on last edited by UHU01
                                          #166

                                          Hallo zusammen,

                                          ich würde den Adapter auch gern einsetzen, steige aber nicht wirklich durch. Könnte evtl. jemand eine Schritt für Schritt Anleitung basteln, wann wo welche Scripte zu installieren sind, wie man an die benötigten keys kommt usw? Ich vermute da wären durchaus noch mehr Leute dankbar.

                                          UHU01U 1 Reply Last reply
                                          0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          480

                                          Online

                                          32.8k

                                          Users

                                          82.7k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Home
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe