Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. JayR

    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

    • Profile
    • Following 0
    • Followers 1
    • Topics 33
    • Posts 202
    • Best 10
    • Groups 2

    JayR

    @JayR

    10
    Reputation
    71
    Profile views
    202
    Posts
    1
    Followers
    0
    Following
    Joined Last Online

    JayR Follow
    Forum Testing Pro

    Best posts made by JayR

    • RE: jarvis v2.2.0 - just another remarkable vis

      @sigi234 said in jarvis v2.0.0 - just another remarkable vis:

      @Zefau sagte in jarvis v2.0.0 - just another remarkable vis:

      @sigi234 sagte in jarvis v2.0.0 - just another remarkable vis:

      Ja gefunden, aber da ich ja die Instanz gelöscht habe, sind die alten ja nicht mehr da. Darum wäre eine Option für eine Externen Sicherung sinnvoll.

      mach gerne einen Feature Request.

      Aus meiner Sicht eher was für die Power User. Alle anderen updaten ja eher weniger häufig.

      Ok, ich denke aber man sitz schon eine Zeit daran wenn man eine komplette "jarvis" erstellt.
      Sind die Daten weg, kann man von vorne anfangen.
      Feature Request erstellt.

      https://github.com/Zefau/ioBroker.jarvis/issues/478

      @simatec: Kann man das nicht auch in den Backup Adapter mit einbauen, damit dieser auch Jarvis mit berücksichtigt?

      sigi2345 created this issue in Zefau/ioBroker.jarvis

      closed Option zur Sicherung der Jarvis Dateien #478

      posted in Tester
      JayR
      JayR
    • RE: Rolladensteuerung abhängig vom Sonnenstand

      @albert-k : Danke vielmals

      posted in Skripten / Logik
      JayR
      JayR
    • RE: TV Programm Mini Anzeige - HTML Tabelle

      @Stephan-Schleich :

      Ganz unten im Script muss in den CONF_CUSTOM noch der Pfad eingefügt werden:

      "path" : "value"
      
      /*****************************************************************************
       * Created: 04.12.2020
       * Created by: JayR / liv-in-sky
       * Description: Get tv program
       * Notes:
       * Source: https://forum.iobroker.net/topic/28447/tv-programm-mini-anzeige-html-tabelle
       * ToDo: nothing
       * Version: 1.1
       * Changes: 1.0 - Initial creation
       * 12.12.20 1.1 - Change trigger
      ******************************************************************************/
      /*****************************************************************************/
      
      /********************************
       * Configuration
      ********************************/
      const LOGGING = true;   //if(LOGGING)   log('');
      const VERBOSE = false;  //if(LOGGING && VERBOSE)    log('');
      var channels = ["Das Erste", "ZDF", "SWR", "Sat.1", "RTL", "RTL Zwei", "Sky Sport News", "ProSieben", "SPORT1", "VOX",  "kabel eins", "ZDFneo", "n-tv"];
      const CONF_CUSTOM = buildConfigObject();
      const STATES = createCustomStates();
      let returnVal;
      /********************************
       * Start/Init
      ********************************/
       getTvProgram();
      /******************************** 
       * Functions
      ********************************/  
      function getTvProgram(){
          let url = getProgramUrl();
          getTV(url).then(function() {
              returnVal.forEach(function(channel) {
                  log(channel);
                  setState(CONF_CUSTOM.path + "tv." + channel[1].replace(" ","").replace(" ","").replace(".","") + ".time", channel[0]);
                  setState(CONF_CUSTOM.path + "tv." + channel[1].replace(" ","").replace(" ","").replace(".","") + ".program", channel[2].substr(0, channel[2].length-2));
                  setState(CONF_CUSTOM.path + "tv." + channel[1].replace(" ","").replace(" ","").replace(".","") + ".name", channel[1]);
              });
          }); 
      }
       async function getTV(url) {
           return new Promise(async (resolve, reject) => {
               await request(url, async function(error, response, result) {
                  resolvHtml(result);
                   if (result != "") {
                       resolve()
                   } else {
                       reject()
                   };
               }).on("error", function(e) {
                   console.error(e);
               });
           });
      }
      
      async function resolvHtml(gesuchtVal) {
          var re = /\s<a title=".+?" name="bid_/g;
          let found = "fff" + gesuchtVal.match(re); 
          let helper = found.match(/\".+?" name="bid_/g);
          let helper2 = [];
          for (var i = 0; i < helper.length; i++) {
              let hhh = helper[i].replace(/,/g, " --");
              hhh = hhh.replace(/\'/g, " ");
              hhh = hhh.replace(/ (\d\d):(\d\d) /g, " $1\-\-\-$2");
              hhh = hhh.replace(/\:/g, ";");
              hhh = hhh.replace(/(\d\d)---(\d\d)/g, " $1:$2 ");
              hhh = hhh.replace(/www\..+\/tv-pro/g, "tv-pro");
              hhh = hhh.replace(/(\d\d\.\d\d\..+)\.(.+)\" data/g, "$1x_y_x$2 data"); //ersetzt punkt in sendernamen (sat.1)
              hhh = hhh.replace(/(^.+?)\.+(.+?\d\d\.\d\d\.)/g, "$1x_x_x$2"); //ersetzt punkte im datum
              hhh = hhh.replace(/\*/g, "_");
              hhh = hhh.replace(/ data.+programm(.+)/g, "bbb$1");
              helper2.push(hhh)
           }
          var htmlArray = helper2.toString().split(",");
          var helpArray = [];
          var helpArray1 = [];
          var helpArray2 = [];
          
          for (var i = 0; i < htmlArray.length; i++) {
              var haken = htmlArray[i].replace(/,>/g, "");
              helpArray.push(haken);
           } // /,>/g , ""
           for (var i = 0; i < helpArray.length; i++) {
              var haken = helpArray[i].replace("xxx", "");
              helpArray1.push(haken);
           } // /,>/g , ""
           for (var i = 0; i < helpArray1.length; i++) {
              var haken = helpArray1[i].replace(/\"/g, "");
              helpArray2.push(haken);
              if (i < 0) log(helpArray2[i])
           } // /,>/g , ""
          let resultObj = []; 
          for (var i = 0; i < helpArray2.length; i++) {
              let val4help = helpArray2[i].slice(((helpArray2[i].indexOf('bbb') + 1 + 3) - 1), helpArray2[i].length);
              val4help = val4help.replace(/ name=bid_/g, "");
              if (i < 0) log(val4help)
              let val3 = helpArray2[i].slice(0, (helpArray2[i].indexOf(':') + 1) - 5).trim();
              val3 = val3.replace(/x_x_x/g, ".");
              val3 = val3.replace(/x_y_x/g, ".") // val3=val3.slice(0, (val3.lastIndexOf('-') + 1) - 1);   // sendung
              let val2 = helpArray2[i].slice(((helpArray2[i].lastIndexOf('.') + 1 + 1) - 1), helpArray2[i].length).trim();
              val2 = val2.replace(/bbb.+/g, "");;
              if (i < 0) log(val2);
              val2 = val2.replace(/x_x_x/g, ".");
              val2 = val2.replace(/x_y_x/g, ".") // sender
              let val1 = helpArray2[i].slice((((helpArray2[i].lastIndexOf(':') + 1) - 2) - 1), helpArray2[i].indexOf(':') + 1 + 2).trim(); // uhrzeit
              resultObj.push([val1, val2, val3, val4help]);
          }
          let myObjFilter = [];
          for (var b = 0; b < resultObj.length; b++) {
              if (channels.includes(resultObj[b][1].trim()) && resultObj[b][1].trim() != "") {
                  myObjFilter.push(resultObj[b]);
              } else {
              }
          }
          let myObjFilterHelp = [];
          let bevore;
          for (var b = 0; b < myObjFilter.length; b++) {
              if (myObjFilter[b][1] != bevore) {
                  myObjFilterHelp.push(myObjFilter[b]);
                  bevore = myObjFilter[b][1]
              } else {}
      
          }
          returnVal = myObjFilterHelp;
       }
      
      function getProgramUrl(){
          let programTime = parseInt(getState(CONF_CUSTOM.path + 'tv.programTime').val); 
          let url;  
          if(programTime == 1) url = 'https://www.hoerzu.de/tv-programm/jetzt/';
          else if (programTime == 2){
              let houre = new Date();
              let time; 
              if(houre.getHours() == 23){
                  time = "00";
                  url = "https://www.hoerzu.de/tv-programm/morgen/"; 
              }else{
                  time = (houre.getHours() + 1).toString();
                  url = "https://www.hoerzu.de/tv-programm/heute/" 
              } 
              if(houre.getMinutes() >= 0 && houre.getMinutes() < 30) time = time + ":30";
              else time = time = time + ":00";
              url = url + time + "/";
          }
          else if (programTime == 3) url = 'https://www.hoerzu.de/tv-programm/heute/20:30/'; 
          else if (programTime == 4) url = 'https://www.hoerzu.de/tv-programm/heute/22:30/'; 
          return url;
      }
      /********************************
       * Trigger
      ********************************/
       on({
         id: CONF_CUSTOM.path + 'tv.programTime',
         change: 'any'
      }, function(obj) {
          getTvProgram();
      });
      
      schedule('*/30 * * * *', function() {
          getTvProgram();
      });
      /********************************
       * Create States
      ********************************/
      function createCustomStates() {
          var customStates =
          [
              {
                  "name" : 'tv.programTime',
                  "path" : CONF_CUSTOM.path
              }
          ]
          
          channels.forEach(function(channel) {
              customStates.push(
                  {
                  "name" : 'tv.' + channel.replace(" ","").replace(" ","").replace(".","") + ".time",
                  "path" : CONF_CUSTOM.path
                  }
              )
              customStates.push(
                  {
                  "name" : 'tv.' + channel.replace(" ","").replace(" ","").replace(".","") + ".program",
                  "path" : CONF_CUSTOM.path
                  }
              )
              customStates.push(
                  {
                  "name" : 'tv.' + channel.replace(" ","").replace(" ","").replace(".","") + ".name",
                  "path" : CONF_CUSTOM.path
                  }
              )
          });
      
          
          createStates(customStates);
          return customStates;
      }
      /********************************
       * Config
      ********************************/
      function buildConfigObject(){
          var configObj = JSON.stringify(
              {
                  "path" : "value",
              }
          );
          return JSON.parse(configObj);
      };
      /********************************
       * End
      ********************************/
      

      In Jarvis kann dann noch eine Aktion hinzugefügt werden um direkt auf den Sender umzuschalten.

      posted in JavaScript
      JayR
      JayR
    • RE: [Showcase] Jarvis - just another remarkable vis

      Hallo zusammen, ich wollte mal mein aktuelles Jarvis vorstellen und auflisten wie mein aktuelles Setup aussieht.

      Ich betreibe mein iOBroker mit 3 verschiedenen PIs. Einer ist der Controller (Pi4) auf diesem laufen die Skripte und die Visualisierung außerdem läuft auf dem Gerät ein GitLab für die Versionierung meiner JS Skripte und mein agile Planung für die Entwicklung meines Smarthomes. Zusätzlich läuft auf der Maschine mein Unify Controller.

      Der zweite ist mein Collector (Pi4). Auf diesem laufen sämtliche Adapter, die Daten von allen smarten Geraten einsammeln oder von APIs aus dem Web beziehen. Außerdem laufen hier alle Skripte, die Daten beziehen. Dieser ist die Zentralen auf dem die ganzen Werte auf einer SSD gespeichert werden.

      Der dritte ist mein Samrtmeter Pi (Pi3) dieser ist in meinem Stromkasten und ist eigentlich nur für das ablesen meiner Stromzähler da. Zusätzlich macht dieser noch die Historiesierung von Werten. Dieser hat also nicht so viele aufgaben.

      Hier findet ihr ein paar Ausschnitte aus meinem Jarvis. Gerne könnt Ihr mir Tipps geben was ich noch ergänzen kann. Ich bin auch bereit meine Implementierungen mit euch zu teilen. Generell ist mein Ansatz, so viel wie möglich automatisch und intelligent über Scripte zu steuern und nur die nötigen Einstellungen oder Anzeigen ins Jarvis zu nehmen.


      1.png
      2.png
      3.png
      4.png
      5.png
      6.png
      7.png
      8.png
      9.png
      10.png

      posted in Visualisierung
      JayR
      JayR
    • RE: jarvis v2.2.0 - just another remarkable vis

      @Zefau said in jarvis v2.0.0 - just another remarkable vis:

      räte kopieren ist nun möglich (#149)
      Geräte filtern ist

      Danke. Ist wirklich nicht zu glauben wie schnell du die Visualisierung weiterentwickelst. Top Arbeit.
      Hab mein ganzes VIS auf Jarvis umgestellt, da ich damit Neuerungen ohne großen Aufwand implementieren kann.

      posted in Tester
      JayR
      JayR
    • RE: [Showcase] Jarvis - just another remarkable vis

      @Torrid said in [Showcase] Jarvis - just another remarkable vis:

      Hallo zusammen,

      ich zeige euch mal ein paar Seiten meines aktuellen Stands.
      Ein großes Dankeschön geht an Zefau für die Ermöglichung durch seine unermüdliche Weiterentwicklung.
      Er hat meine Leidenschaft geweckt und mich fast süchtig danach gemacht😁
      Ich lasse mich viel inspierieren von diesem Thread und bin tagtäglich auch im Tester Thread unterwegs.

      1.png
      2.png
      3.png
      4.png
      5.png
      6.png
      7.png
      8.png
      9.png
      10.png
      11.png
      12.png
      13.png

      Wie hast du das mit den News auf deiner Startseite realisiert

      posted in Visualisierung
      JayR
      JayR
    • RE: Test Adapter mihome-vacuum 3.x.x (STYJ02YM / Viomi)

      @Meistertr : Kann ich dich dabei unterstützen, den Fehler beim Mop Pro zu finden. Für mich wäre es sehr wichtig. dass es funktioniert.

      posted in Tester
      JayR
      JayR
    • RE: [Showcase] Jarvis - just another remarkable vis

      @flkontakt said in [Showcase] Jarvis - just another remarkable vis:

      @Torrid Hallo, wie hast du das mit der Übersicht aus dem Bring-Adapter und den Bus-Fahrzeiten gelöst? Hier habe ich noch keinen Ansatz für die Umsetzung gefunden. Ich möchte auch die Inhalte aus z.B. den Adapter Pollenflug integrieren, hier stehen einige Daten als JSON zur Verfügung. Aber wie kann ich JSON-Inhalten in Jarvis darstellen? Bin für jeden Tipp dankbar!

      Bring ist über VIs und dem Bring plugin realisiert und das wird dann über das iframe eingebunden

      posted in Visualisierung
      JayR
      JayR
    • RE: jarvis v2.2.0 - just another remarkable vis

      @FutureFX said in jarvis v2.1.0 - just another remarkable vis:

      @JayR @bastian-m https://github.com/Zefau/ioBroker.jarvis/issues/560

      @Zefau : Vielen Dank für die Behebung habe es getestet und es geht

      posted in Tester
      JayR
      JayR
    • RE: VIS: Grafana wird im Heimnetz nicht angezeigt

      @dutchman said in VIS: Grafana wird im Heimnetz nicht angezeigt:

      Das problem war ein ganz andere (danke anydesk)

      https mit Authentifizierung an im web adapter, kein https fuer grafana... dan sagt der browser einen non-https content auf einer https seiner ==> No fucking way BLOCK

      Zum Glück haben wir den Fehler gefunden 🙂
      Vielen Dank @Dutchman für deine Zeit und Hilfe 🙂

      posted in Visualisierung
      JayR
      JayR

    Latest posts made by JayR

    • RE: [Problem] blink4home adapter

      @steph-0 : Ja und zwar ich bin von iobroker auf Homeassistant gewechselt. Viel höhere Qualität und Zuverlässigkeit von Integrationen und weniger Aufwand automatisierungen zu erstellen.

      posted in ioBroker Allgemein
      JayR
      JayR
    • IoBroker vs. Homeassitant

      Was sind die Vorteile von ioBroker im Vergleich zu Homeasstant. Ich bin aktuell dabei mich für ein System zu entscheiden.

      posted in ioBroker Allgemein
      JayR
      JayR
    • RE: Fehler mit Ring Livestream

      @winnipuuh : Ne leider nicht und der Adapter funktioniert leider auch nicht zuverlässig. Finde die Qualität von manchen Adapter einfach nicht gut. Ich weiß alle Entwickler sind ehrenamtlich und verdienen damit kein Geld. Aber die Adapter sind ein ausschlaggebender Punkt für die Akzeptanz und die Qualität eines solchen Smarthomesystems.
      Bei Homeassistant ist die Qualität von Integrationen viel viel Besser leider ist das scripting und die individualisierung von visualisierung nicht einfach.

      Wenn ich mehr Zeit habe werde ich ein neuen Ring Adapter oder den Aktuellen neu entwickeln.

      posted in ioBroker Allgemein
      JayR
      JayR
    • RE: Zigbee Adapter und Conbee Unterstützung

      @arteck
      Ich bekomme mein Hue Button nicht verbunden. Es wird immer nur ein "?" angezeigt und der DP wird auch nicht angelegt.

      Bildschirmfoto 2021-01-27 um 07.37.22.png

      posted in Tester
      JayR
      JayR
    • RE: jarvis v2.2.0 - just another remarkable vis

      @merowinger : Genau das Problem hab ich auch mit der Beta 26. Vorher ging alles noch

      posted in Tester
      JayR
      JayR
    • RE: Schalter und Bewegungsmelder script

      @jayr said in Schalter und Bewegungsmelder script:

      Hi ich bin gerade dabei meine Schalter und Bewegungsmelder von der Hue Steuerung auf eine Steuerung über iobroker zu ändern.

      Hat jemand von euch ein Bsp. Skript wie er dies realisiert hat als kleine Start inspiration?

      ?

      posted in Skripten / Logik
      JayR
      JayR
    • Schalter und Bewegungsmelder script

      Hi ich bin gerade dabei meine Schalter und Bewegungsmelder von der Hue Steuerung auf eine Steuerung über iobroker zu ändern.

      Hat jemand von euch ein Bsp. Skript wie er dies realisiert hat als kleine Start inspiration?

      posted in Skripten / Logik
      JayR
      JayR
    • RE: Hue switch mit Zigbee funktioniert nicht

      @asgothian said in Hue switch mit Zigbee funktioniert nicht:

      @jayr

      Ich glaube zum Thema unvollständiges Log hatte ich oben schon mal was geschrieben. Wenn du in deinem Log mal nach rechts scrolls dann siehst du das die Zeilen abgeschnitten sind.

      Bitte

      • per "log herunterladen" das vollständige Log erhalten
      • die relevanten Zeilen heraus kopieren
      • diese posten.

      A.

      Hat sich erledigt

      posted in ioBroker Allgemein
      JayR
      JayR
    • RE: Hue switch mit Zigbee funktioniert nicht

      @asgothian: Sorry für die unvollständigen Logs. Dieses Problem mit der Installation ist nun behoben. Ein deinstallieren, Stick entfernen nur booten und installieren hat geholfen.

      Leider besteht noch das initiale Problem. Ich hab den Adapter auf verbose gestellt und bekomme Logs wenn ich eine Taste drück. Leider wir nur nichts in den DP geschrieben:

      
      zigbee.0	2021-01-24 11:18:04.327	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:18:04.326	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:18:04.324	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:18:03.623	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:18:03.622	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:18:03.620	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:18:02.785	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:18:02.785	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:18:02.783	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:18:02.229	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:18:02.228	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:18:02.225	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:18:01.646	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:18:01.645	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:18:01.644	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:18:00.918	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:18:00.917	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:18:00.916	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:18:00.473	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:18:00.472	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:18:00.470	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:18:00.127	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:18:00.126	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:18:00.124	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:17:59.766	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:17:59.765	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:17:59.763	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:17:59.323	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:17:59.322	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:17:59.321	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:17:57.786	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:17:57.785	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:17:57.783	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:17:57.350	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:17:57.349	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:17:57.348	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:53.016	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:53.015	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:53.014	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:52.209	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:52.208	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:52.207	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:51.537	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:51.536	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:51.535	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:50.940	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:50.937	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:50.935	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:50.286	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:50.284	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:50.282	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:49.601	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:49.600	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:49.599	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:44.572	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:44.572	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:44.570	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:21.205	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:21.205	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:21.203	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:21.118	warn	(12880) DeviceConfigure failed 0x001788010807f3a0 RWL021, attempt 5 (Error: Bind 0x001788010807f3a0/1 genLevelCtrl from '0x00124b0021b4972e/1' failed (AREQ - ZDO - bindRsp after 10000ms) at Timeou
      zigbee.0	2021-01-24 11:15:16.862	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:16.861	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:16.859	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:14.859	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:14.858	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:14.857	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:14.016	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:14.015	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:14.014	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:13.058	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:13.057	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:13.055	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:11.990	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:15:11.990	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:15:11.988	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:15:10.528	info	(12880) Configuring 0x001788010807f3a0 RWL021
      
      posted in ioBroker Allgemein
      JayR
      JayR
    • RE: Zigbee stick funktioniert nicht zuverlässig

      @arteck said in Zigbee stick funktioniert nicht zuverlässig:

      @jayr hmm... die scheinen wieder zu ziken.. hatte bei kollegen auch gerade das Phänomen

      adapter neustart hat gereicht und paar mal währenddessen den on knopp drücken..

      evtl. 10 sec. alle 4 knöppe dann mach sich der dimmer im Netz nochmal bemerkbar

      Jetzt sehe ich wenigstens mal was im Log. Der Tastendruck wird erkannt aber nichts in den DP geschrieben:

      zigbee.0	2021-01-24 11:14:09.503	info	(12880) Configuring 0x001788010807f3a0 RWL021
      zigbee.0	2021-01-24 11:14:09.503	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:14:09.502	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:14:09.501	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:14:07.458	warn	(12880) DeviceConfigure failed 0x001788010807f3a0 RWL021, attempt 3 (Error: Bind 0x001788010807f3a0/1 genLevelCtrl from '0x00124b0021b4972e/1' failed (AREQ - ZDO - bindRsp after 10000ms) at Timeou
      zigbee.0	2021-01-24 11:14:07.113	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:14:07.112	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:14:07.111	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:14:01.719	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:14:01.719	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:14:01.716	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:14:00.864	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:14:00.863	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:14:00.862	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:14:00.202	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:14:00.201	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:14:00.200	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:13:59.636	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:13:59.635	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:13:59.634	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:13:58.839	debug	(12880) Type commandOn device {"type":"device","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49
      zigbee.0	2021-01-24 11:13:58.839	debug	(12880) Received Zigbee message from '0x001788010807f3a0', type 'commandOn', cluster 'genOnOff', data '{}' from endpoint 1 with groupID 0
      zigbee.0	2021-01-24 11:13:58.837	debug	(12880) handleMessage. {"type":"commandOn","device":{"ID":5,"_type":"EndDevice","_ieeeAddr":"0x001788010807f3a0","_networkAddress":37743,"_manufacturerID":4107,"_endpoints":[{"ID":1,"profileID":49246,
      zigbee.0	2021-01-24 11:13:56.836	debug	(12880) Publish LQ for 0x001788010807f3a0 = 10
      
      posted in ioBroker Allgemein
      JayR
      JayR
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo