Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Test Adapter Philips-TV v0.2.x

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Test Adapter Philips-TV v0.2.x

    This topic has been deleted. Only users with topic management privileges can see it.
    • Mic
      Mic Developer last edited by Mic

      Hi zusammen,

      eine Erfolgsmeldung:
      Ich habe einen Philips 65PUS7303 (2018er Modell) - API-Version 6.1 lt Aufruf von http://x.x.x.x:1925/system

      Ich bin wie folgt vorgegangen:

      • https://github.com/AlCalzone/ioBroker.philips-tv/tarball/api-v5+v6 über Katze installiert und dann manuell hochgeladen
      • User/Passwort generiert lt. Vorgehensweise von https://github.com/nstrelow/ha_philips_2016
      • User/Passwort per Script hinzugefügt: https://forum.iobroker.net/post/128997 (AlCalzone 4. Feb. 2018, 12:54)

      Adapter grün und läuft! ☺
      Über Datenpunkt philips-tv.0.pressKey kann ich schon mal Fernseher in Standby versetzen und wieder aufwecken, weiteres werde ich testen.
      Vielen Dank an @AlCalzone für die bisherige Arbeit!

      //////////////
      Edit:
      Hier noch ein wertvoller Link: https://community.openhab.org/t/philips-tv-2016-binding/64579/61
      Mit den curl-Befehlen kann ich u.a. erfolgreich das Ambilight ausschalten und einschalten (= # setting Ambilight to FOLLOW_VIDEO).

      1 Reply Last reply Reply Quote 1
      • AlCalzone
        AlCalzone Developer last edited by

        Top, das klingt gut. Ich hoffe ich komme demnächst mal dazu das fertig zu stellen. Habe mir deinen Beitrag als Lesezeichen gemerkt.

        1 Reply Last reply Reply Quote 1
        • R
          Ratze last edited by

          Selber habe ich weder den Adapter zum laufen gebracht (steht auf gelb) noch das Python Script
          um User und Passwort vom meinem PUS7101 auszulesen.
          Problem ist schon eingegrenzt (Visual Studio / C++)

          Aber in der Zwischenzeit habe ich etwas interessantes entdeckt...
          Da stellt jemand eine Python Script zur Verfügung mit MQTT support
          Da es aber auf meiner Windows-Kiste schon mit Python Probleme bei den Requirements gibt,
          kann ich die Funktion nzw. das Script nicht testen.

          Quelle: https://github.com/eslavnov/pylips

          Ein Auszug...
          "Pylips is a Python tool to control Philips TVs (2015+) through their reverse-engineered API.

          Supports both Android and non-Android TVs
          80 built-in commands + support for custom "GET" and "POST" requests to the API
          All commands work on TVs with API version 6, most of them also work for API version 5
          Full control of Ambilight including color, brightness, mode and 'Ambilight + Hue'
          Allows sending TV status updates and receiving commands over MQTT
          The current version of the API does not allow switching input sources anymore (?), use this tool instead (Android TVs only)."

          1 Reply Last reply Reply Quote 1
          • Mic
            Mic Developer last edited by Mic

            Danke @Ratze!
            Interessant hierbei -- sicherlich auch für @AlCalzone -- ist auch die inoffizielle API-Referenz des Programmierers:
            https://github.com/eslavnov/Pylips/wiki

            Teste ich gerade mit exec und curl und läuft sehr gut, hier ein JavaScript-Beispiel:

            [ EDIT: überarbeitetes Script siehe unten ]

            1 Reply Last reply Reply Quote 0
            • Mic
              Mic Developer last edited by Mic

              Hier noch ein Update meines Test-Scripts. Es legt einen Datenpunkt unter "javascript.0.PhilipsTV.MyScript" an, womit man den Philips-TV steuern kann. Eingebaut ist auch Einschalten von Netflix, Kodi und YouTube. Sicherlich einfach in den Adapter integrierbar 🙂

              /*******************************************************************************
               * ---------------------------
               * Philips TV Script for ioBroker
               * ----------------------------------------------------
               * Version: 0.2
               * Autor: Mic
               * ----------------------------------------------------
               * Documentation:
               *  - Unofficial Philips TV API Reference: https://github.com/eslavnov/pylips/wiki
               *  - Some Info: https://community.openhab.org/t/philips-tv-2016-binding/64579/61
               *  - Python Script with MQTT support: https://github.com/eslavnov/pylips
               *  - ioBroker Philips TV Adapter: https://forum.iobroker.net/topic/8791/aufruf-philips-tv-v0-1-0-testen
               ******************************************************************************/
              
              /*******************************************************************************
               * Settings
               *******************************************************************************/
              // Pfad, unter dem die Objekte angelegt werden.
              const STATE_PATH = 'javascript.0.PhilipsTV.MyScript.';
              
              // Generate User/Password: see https://github.com/nstrelow/ha_philips_2016
              const PHILIPS_USER = 'xxxxxxxxxxxxxxxxxxxxxx';
              const PHILIPS_PASS = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
              
              // URL, change IP address accordingly (and you may also need to change port, see for example https://github.com/eslavnov/pylips)
              const PHILIPS_URL = 'https://xxx.xxx.xxx.xxx:1926/6/';
              
              const LOG_DEBUG = false;
              
              
              /*******************************************************************************
               * Expert Settings
               *******************************************************************************/
              // Hier definieren wir die einzelnen Commands. 
              let pCommands = [];
              //        0.Command Name                       1.Path              2. curl Command      
              pCommands['Cmd: Ambilight Off']             = ['ambilight/power',   '{"power":"Off"}'];
              pCommands['Cmd: Ambilight On']              = ['ambilight/power',   '{"power":"On"}'];
              pCommands['Cmd: Ambilight On Video Standard'] = ['ambilight/currentconfiguration',   '{"styleName":"FOLLOW_VIDEO","isExpert":false,"menuSetting":"STANDARD"}'];
              pCommands['Cmd: Ambilight On Video Immersive'] = ['ambilight/currentconfiguration',   '{"styleName":"FOLLOW_VIDEO","isExpert":false,"menuSetting":"IMMERSIVE"}'];
              pCommands['Cmd: Ambilight On Video Natural'] = ['ambilight/currentconfiguration',   '{"styleName":"FOLLOW_VIDEO","isExpert":false,"menuSetting":"NATURAL"}'];
              pCommands['Cmd: Ambilight On Video Vivid'] = ['ambilight/currentconfiguration',   '{"styleName":"FOLLOW_VIDEO","isExpert":false,"menuSetting":"VIVID"}'];
              pCommands['Cmd: Ambilight On Video Game'] = ['ambilight/currentconfiguration',   '{"styleName":"FOLLOW_VIDEO","isExpert":false,"menuSetting":"GAME"}'];
              pCommands['Cmd: Ambilight On Video Comfort'] = ['ambilight/currentconfiguration',   '{"styleName":"FOLLOW_VIDEO","isExpert":false,"menuSetting":"COMFORT"}'];
              pCommands['Cmd: Ambilight On Video Relax'] = ['ambilight/currentconfiguration',   '{"styleName":"FOLLOW_VIDEO","isExpert":false,"menuSetting":"RELAX"}'];
              pCommands['Launch: Netflix'] = ['activities/launch',   '{"id":"com.netflix.ninja","order":0,"intent":{"action":"Intent{act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=com.netflix.ninja }","component":{"packageName":"com.netflix.ninja","className":"com.netflix.ninja.MainActivity"}},"label":"Netflix"}'];
              pCommands['Launch: Kodi'] = ['activities/launch',   '{"id":"org.xbmc.kodi","order":0,"intent":{"action":"Intent{act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=org.xbmc.kodi }","component":{"packageName":"org.xbmc.kodi","className":"org.xbmc.kodi.Splash"}},"label":"Kodi"}'];
              pCommands['Launch: YouTube'] = ['activities/launch',   '{"id":"com.google.android.apps.youtube.tv.activity.ShellActivity-com.google.android.youtube.tv","order":0,"intent":{"action":"Intent{act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=com.google.android.youtube.tv cmp=com.google.android.youtube.tv/com.google.android.apps.youtube.tv.activity.ShellActivity }","component":{"packageName":"com.google.android.youtube.tv","className":"com.google.android.apps.youtube.tv.activity.ShellActivity"}},"label":"YouTube"}'];
              pCommands['Key: Adjust']  = ['input/key',   '{"key":"Adjust"}'];
              pCommands['Key: AmbilightOnOff']  = ['input/key',   '{"key":"AmbilightOnOff"}'];
              pCommands['Key: Back']  = ['input/key',   '{"key":"Back"}'];
              pCommands['Key: BlueColour']  = ['input/key',   '{"key":"BlueColour"}'];
              pCommands['Key: ChannelStepDown']  = ['input/key',   '{"key":"ChannelStepDown"}'];
              pCommands['Key: ChannelStepUp']  = ['input/key',   '{"key":"ChannelStepUp"}'];
              pCommands['Key: Confirm']  = ['input/key',   '{"key":"Confirm"}'];
              pCommands['Key: CursorDown']  = ['input/key',   '{"key":"CursorDown"}'];
              pCommands['Key: CursorLeft']  = ['input/key',   '{"key":"CursorLeft"}'];
              pCommands['Key: CursorRight']  = ['input/key',   '{"key":"CursorRight"}'];
              pCommands['Key: CursorUp']  = ['input/key',   '{"key":"CursorUp"}'];
              pCommands['Key: Digit0']  = ['input/key',   '{"key":"Digit0"}'];
              pCommands['Key: Digit1']  = ['input/key',   '{"key":"Digit1"}'];
              pCommands['Key: Digit2']  = ['input/key',   '{"key":"Digit2"}'];
              pCommands['Key: Digit3']  = ['input/key',   '{"key":"Digit3"}'];
              pCommands['Key: Digit4']  = ['input/key',   '{"key":"Digit4"}'];
              pCommands['Key: Digit5']  = ['input/key',   '{"key":"Digit5"}'];
              pCommands['Key: Digit6']  = ['input/key',   '{"key":"Digit6"}'];
              pCommands['Key: Digit7']  = ['input/key',   '{"key":"Digit7"}'];
              pCommands['Key: Digit8']  = ['input/key',   '{"key":"Digit8"}'];
              pCommands['Key: Digit9']  = ['input/key',   '{"key":"Digit9"}'];
              pCommands['Key: Dot']  = ['input/key',   '{"key":"Dot"}'];
              pCommands['Key: FastForward']  = ['input/key',   '{"key":"FastForward"}'];
              pCommands['Key: Find']  = ['input/key',   '{"key":"Find"}'];
              pCommands['Key: GreenColour']  = ['input/key',   '{"key":"GreenColour"}'];
              pCommands['Key: Home']  = ['input/key',   '{"key":"Home"}'];
              pCommands['Key: Info']  = ['input/key',   '{"key":"Info"}'];
              pCommands['Key: Mute']  = ['input/key',   '{"key":"Mute"}'];
              pCommands['Key: Next']  = ['input/key',   '{"key":"Next"}'];
              pCommands['Key: Online']  = ['input/key',   '{"key":"Online"}'];
              pCommands['Key: Options']  = ['input/key',   '{"key":"Options"}'];
              pCommands['Key: Pause']  = ['input/key',   '{"key":"Pause"}'];
              pCommands['Key: Play']  = ['input/key',   '{"key":"Play"}'];
              pCommands['Key: PlayPause']  = ['input/key',   '{"key":"PlayPause"}'];
              pCommands['Key: Previous']  = ['input/key',   '{"key":"Previous"}'];
              pCommands['Key: Record']  = ['input/key',   '{"key":"Record"}'];
              pCommands['Key: RedColour']  = ['input/key',   '{"key":"RedColour"}'];
              pCommands['Key: Rewind']  = ['input/key',   '{"key":"Rewind"}'];
              pCommands['Key: Source']  = ['input/key',   '{"key":"Source"}'];
              pCommands['Key: Standby']  = ['input/key',   '{"key":"Standby"}'];
              pCommands['Key: Stop']  = ['input/key',   '{"key":"Stop"}'];
              pCommands['Key: Subtitle']  = ['input/key',   '{"key":"Subtitle"}'];
              pCommands['Key: Teletext']  = ['input/key',   '{"key":"Teletext"}'];
              pCommands['Key: Viewmode']  = ['input/key',   '{"key":"Viewmode"}'];
              pCommands['Key: VolumeDown']  = ['input/key',   '{"key":"VolumeDown"}'];
              pCommands['Key: VolumeUp']  = ['input/key',   '{"key":"VolumeUp"}'];
              pCommands['Key: WatchTV']  = ['input/key',   '{"key":"WatchTV"}'];
              pCommands['Key: YellowColour']  = ['input/key',   '{"key":"YellowColour"}'];
              
              
              /*******************************************************************************
               * Ab hier nichts mehr ändern / Stop editing here!
               ******************************************************************************/
              
              
              /*******************************************************************************
               * Initiale Function
               *******************************************************************************/
              init();
              function init() {
                  
                  // 1. Create states
                  createScriptStates();
              
                  // 2. Schedule
                  on({id: STATE_PATH + 'Command', change:'any'}, function (obj) {
                      doExec(obj.state.val);
                  });
              }
              
              function doExec(id) {
                  if (id in pCommands) { // Check if Key exists and typed correctly - https://stackoverflow.com/questions/1098040/checking-if-a-key-exists-in-a-javascript-object
                      var exec = require('child_process').exec;
                      var args = "-X POST --digest --insecure -u " + PHILIPS_USER + ":" + PHILIPS_PASS + " -d '" + pCommands[id][1] + "' " + PHILIPS_URL + pCommands[id][0];
                      exec('curl ' + args, function (error, stdout, stderr) {
                          if (LOG_DEBUG) log('stdout: ' + stdout);
                          if (LOG_DEBUG) log('stderr: ' + stderr);
                          if (error !== null) {
                              log('exec error: ' + error);
                          }
                      });
                  } else if(id == '') {
                      // do nothing, will be empty if script is initally started or user did not select value
                  } else {
                      log('Wrong command provided to Philips TV: [' + id + ']', 'warn');
                  }
              }
              
              function createScriptStates() {
                  // create drop-down list
                  let dropdown = '';
                  for (let lpEntry of Object.keys(pCommands)) {   // 'special' loop here to get the keys
                      dropdown += '"' + lpEntry + '":"' + lpEntry + '",'; // fill JSON string
                  }
                  dropdown = dropdown.substr(0, dropdown.length-1); // remove last comma ","
                  dropdown = '{' + dropdown + '}'; // finalize JSON string
                  let dropdownJSON = JSON.parse(dropdown); // convert to JSON
                  // Create state. Force is set to true, so we will always update the states if e.g. configuration in this script changed.
                  createState(STATE_PATH + 'Command', '', true, {
                      'name':'Command', 
                      'type':'string', 
                      'read':false, 
                      'write':true, 
                      'role':'value', 
                      'states': dropdownJSON
                  });
              }
              
              

              Achtung:

              Update: aktuelles Script siehe auf Github.

              S B 2 Replies Last reply Reply Quote 1
              • S
                Stormbringer @Mic last edited by

                @Mic
                Mit dem Skript habe ich auch schon experimentiert. Nur leider waren meine Linux Kenntnisse zu schwach um es zum laufen zu bekommen. Ich löse das aus und einschalten vom Ambilight jetzt per CURL Befehl. Kennst du dich zufällig damit auch aus und weißt wie der richtige Befehl geht um Ambi und Hue aus und einzuschalten?

                Grundlage war die Seite

                https://gist.github.com/marcelrv/ee9a7cf97c227d069e4ee88d26691019

                1 Reply Last reply Reply Quote 0
                • Mic
                  Mic Developer last edited by

                  @Stormbringer
                  Das macht mein Script (siehe oben), dort ist curl integriert, das per JavaScript über ioBroker ausgeführt wird. Wo hast Du da denn Fragen?

                  S 1 Reply Last reply Reply Quote 0
                  • S
                    Stormbringer @Mic last edited by

                    @Mic ich hab Probleme das Pylips zum Laufen zu bringen. Ich steuere daher alles mit CURL Befehle aber der CURL Befehl für Ambi und Hue bekomm ich nicht hin.. Weißt du was ich mein?

                    Mic 1 Reply Last reply Reply Quote 0
                    • Mic
                      Mic Developer @Stormbringer last edited by

                      @Stormbringer
                      Schau Dir diese Referenz an: https://github.com/eslavnov/pylips/wiki
                      Darauf basiert auch mein Javascript von oben.

                      S 1 Reply Last reply Reply Quote 0
                      • R
                        rrroli last edited by

                        Hallo!
                        Ich habe eine Frage zu den Custom Keypresses.
                        Ich konnte den Adapter richtig einbinden und ich kann auch zB einen Wert für die Lautstärke zum Gerät schicken.
                        Was ich irgendwie überhaupt nicht verstehe ist, wie ich zB die Quelle auswählen kann bzw. überhaupt Custom Befehle konfigurieren kann. Kann ich das über das WebInterface machen und wenn ja wie?

                        Vielen Dank im Voraus.

                        lg

                        1 Reply Last reply Reply Quote 0
                        • R
                          rrroli last edited by

                          Hi,
                          Kann mir jemand vielleicht einen Tip geben, wie man auf einen bestimmten HDMI Kanal (1,2,3,4) umschalten kann?
                          Ich kann nur Source auswählen, was mir am TV die Übersicht anzeigt. Dort müsste ich dann aber mit den Cursortasten nutzen, was Kacke ist.

                          Danke!

                          Mic 1 Reply Last reply Reply Quote 0
                          • Mic
                            Mic Developer @rrroli last edited by

                            @rrroli sagte in [Aufruf] Philips-TV v0.1.0 testen:

                            Hi,
                            Kann mir jemand vielleicht einen Tip geben, wie man auf einen bestimmten HDMI Kanal (1,2,3,4) umschalten kann?
                            Ich kann nur Source auswählen, was mir am TV die Übersicht anzeigt. Dort müsste ich dann aber mit den Cursortasten nutzen, was Kacke ist.

                            Danke!

                            Findest Du hier eine Option? https://github.com/eslavnov/pylips/wiki
                            Wenn es dies dort gibt, dann sicherlich möglich.

                            R 1 Reply Last reply Reply Quote 0
                            • R
                              rrroli @Mic last edited by rrroli

                              @Mic
                              Leider nein, dort gibt es nur Source, was mir eben nur die Auswahl am TV anzeigt.
                              Das hier http://jointspace.sourceforge.net/projectdata/documentation/jasonApi/1/doc/API-Method-sources-current-POST.html sieht besser aus denke ich.
                              Leider weiß ich nicht, wie ich das einbinden kann?

                              1 Reply Last reply Reply Quote 0
                              • R
                                rrroli last edited by

                                Ok, ich habs hinbekommen. Zumindest so halb.
                                Mit curl -X POST -d '{"id":"hdmi1"}' http://192.168.x.y:1925/1/sources/current kann ich auf HDMI wechseln.
                                Wie und wo muss ich den Befehl jetzt eingeben, damit diesen, am besten per Knopfdruck, nutzen kann?

                                Danke

                                Mic 1 Reply Last reply Reply Quote 0
                                • Mic
                                  Mic Developer @rrroli last edited by

                                  @rrroli sagte in [Aufruf] Philips-TV v0.1.0 testen:

                                  Ok, ich habs hinbekommen. Zumindest so halb.
                                  Mit curl -X POST -d '{"id":"hdmi1"}' http://192.168.x.y:1925/1/sources/current kann ich auf HDMI wechseln.
                                  Wie und wo muss ich den Befehl jetzt eingeben, damit diesen, am besten per Knopfdruck, nutzen kann?

                                  Danke

                                  Du könntest versuchen, das in meinem Testscript oben vom 6. Juni 2019, 00:05 einzubauen.

                                  Also z.B. Zeile 97 einfügen:

                                  pCommands['sources: HDMI 1']             = ['sources/current',   '{"id":"hdmi1"}'];
                                  

                                  Dann solltest Du das über den Datenpunkt "javascript.0.PhilipsTV.MyScript.Command" die neue Option 'sources: HDMI 1' auswählen können und damit im VIS einfach einen Knopf einbinden.
                                  Achtung: ungetestet von mir, sondern nur hier runter geschrieben 😉

                                  R 1 Reply Last reply Reply Quote 0
                                  • Mic
                                    Mic Developer last edited by

                                    @rrroli
                                    Ok, mein Weg scheint mit neueren APIs nicht zu funktionieren, bei mir jedenfalls nicht: https://github.com/eslavnov/pylips/issues/3

                                    Aber Du kannst es mit meinem Script mal testen, ggf. entsprechend umstellen in PHILIPS_URL Konstante.

                                    FezVrasta created this issue in eslavnov/pylips

                                    closed [FEAT] Add input switch commands #3

                                    1 Reply Last reply Reply Quote 0
                                    • R
                                      rrroli @Mic last edited by

                                      @Mic said in [Aufruf] Philips-TV v0.1.0 testen:

                                      @rrroli sagte in [Aufruf] Philips-TV v0.1.0 testen:

                                      Ok, ich habs hinbekommen. Zumindest so halb.
                                      Mit curl -X POST -d '{"id":"hdmi1"}' http://192.168.x.y:1925/1/sources/current kann ich auf HDMI wechseln.
                                      Wie und wo muss ich den Befehl jetzt eingeben, damit diesen, am besten per Knopfdruck, nutzen kann?

                                      Danke

                                      Du könntest versuchen, das in meinem Testscript oben vom 6. Juni 2019, 00:05 einzubauen.

                                      Also z.B. Zeile 97 einfügen:

                                      pCommands['sources: HDMI 1']             = ['sources/current',   '{"id":"hdmi1"}'];
                                      

                                      Dann solltest Du das über den Datenpunkt "javascript.0.PhilipsTV.MyScript.Command" die neue Option 'sources: HDMI 1' auswählen können und damit im VIS einfach einen Knopf einbinden.
                                      Achtung: ungetestet von mir, sondern nur hier runter geschrieben 😉

                                      Hallo,

                                      Danke für deine Antwort!
                                      Dazu muss ich dann vorher das pylips zu iobroker hinzufügen, oder?

                                      Mic 1 Reply Last reply Reply Quote 0
                                      • Mic
                                        Mic Developer @rrroli last edited by

                                        Danke für deine Antwort!
                                        Dazu muss ich dann vorher das pylips zu iobroker hinzufügen, oder?

                                        Nein, pylips wird hier nicht benötigt. Aber du musst im JavaScript-Adapter javascript.0 in den Einstellungen den Haken bei "Erlaube das Kommando 'exec'" setzen. Das Script setzt nämlich dann über exec einen curl-Befehl ab. Damit hast Du das also im ioBroker integriert.

                                        R 1 Reply Last reply Reply Quote 0
                                        • R
                                          rrroli @Mic last edited by

                                          Geil, es funktioniert. Ich musste nur das Curl Kommando leicht anpassen.

                                          Danke @Mic! Ohne Dich hätt ich das nicht geschafft.

                                          1 Reply Last reply Reply Quote 0
                                          • R
                                            rrroli last edited by

                                            Hi,

                                            jetzt muss ich noch etwas fragen, wo ich noch nichtgenau weiß, wie ich das am besten mache.
                                            Und zwar würde ich gerne per simulierten Buttondruck oder was eben sonst noch klug wäre, den HDMI Kanal auf 1,2,3, .. wechseln, also quasi den Wert "sources: HDMI1" übergeben.
                                            Wie kann ich denn am geschicktesten so etwas realisieren?
                                            Ich könnte ja das Script von Mic kopieren, alle Werte, welche ich nicht brauche löschen und als solches dann laufen lassen.
                                            Irgendwie kommt mir dass aber etwas zu umständlich vor?

                                            Jemand nen Plan wie man das sonst machen könnte?

                                            Danke!

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            1.1k
                                            Online

                                            31.7k
                                            Users

                                            79.7k
                                            Topics

                                            1.3m
                                            Posts

                                            philips philips tv
                                            83
                                            549
                                            112093
                                            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