Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Wunsch: Adapter für Panasonic Viera Smart TV Steuerung

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    Wunsch: Adapter für Panasonic Viera Smart TV Steuerung

    This topic has been deleted. Only users with topic management privileges can see it.
    • M
      MarkA @jack99n last edited by

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

      @Vumer

      git clone https://github.com/florianholzapfel/panasonic-viera.git
      cd panasonic-viera
      pip install -r requirements.txt
      python panasonic_viera/main.py

      alternativ kannst Du die Bibliothek mit dem Paketmanager pip installieren: pip install panasonic-viera

      Anschließend kannst Du das Skript aus der README.md verwenden:

      import panasonic_viera
      rc = panasonic_viera.RemoteControl("<HOST>")

      Make the TV display a pairing pin code

      rc.request_pin_code()

      Interactively ask the user for the pin code

      pin = raw_input("Enter the displayed pin code: ")

      Authorize the pin code with the TV

      rc.authorize_pin_code(pincode=pin)

      Display credentials (application ID and encryption key)

      print rc._app_id
      print rc._enc_key

      We can now start communicating with our TV

      Send EPG key

      rc.send_key(panasonic_viera.Keys.epg)

      Hallo,

      ich bekomme es leider nicht hin.

       python panasonic_viera/__main__.py
      Traceback (most recent call last):
        File "panasonic_viera/__main__.py", line 12, in <module>
          import panasonic_viera
        File "/home/user/.local/lib/python2.7/site-packages/panasonic_viera/__init__.py", line 479
          "HOST": f"{self._host}:{self._port}",
                                             ^
      SyntaxError: invalid syntax
      
      

      Was muss ich anders machen?

      Gruß Mark

      M 1 Reply Last reply Reply Quote 0
      • M
        MarkA @MarkA last edited by

        Hat niemand eine Idee?

        1 Reply Last reply Reply Quote 0
        • Vumer
          Vumer last edited by Vumer

          es gibt im latest v 2.0

          2.0.0 (2021-05-09)
          (jens-maus) added support to set Application and Encryption Key in adapter admin
          (jens-maus) changed adapter to use node-panasonic-viera to support modern TV models

          f4245e75-f7a9-490b-8700-d80b0013bfb1-grafik.png

          Was Ist Application ID und wo bekomme ich die hier?

          J 1 Reply Last reply Reply Quote 0
          • J
            jack99n @Vumer last edited by

            @vumer An den Key und die ID bin ich über das Python Skript gekommen was ich hier auf der Seite schon mal verlinkt habe.

            Die Verbindung zum TV kann mit dem Update vom Adapter jetzt hergestellt werden, leider Funktionieren die VolumeUp, VolumeDown, und Control Left Befehle nicht.

            Vumer 1 Reply Last reply Reply Quote 0
            • Vumer
              Vumer @jack99n last edited by

              @jack99n
              komme mit dem Python nicht klar 🙄 .
              root@iobroker:~/panasonic-viera# pip install -r requirements.txt
              You must give at least one requirement to install (see "pip help install")
              root@iobroker:~/panasonic-viera#

              mus Python auf dem gleichen mit ioBroker CT laufen ?

              Vumer 1 Reply Last reply Reply Quote 0
              • Vumer
                Vumer @Vumer last edited by

                mit pip install panasonic-viera wurde irgendwas installiert 😉
                aber
                root@python:~/panasonic-viera# import panasonic_viera
                -bash: import: command not found

                J 1 Reply Last reply Reply Quote 0
                • J
                  jack99n @Vumer last edited by

                  @vumer Es ist schon eine ganze Weile her wo ich das gemacht habe. Nein es muss nicht auf dem System gemacht werden wo IOBroker läuft, und probiere es mal mit Python 3.

                  Vumer 2 Replies Last reply Reply Quote 0
                  • Vumer
                    Vumer @jack99n last edited by

                    komme einfach nicht weiter

                    Python 3.7.3 (default, Jan 22 2021, 20:04:44)
                    [GCC 8.3.0] on linux
                    Type "help", "copyright", "credits" or "license" for more information.

                    import panasonic_viera
                    Traceback (most recent call last):
                    File "<stdin>", line 1, in <module>
                    File "/usr/local/lib/python3.7/dist-packages/panasonic_viera/init.py", line 15, in <module>
                    import aiohttp.web
                    ModuleNotFoundError: No module named 'aiohttp'

                    1 Reply Last reply Reply Quote 0
                    • Vumer
                      Vumer @jack99n last edited by Vumer

                      @jack99n
                      weißt du noch welche Python du hattest? Frage weil raw_input existiert in Python 3 nicht mehr und aiohttp gibt es erst ab Python 3

                      1 Reply Last reply Reply Quote 0
                      • Vumer
                        Vumer last edited by Vumer

                        Habs hin bekommen.
                        Benötigt wird Python3. Ich habe im Proxmox einen CT erstellt und Python 2 deinstalliert.

                        sudo apt purge -y python2.7-minimal
                        sudo ln -s /usr/bin/python3 /usr/bin/python
                        sudo apt install -y python3-pip
                        sudo ln -s /usr/bin/pip3 /usr/bin/pip
                        

                        unter

                        python --version
                        

                        sollte jetzt Python3.x auftauchen

                        aiohttp wird noch benötigt

                        pip install aiohttp
                        

                        jetzt kann man die Bibliothek installieren

                        pip install panasonic-viera
                        

                        und los geht's

                        root@viera:~# python
                        Python 3.7.3 (default, Jan 22 2021, 20:04:44) 
                        [GCC 8.3.0] on linux
                        Type "help", "copyright", "credits" or "license" for more information.
                        >>> import panasonic_viera
                        >>> rc = panasonic_viera.RemoteControl("192.168.xxx.xxx")
                        >>> rc.request_pin_code()
                        >>> pin = input("Enter the displayed pin code: ")
                        Enter the displayed pin code: 1111
                        >>> rc.authorize_pin_code(pincode=pin)
                        >>> print (rc.app_id)
                        A***********
                        >>> print (rc.enc_key)
                        D****************
                        >>> rc.send_key(panasonic_viera.Keys.epg)
                        >>> Strg + D
                        
                        J 2 Replies Last reply Reply Quote 0
                        • J
                          jack99n @Vumer last edited by

                          @vumer Schön das du es doch noch hinbekommen hast, ich hatte noch irgendwas in Erinnerung mit Python3. Wie gesagt ich hatte das einmal gemacht und hatte somit ja die Daten. Jetzt sollten es ja auch andere hinbekommen!

                          1 Reply Last reply Reply Quote 0
                          • J
                            jack99n @Vumer last edited by

                            @vumer Funktionieren die VolumeUp, VolumeDown, und Control Left Befehle bei dir?

                            1 Reply Last reply Reply Quote 0
                            • Vumer
                              Vumer last edited by

                              @jack99n
                              nein, bei mir auch nicht.

                              J 1 Reply Last reply Reply Quote 0
                              • J
                                jack99n @Vumer last edited by

                                @vumer Ärgerlich, auf Volumen Up Down könnte ich verzichten da der andere Volumen Datenpunkt mit Zahlenwert ja geht. Aber Control Left brauche ich auf jeden fall. Weiß gar nicht ob @JensMaus hier mitliest?

                                Vumer 1 Reply Last reply Reply Quote 0
                                • G
                                  Gironimo last edited by

                                  bei mir schaltet der der TV leider nie im Reiter info beim Punkt tv_on auf off.
                                  Oder wo kann ich auslesen, ob der Fernseher ein- oder ausgeschaltet ist?

                                  1 Reply Last reply Reply Quote 0
                                  • Vumer
                                    Vumer @jack99n last edited by Vumer

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

                                    @vumer Ärgerlich, auf Volumen Up Down könnte ich verzichten da der andere Volumen Datenpunkt mit Zahlenwert ja geht. Aber Control Left brauche ich auf jeden fall.

                                    sehe ich genauso

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

                                    bei mir schaltet der der TV leider nie im Reiter info beim Punkt tv_on auf off.

                                    das ärgert mich auch sehr. Ich dachte das mit der ID dass es funktionieren wird.

                                    J 1 Reply Last reply Reply Quote 0
                                    • J
                                      jack99n @Vumer last edited by

                                      @vumer Es muss an der 2.0 Version liegen da es mit der letzten Stable noch ging. Leider ist die Stable Version noch nicht für die Geräte die ein PIN Code wollen.

                                      1 Reply Last reply Reply Quote 0
                                      • T
                                        thomke67 last edited by

                                        Bei mir steigt die Instanz nach eine Volume-Änderung immer direkt aus und ich muss die Instanz restarten.... Egal, ob ich "volume" unter "basic" oder aus dem root der Instanz nehme.
                                        "tv-on" funktioniert allerdings, wenn auch mit Verzögerung.

                                        1 Reply Last reply Reply Quote 0
                                        • T
                                          thomke67 last edited by thomke67

                                          host.raspberrypi	2021-05-24 17:13:08.616	info	Restart adapter system.adapter.panasonic-viera.0 because enabled
                                          host.raspberrypi	2021-05-24 17:13:08.615	error	instance system.adapter.panasonic-viera.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
                                          panasonic-viera.0	2021-05-24 17:13:07.992	warn	(1300) Terminated (UNCAUGHT_EXCEPTION): Without reason
                                          panasonic-viera.0	2021-05-24 17:13:07.991	info	(1300) terminating
                                          panasonic-viera.0	2021-05-24 17:13:07.472	error	(1300) callback is not a function
                                          panasonic-viera.0	2021-05-24 17:13:07.472	error	at process._tickCallback (internal/process/next_tick.js:63:19)
                                          panasonic-viera.0	2021-05-24 17:13:07.472	error	at endReadableNT (_stream_readable.js:1145:12)
                                          panasonic-viera.0	2021-05-24 17:13:07.472	error	at IncomingMessage.emit (events.js:203:15)
                                          panasonic-viera.0	2021-05-24 17:13:07.472	error	at IncomingMessage.<anonymous> (/opt/iobroker/node_modules/iobroker.panasonic-viera/lib/viera.js:93:17)
                                          panasonic-viera.0	2021-05-24 17:13:07.472	error	(1300) TypeError: callback is not a function
                                          panasonic-viera.0	2021-05-24 17:13:07.470	error	(1300) uncaught exception: callback is not a function
                                          

                                          Trotz der Ankündigung im Log, macht die Instanz keinen Restart.
                                          Es ist übrigens die Stable Version und der Fehler trat früher so nicht auf (meine ich).....

                                          J 1 Reply Last reply Reply Quote 0
                                          • J
                                            jack99n @thomke67 last edited by

                                            Power on/off und die Erkennung ob on/off Funktioniert bei mir.

                                            Vumer 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

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

                                            723
                                            Online

                                            31.9k
                                            Users

                                            80.1k
                                            Topics

                                            1.3m
                                            Posts

                                            47
                                            175
                                            28534
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo