Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • 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

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Skripten / Logik
  4. Node-Red
  5. [Gelöst] Benötige Hilfe mit Node-Red in Verbindung mit homee

NEWS

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    11
    1
    523

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    24
    1
    1.7k

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    9.6k

[Gelöst] Benötige Hilfe mit Node-Red in Verbindung mit homee

Geplant Angeheftet Gesperrt Verschoben Node-Red
node-red
121 Beiträge 3 Kommentatoren 17.3k Aufrufe 4 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • O Oli

    @mickym
    kann ich auch nach Wörtern im Namen suchen? So wie ich es versucht habe klappt es nicht

    "test" : $count(payload[note = note.indexof("Plug")])
    
    mickymM Online
    mickymM Online
    mickym
    Most Active
    schrieb am zuletzt editiert von mickym
    #85

    @oli wenn du meine Flows importiert hättest: https://forum.iobroker.net/post/962432

    dann hättest Du gesehen, dass ich aus der Tabelle den Status der aktiven, inaktiven Geräte über die Stringsuche $contains durchgeführt habe.

    In meinem letzten Posting habe ich Dir übrigens auch mit einer function Node gezeigt, wie Du auf das Array mit den Geräten zugreifst. Dann nimm halt das, wenn Du lieber Javascript nimmst.

    Es zwingt Dich niemand JSONATA zu nutzen:

    2e131243-ebdd-4a84-b45b-0a6dc25bad68-image.png

    Nur auch bei JavaScript musst Du bei indexOf auf ungleich -1 abprüfen, da -1 nicht falsch ist (also nicht 0) würde Deine Abfrage eh nicht gehen.

    Hier der Javascript Code:

    msg.payload = msg.payload.filter(device => (device.note.indexOf("Plug") !== -1)).length;
    return msg;
    

    Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

    O 1 Antwort Letzte Antwort
    0
    • mickymM mickym

      @oli wenn du meine Flows importiert hättest: https://forum.iobroker.net/post/962432

      dann hättest Du gesehen, dass ich aus der Tabelle den Status der aktiven, inaktiven Geräte über die Stringsuche $contains durchgeführt habe.

      In meinem letzten Posting habe ich Dir übrigens auch mit einer function Node gezeigt, wie Du auf das Array mit den Geräten zugreifst. Dann nimm halt das, wenn Du lieber Javascript nimmst.

      Es zwingt Dich niemand JSONATA zu nutzen:

      2e131243-ebdd-4a84-b45b-0a6dc25bad68-image.png

      Nur auch bei JavaScript musst Du bei indexOf auf ungleich -1 abprüfen, da -1 nicht falsch ist (also nicht 0) würde Deine Abfrage eh nicht gehen.

      Hier der Javascript Code:

      msg.payload = msg.payload.filter(device => (device.note.indexOf("Plug") !== -1)).length;
      return msg;
      
      O Online
      O Online
      Oli
      schrieb am zuletzt editiert von
      #86

      @mickym

      aber wie setzte ich das in eine Change Node?

      Gruß
      Oliver

      mickymM 1 Antwort Letzte Antwort
      0
      • O Oli

        @mickym

        aber wie setzte ich das in eine Change Node?

        mickymM Online
        mickymM Online
        mickym
        Most Active
        schrieb am zuletzt editiert von mickym
        #87

        @oli Gar nicht. Wenn Du in Javascript programmieren willst dann nimmst du eine function Node so wie ich unten.

        Wenn Du eine ChangeNode verwenden willst dann JSONATA und wie gesagt in dem Flow den ich Dir gepostet habe ist die Syntax mit $contains.

        Wie gesagt, wenn Du mit Javascript besser zurecht kommst, dann das halt. In der function Node habe ich Dir ja auch gezeigt, wie Du auf die Objekte aus der Change Node zugreifst. Es ist alles in der msg.payload. Deine function Node - ist im Grunde Deine Change Node mit der Du das Nachrichtenobjekt so veränderst, wie Du es haben willst.

        Oder ich verstehe Deine Frage nicht, aber letztlich ging es Dir doch darum, wie Du die Anzahl der Geräte zurückbekommst, in den "Plug" in der note des Gerätes enthalten ist und das gibt doch die function Node unten aus???

        Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

        O 1 Antwort Letzte Antwort
        0
        • mickymM mickym

          @oli Gar nicht. Wenn Du in Javascript programmieren willst dann nimmst du eine function Node so wie ich unten.

          Wenn Du eine ChangeNode verwenden willst dann JSONATA und wie gesagt in dem Flow den ich Dir gepostet habe ist die Syntax mit $contains.

          Wie gesagt, wenn Du mit Javascript besser zurecht kommst, dann das halt. In der function Node habe ich Dir ja auch gezeigt, wie Du auf die Objekte aus der Change Node zugreifst. Es ist alles in der msg.payload. Deine function Node - ist im Grunde Deine Change Node mit der Du das Nachrichtenobjekt so veränderst, wie Du es haben willst.

          Oder ich verstehe Deine Frage nicht, aber letztlich ging es Dir doch darum, wie Du die Anzahl der Geräte zurückbekommst, in den "Plug" in der note des Gerätes enthalten ist und das gibt doch die function Node unten aus???

          O Online
          O Online
          Oli
          schrieb am zuletzt editiert von
          #88

          @mickym
          Eigentlich wollte ich in der Tabelle unter Batterie noch zusätzlich überprüfen, ob in der "note" das Wort "Plug" vorkommt, wenn ja ,dann Text "Strombetrieben", wenn nein, dann Text "Keine Information vorhanden".

          Gruß
          Oliver

          mickymM 2 Antworten Letzte Antwort
          0
          • O Oli

            @mickym
            Eigentlich wollte ich in der Tabelle unter Batterie noch zusätzlich überprüfen, ob in der "note" das Wort "Plug" vorkommt, wenn ja ,dann Text "Strombetrieben", wenn nein, dann Text "Keine Information vorhanden".

            mickymM Online
            mickymM Online
            mickym
            Most Active
            schrieb am zuletzt editiert von
            #89

            @oli Wie gesagt mir wird das selbst unter JSONATA zu kompliziert, in diesem Fall nimmst Du wohl wirklich besser Javascript. Ich empfehle Dir dann einfach, wie ich mit der function Node direkt das Array mit allen Geräten als Basis zu nehmen und dann Dein JSON Array für die Tabelle in einer function Node aufzubauen. Da Du ja eh mit Javascript besser vertraut bist und das immer komplizierter wird, ist das sicher der bessere Ansatz.

            Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

            1 Antwort Letzte Antwort
            0
            • O Oli

              @mickym
              Eigentlich wollte ich in der Tabelle unter Batterie noch zusätzlich überprüfen, ob in der "note" das Wort "Plug" vorkommt, wenn ja ,dann Text "Strombetrieben", wenn nein, dann Text "Keine Information vorhanden".

              mickymM Online
              mickymM Online
              mickym
              Most Active
              schrieb am zuletzt editiert von
              #90

              @oli sagte in Benötige Hilfe mit Node-Red in Verbindung mit homee:

              @mickym
              Eigentlich wollte ich in der Tabelle unter Batterie noch zusätzlich überprüfen, ob in der "note" das Wort "Plug" vorkommt, wenn ja ,dann Text "Strombetrieben", wenn nein, dann Text "Keine Information vorhanden".

              Was steht denn jetzt in Deiner Tabelle für battery drin?

              "Keine Batterie" oder gar nichts? Dann versuche ich es ein letztes Mal noch mit meinen Mitteln.

              Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

              O 1 Antwort Letzte Antwort
              0
              • mickymM mickym

                @oli sagte in Benötige Hilfe mit Node-Red in Verbindung mit homee:

                @mickym
                Eigentlich wollte ich in der Tabelle unter Batterie noch zusätzlich überprüfen, ob in der "note" das Wort "Plug" vorkommt, wenn ja ,dann Text "Strombetrieben", wenn nein, dann Text "Keine Information vorhanden".

                Was steht denn jetzt in Deiner Tabelle für battery drin?

                "Keine Batterie" oder gar nichts? Dann versuche ich es ein letztes Mal noch mit meinen Mitteln.

                O Online
                O Online
                Oli
                schrieb am zuletzt editiert von
                #91

                @mickym

                Danke

                [
                   {
                       "id": "95b979349f1fd3f0",
                       "type": "ioBroker out",
                       "z": "b8ad42061a6d5f2e",
                       "name": "Geräteliste",
                       "topic": "0_userdata.0.System.homee.Tabelle",
                       "ack": "true",
                       "autoCreate": "true",
                       "stateName": "0_userdata.0.System.homee.Tabelle",
                       "role": "",
                       "payloadType": "array",
                       "readonly": "false",
                       "stateUnit": "",
                       "stateMin": "",
                       "stateMax": "",
                       "x": 1570,
                       "y": 1500,
                       "wires": []
                   },
                   {
                       "id": "1b3e55fcd8eadc58",
                       "type": "debug",
                       "z": "b8ad42061a6d5f2e",
                       "name": "Geräte Tabelle",
                       "active": false,
                       "tosidebar": true,
                       "console": false,
                       "tostatus": false,
                       "complete": "payload",
                       "targetType": "msg",
                       "statusVal": "",
                       "statusType": "auto",
                       "x": 1380,
                       "y": 1440,
                       "wires": []
                   },
                   {
                       "id": "9c7798317b60270e",
                       "type": "json",
                       "z": "b8ad42061a6d5f2e",
                       "name": "Tabelle JSON",
                       "property": "payload",
                       "action": "str",
                       "pretty": false,
                       "x": 1380,
                       "y": 1500,
                       "wires": [
                           [
                               "95b979349f1fd3f0"
                           ]
                       ]
                   },
                   {
                       "id": "dfb85691acadb5e8",
                       "type": "change",
                       "z": "b8ad42061a6d5f2e",
                       "name": "Geräte Tabelle",
                       "rules": [
                           {
                               "t": "set",
                               "p": "protocols",
                               "pt": "msg",
                               "to": "[{\"id\":1,\"name\":\"Z-Wave\",\"color\":\"#886fa9\"},{\"id\":2,\"name\":\"ZigBee\",\"color\":\"#ee6c1e\"},{\"id\":3,\"name\":\"EnOcean\",\"color\":\"#44abb2\"},{\"id\":9,\"name\":\"WLAN\",\"color\":\"#8f8f8f\"},{\"id\":12,\"name\":\"WLAN\",\"color\":\"#8f8f8f\"}]",
                               "tot": "json"
                           },
                           {
                               "t": "set",
                               "p": "states",
                               "pt": "msg",
                               "to": "[{\"id\":1,\"name\":\"aktiv\",\"color\":\"green\"},{\"id\":2,\"name\":\"inaktiv\",\"color\":\"red\"},{\"id\":12,\"name\":\"wird aktualisiert\",\"color\":\"orange\"}]",
                               "tot": "json"
                           },
                           {
                               "t": "set",
                               "p": "battery",
                               "pt": "msg",
                               "to": "[{\"level\":30,\"color\":\"green\"},{\"level\":20,\"color\":\"yellow\"},{\"level\":15,\"color\":\"orange\"},{\"level\":0,\"color\":\"red\"}]",
                               "tot": "json"
                           },
                           {
                               "t": "set",
                               "p": "payload",
                               "pt": "msg",
                               "to": "payload.{\"name\" :name,\t        \"type\" : note,\t        \"protocol\" : ' <font color=\\\"' & $single($$.protocols, function($v){$v.id = protocol}).color & '\\\"> ' & $single($$.protocols, function($v){$v.id = protocol}).name,\t        \"state\" : ' <font color=\\\"' & $single($$.states, function($v){$v.id = state}).color & '\\\"> ' & $single($$.states, function($v){$v.id = state}).name,\t        \"battery\" : (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 8 ? attributes[type=8 ].current_value : \t        (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 69 ? attributes[type=69 ].current_value = 0 ? 100 : 10\t} ~> |$|{\"battery\" : $exists(battery) ? ' <font color=\\\"' & $filter($$.battery, function($v){battery >= $v.level})[0].color & '\\\"> ' & battery & \" %\" : \"Keine Batterie\"}|",
                               "tot": "jsonata"
                           }
                       ],
                       "action": "",
                       "property": "",
                       "from": "",
                       "to": "",
                       "reg": false,
                       "x": 1120,
                       "y": 1500,
                       "wires": [
                           [
                               "9c7798317b60270e",
                               "1b3e55fcd8eadc58"
                           ]
                       ]
                   }
                ]
                

                Gruß
                Oliver

                mickymM 1 Antwort Letzte Antwort
                0
                • O Oli

                  @mickym

                  Danke

                  [
                     {
                         "id": "95b979349f1fd3f0",
                         "type": "ioBroker out",
                         "z": "b8ad42061a6d5f2e",
                         "name": "Geräteliste",
                         "topic": "0_userdata.0.System.homee.Tabelle",
                         "ack": "true",
                         "autoCreate": "true",
                         "stateName": "0_userdata.0.System.homee.Tabelle",
                         "role": "",
                         "payloadType": "array",
                         "readonly": "false",
                         "stateUnit": "",
                         "stateMin": "",
                         "stateMax": "",
                         "x": 1570,
                         "y": 1500,
                         "wires": []
                     },
                     {
                         "id": "1b3e55fcd8eadc58",
                         "type": "debug",
                         "z": "b8ad42061a6d5f2e",
                         "name": "Geräte Tabelle",
                         "active": false,
                         "tosidebar": true,
                         "console": false,
                         "tostatus": false,
                         "complete": "payload",
                         "targetType": "msg",
                         "statusVal": "",
                         "statusType": "auto",
                         "x": 1380,
                         "y": 1440,
                         "wires": []
                     },
                     {
                         "id": "9c7798317b60270e",
                         "type": "json",
                         "z": "b8ad42061a6d5f2e",
                         "name": "Tabelle JSON",
                         "property": "payload",
                         "action": "str",
                         "pretty": false,
                         "x": 1380,
                         "y": 1500,
                         "wires": [
                             [
                                 "95b979349f1fd3f0"
                             ]
                         ]
                     },
                     {
                         "id": "dfb85691acadb5e8",
                         "type": "change",
                         "z": "b8ad42061a6d5f2e",
                         "name": "Geräte Tabelle",
                         "rules": [
                             {
                                 "t": "set",
                                 "p": "protocols",
                                 "pt": "msg",
                                 "to": "[{\"id\":1,\"name\":\"Z-Wave\",\"color\":\"#886fa9\"},{\"id\":2,\"name\":\"ZigBee\",\"color\":\"#ee6c1e\"},{\"id\":3,\"name\":\"EnOcean\",\"color\":\"#44abb2\"},{\"id\":9,\"name\":\"WLAN\",\"color\":\"#8f8f8f\"},{\"id\":12,\"name\":\"WLAN\",\"color\":\"#8f8f8f\"}]",
                                 "tot": "json"
                             },
                             {
                                 "t": "set",
                                 "p": "states",
                                 "pt": "msg",
                                 "to": "[{\"id\":1,\"name\":\"aktiv\",\"color\":\"green\"},{\"id\":2,\"name\":\"inaktiv\",\"color\":\"red\"},{\"id\":12,\"name\":\"wird aktualisiert\",\"color\":\"orange\"}]",
                                 "tot": "json"
                             },
                             {
                                 "t": "set",
                                 "p": "battery",
                                 "pt": "msg",
                                 "to": "[{\"level\":30,\"color\":\"green\"},{\"level\":20,\"color\":\"yellow\"},{\"level\":15,\"color\":\"orange\"},{\"level\":0,\"color\":\"red\"}]",
                                 "tot": "json"
                             },
                             {
                                 "t": "set",
                                 "p": "payload",
                                 "pt": "msg",
                                 "to": "payload.{\"name\" :name,\t        \"type\" : note,\t        \"protocol\" : ' <font color=\\\"' & $single($$.protocols, function($v){$v.id = protocol}).color & '\\\"> ' & $single($$.protocols, function($v){$v.id = protocol}).name,\t        \"state\" : ' <font color=\\\"' & $single($$.states, function($v){$v.id = state}).color & '\\\"> ' & $single($$.states, function($v){$v.id = state}).name,\t        \"battery\" : (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 8 ? attributes[type=8 ].current_value : \t        (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 69 ? attributes[type=69 ].current_value = 0 ? 100 : 10\t} ~> |$|{\"battery\" : $exists(battery) ? ' <font color=\\\"' & $filter($$.battery, function($v){battery >= $v.level})[0].color & '\\\"> ' & battery & \" %\" : \"Keine Batterie\"}|",
                                 "tot": "jsonata"
                             }
                         ],
                         "action": "",
                         "property": "",
                         "from": "",
                         "to": "",
                         "reg": false,
                         "x": 1120,
                         "y": 1500,
                         "wires": [
                             [
                                 "9c7798317b60270e",
                                 "1b3e55fcd8eadc58"
                             ]
                         ]
                     }
                  ]
                  

                  mickymM Online
                  mickymM Online
                  mickym
                  Most Active
                  schrieb am zuletzt editiert von mickym
                  #92

                  @oli

                  Bitte sehr:

                  [
                     {
                         "id": "ec3a06e2c6315f14",
                         "type": "change",
                         "z": "9c280ddf049b2b4d",
                         "name": "VIS Tabelle 7",
                         "rules": [
                             {
                                 "t": "set",
                                 "p": "protocols",
                                 "pt": "msg",
                                 "to": "[{\"id\":1,\"name\":\"ZWave\"},{\"id\":2,\"name\":\"Zigbee\"},{\"id\":3,\"name\":\"EnOcean\"},{\"id\":9,\"name\":\"WLan\"}]",
                                 "tot": "json"
                             },
                             {
                                 "t": "set",
                                 "p": "states",
                                 "pt": "msg",
                                 "to": "[{\"id\":1,\"name\":\"aktiv\",\"color\":\"green\"},{\"id\":2,\"name\":\"inaktiv\",\"color\":\"rot\"},{\"id\":12,\"name\":\"wird aktualisiert\",\"color\":\"orange\"}]",
                                 "tot": "json"
                             },
                             {
                                 "t": "set",
                                 "p": "battery",
                                 "pt": "msg",
                                 "to": "[{\"level\":30,\"color\":\"green\"},{\"level\":20,\"color\":\"yellow\"},{\"level\":15,\"color\":\"orange\"},{\"level\":0,\"color\":\"red\"}]",
                                 "tot": "json"
                             },
                             {
                                 "t": "set",
                                 "p": "payload",
                                 "pt": "msg",
                                 "to": "payload.{\"name\" :name,\t        \"type\" : cube_type,\t        \"note\" : note,\t        \"protocol\" : $single($$.protocols, function($v){$v.id = protocol}).name,\t        \"state\" : ' <font color=\\\"' & $single($$.states, function($v){$v.id = state}).color & '\\\"> ' & $single($$.states, function($v){$v.id = state}).name,\t        \"battery\" : (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 8 ? attributes[type=8 ].current_value : \t        (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 69 ? attributes[type=69 ].current_value = 0 ? 100 : 0\t} ~> |$|{\"battery\" : $exists(battery) ? ' <font color=\\\"' & $filter($$.battery, function($v){battery >= $v.level})[0].color & '\\\"> ' & battery & \" %\" : \t$contains(note,\"Plug\") ? \"Strombetrieben\": \"Keine Information vorhanden\"},\"note\"|\t",
                                 "tot": "jsonata"
                             }
                         ],
                         "action": "",
                         "property": "",
                         "from": "",
                         "to": "",
                         "reg": false,
                         "x": 1550,
                         "y": 3220,
                         "wires": [
                             [
                                 "04161f23a6913ee8"
                             ]
                         ]
                     }
                  ]
                  

                  41b8d610-dd93-497a-8e00-82d062fcd5df-image.png

                  Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

                  O 1 Antwort Letzte Antwort
                  0
                  • mickymM mickym

                    @oli

                    Bitte sehr:

                    [
                       {
                           "id": "ec3a06e2c6315f14",
                           "type": "change",
                           "z": "9c280ddf049b2b4d",
                           "name": "VIS Tabelle 7",
                           "rules": [
                               {
                                   "t": "set",
                                   "p": "protocols",
                                   "pt": "msg",
                                   "to": "[{\"id\":1,\"name\":\"ZWave\"},{\"id\":2,\"name\":\"Zigbee\"},{\"id\":3,\"name\":\"EnOcean\"},{\"id\":9,\"name\":\"WLan\"}]",
                                   "tot": "json"
                               },
                               {
                                   "t": "set",
                                   "p": "states",
                                   "pt": "msg",
                                   "to": "[{\"id\":1,\"name\":\"aktiv\",\"color\":\"green\"},{\"id\":2,\"name\":\"inaktiv\",\"color\":\"rot\"},{\"id\":12,\"name\":\"wird aktualisiert\",\"color\":\"orange\"}]",
                                   "tot": "json"
                               },
                               {
                                   "t": "set",
                                   "p": "battery",
                                   "pt": "msg",
                                   "to": "[{\"level\":30,\"color\":\"green\"},{\"level\":20,\"color\":\"yellow\"},{\"level\":15,\"color\":\"orange\"},{\"level\":0,\"color\":\"red\"}]",
                                   "tot": "json"
                               },
                               {
                                   "t": "set",
                                   "p": "payload",
                                   "pt": "msg",
                                   "to": "payload.{\"name\" :name,\t        \"type\" : cube_type,\t        \"note\" : note,\t        \"protocol\" : $single($$.protocols, function($v){$v.id = protocol}).name,\t        \"state\" : ' <font color=\\\"' & $single($$.states, function($v){$v.id = state}).color & '\\\"> ' & $single($$.states, function($v){$v.id = state}).name,\t        \"battery\" : (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 8 ? attributes[type=8 ].current_value : \t        (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 69 ? attributes[type=69 ].current_value = 0 ? 100 : 0\t} ~> |$|{\"battery\" : $exists(battery) ? ' <font color=\\\"' & $filter($$.battery, function($v){battery >= $v.level})[0].color & '\\\"> ' & battery & \" %\" : \t$contains(note,\"Plug\") ? \"Strombetrieben\": \"Keine Information vorhanden\"},\"note\"|\t",
                                   "tot": "jsonata"
                               }
                           ],
                           "action": "",
                           "property": "",
                           "from": "",
                           "to": "",
                           "reg": false,
                           "x": 1550,
                           "y": 3220,
                           "wires": [
                               [
                                   "04161f23a6913ee8"
                               ]
                           ]
                       }
                    ]
                    

                    41b8d610-dd93-497a-8e00-82d062fcd5df-image.png

                    O Online
                    O Online
                    Oli
                    schrieb am zuletzt editiert von
                    #93

                    @mickym

                    Vielen Dank, noch eine letzte Fragen und dann bist du mich los, versprochen!!!!!

                    Wenn der Flow nicht nur bei einer State Änderung ausgeführt werden soll, sondern auch, wenn sich an den Batterien was ändert, oder sich die Anzahl der Gräte ändert.

                    Wie muss ich das schreiben?

                    09045ec1-4792-427c-a1cb-856dfdd2126a-image.png

                    Gruß
                    Oliver

                    mickymM 1 Antwort Letzte Antwort
                    0
                    • O Oli

                      @mickym

                      Vielen Dank, noch eine letzte Fragen und dann bist du mich los, versprochen!!!!!

                      Wenn der Flow nicht nur bei einer State Änderung ausgeführt werden soll, sondern auch, wenn sich an den Batterien was ändert, oder sich die Anzahl der Gräte ändert.

                      Wie muss ich das schreiben?

                      09045ec1-4792-427c-a1cb-856dfdd2126a-image.png

                      mickymM Online
                      mickymM Online
                      mickym
                      Most Active
                      schrieb am zuletzt editiert von
                      #94

                      @oli Ich bin mir nicht mal sicher ob der Filter funktioniert, da ich keine Ahnung habe wann Du wo den globalen Kontext schreibst. Wenn der Kontext noch alt ist und das Gerät neue Information hat dann geht es. Es funktioniert auch jetzt schon bei neuen Geräten, da dann ja im Kontext das Gerät noch nicht enthalten ist und in sofern der state nicht gleich sein kann.

                      [
                         {
                             "id": "8d51d3dcf40934ba",
                             "type": "switch",
                             "z": "9c280ddf049b2b4d",
                             "name": "Nur wenn Gerätestatus geändert",
                             "property": "(\t   payload.nodes[id=$$.device.node.id].state = device.node.state\t) and (\t   payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value\t)",
                             "propertyType": "jsonata",
                             "rules": [
                                 {
                                     "t": "false"
                                 }
                             ],
                             "checkall": "true",
                             "repair": false,
                             "outputs": 1,
                             "x": 1170,
                             "y": 3280,
                             "wires": [
                                 [
                                     "43da9c222d7086f2",
                                     "43fca4060b0a75d7"
                                 ]
                             ]
                         }
                      ]
                      

                      7baddeb4-3099-4983-8da3-11a7a75f0d43-image.png

                      (
                         payload.nodes[id=$$.device.node.id].state = device.node.state
                      ) and (
                         payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value
                      )
                      

                      Wie gesagt - ich habe momentan nicht das Gefühl dass Du was zu NodeRed lernen möchtest, sondern dass ich Deine vis Tabelle perfektioniere.

                      Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

                      O 1 Antwort Letzte Antwort
                      0
                      • mickymM mickym

                        @oli Ich bin mir nicht mal sicher ob der Filter funktioniert, da ich keine Ahnung habe wann Du wo den globalen Kontext schreibst. Wenn der Kontext noch alt ist und das Gerät neue Information hat dann geht es. Es funktioniert auch jetzt schon bei neuen Geräten, da dann ja im Kontext das Gerät noch nicht enthalten ist und in sofern der state nicht gleich sein kann.

                        [
                           {
                               "id": "8d51d3dcf40934ba",
                               "type": "switch",
                               "z": "9c280ddf049b2b4d",
                               "name": "Nur wenn Gerätestatus geändert",
                               "property": "(\t   payload.nodes[id=$$.device.node.id].state = device.node.state\t) and (\t   payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value\t)",
                               "propertyType": "jsonata",
                               "rules": [
                                   {
                                       "t": "false"
                                   }
                               ],
                               "checkall": "true",
                               "repair": false,
                               "outputs": 1,
                               "x": 1170,
                               "y": 3280,
                               "wires": [
                                   [
                                       "43da9c222d7086f2",
                                       "43fca4060b0a75d7"
                                   ]
                               ]
                           }
                        ]
                        

                        7baddeb4-3099-4983-8da3-11a7a75f0d43-image.png

                        (
                           payload.nodes[id=$$.device.node.id].state = device.node.state
                        ) and (
                           payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value
                        )
                        

                        Wie gesagt - ich habe momentan nicht das Gefühl dass Du was zu NodeRed lernen möchtest, sondern dass ich Deine vis Tabelle perfektioniere.

                        O Online
                        O Online
                        Oli
                        schrieb am zuletzt editiert von
                        #95

                        @mickym said in Benötige Hilfe mit Node-Red in Verbindung mit homee:

                        payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value

                        Jetzt noch eine Verständnisfrage, warum schreibst du "and" und nicht "or"

                        Gruß
                        Oliver

                        mickymM 2 Antworten Letzte Antwort
                        0
                        • O Oli

                          @mickym said in Benötige Hilfe mit Node-Red in Verbindung mit homee:

                          payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value

                          Jetzt noch eine Verständnisfrage, warum schreibst du "and" und nicht "or"

                          mickymM Online
                          mickymM Online
                          mickym
                          Most Active
                          schrieb am zuletzt editiert von
                          #96

                          @oli Ja im Moment funktioniert mein Test nicht mehr - muss noch mal schauen. Ich denke es muss and sein, da ja nur wenn beide Bedingungen wahr sind, nichts geändert wurde. Ich muss das aber nochmal testen, wie es sich mit nicht batteriebetriebenen Geräten verhält.

                          Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

                          1 Antwort Letzte Antwort
                          0
                          • O Oli

                            @mickym said in Benötige Hilfe mit Node-Red in Verbindung mit homee:

                            payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value

                            Jetzt noch eine Verständnisfrage, warum schreibst du "and" und nicht "or"

                            mickymM Online
                            mickymM Online
                            mickym
                            Most Active
                            schrieb am zuletzt editiert von mickym
                            #97

                            @oli So ich habs jetzt getestet musste nochmal geändert werden. Wie gesagt es muss AND sein, weil ja nur dann nichts geändert wurde, wenn beide Parameter nicht geändert wurden.

                            So um das für strom und batteriegebundenen Geräten zu gültig zu machen, ist die Bedingung doch etwas komplizierter:

                            7028dbec-d0f6-425b-b5dc-42357d41383d-image.png

                            Du kannst selbst testen: Gerät 62 ist batteriegebunden, Gerät 71 strom. Wenn Du state änderst funktioniert es und wenn Du current_value im attribute type 8 änderst.

                            [
                               {
                                   "id": "dfd67d5090a5ee3c",
                                   "type": "change",
                                   "z": "9c280ddf049b2b4d",
                                   "name": "",
                                   "rules": [
                                       {
                                           "t": "move",
                                           "p": "payload",
                                           "pt": "msg",
                                           "to": "device",
                                           "tot": "msg"
                                       }
                                   ],
                                   "action": "",
                                   "property": "",
                                   "from": "",
                                   "to": "",
                                   "reg": false,
                                   "x": 700,
                                   "y": 3280,
                                   "wires": [
                                       [
                                           "40ce65fe6c573d84"
                                       ]
                                   ]
                               },
                               {
                                   "id": "40ce65fe6c573d84",
                                   "type": "change",
                                   "z": "9c280ddf049b2b4d",
                                   "name": "hole alle Geräte",
                                   "rules": [
                                       {
                                           "t": "set",
                                           "p": "payload",
                                           "pt": "msg",
                                           "to": "{}",
                                           "tot": "json"
                                       },
                                       {
                                           "t": "set",
                                           "p": "payload.nodes",
                                           "pt": "msg",
                                           "to": "homee.nodes",
                                           "tot": "global"
                                       }
                                   ],
                                   "action": "",
                                   "property": "",
                                   "from": "",
                                   "to": "",
                                   "reg": false,
                                   "x": 920,
                                   "y": 3280,
                                   "wires": [
                                       [
                                           "8d51d3dcf40934ba"
                                       ]
                                   ]
                               },
                               {
                                   "id": "8d51d3dcf40934ba",
                                   "type": "switch",
                                   "z": "9c280ddf049b2b4d",
                                   "name": "Nur wenn Gerätestatus geändert",
                                   "property": "(\t   payload.nodes[id=$$.device.node.id].state = device.node.state\t) and (\t   device.node.attributes[type=8] ? payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value : true\t)",
                                   "propertyType": "jsonata",
                                   "rules": [
                                       {
                                           "t": "false"
                                       }
                                   ],
                                   "checkall": "true",
                                   "repair": false,
                                   "outputs": 1,
                                   "x": 1170,
                                   "y": 3280,
                                   "wires": [
                                       [
                                           "43da9c222d7086f2",
                                           "43fca4060b0a75d7"
                                       ]
                                   ]
                               },
                               {
                                   "id": "ce392b92472130c0",
                                   "type": "switch",
                                   "z": "9c280ddf049b2b4d",
                                   "name": "verify device",
                                   "property": "payload.node",
                                   "propertyType": "msg",
                                   "rules": [
                                       {
                                           "t": "nnull"
                                       }
                                   ],
                                   "checkall": "true",
                                   "repair": false,
                                   "outputs": 1,
                                   "x": 490,
                                   "y": 3280,
                                   "wires": [
                                       [
                                           "dfd67d5090a5ee3c"
                                       ]
                                   ]
                               },
                               {
                                   "id": "5af35c4e9a5c92c8",
                                   "type": "link in",
                                   "z": "9c280ddf049b2b4d",
                                   "name": "",
                                   "links": [
                                       "d87f2174cf715cf2"
                                   ],
                                   "x": 355,
                                   "y": 3280,
                                   "wires": [
                                       [
                                           "ce392b92472130c0"
                                       ]
                                   ]
                               },
                               {
                                   "id": "c89774bbb921130b",
                                   "type": "inject",
                                   "z": "9c280ddf049b2b4d",
                                   "name": "Gerät 62",
                                   "props": [
                                       {
                                           "p": "payload"
                                       }
                                   ],
                                   "repeat": "",
                                   "crontab": "",
                                   "once": false,
                                   "onceDelay": 0.1,
                                   "topic": "",
                                   "payload": "{\"node\":{\"added\":1646555512,\"attributes\":[{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"4.61\",\"editable\":0,\"id\":398,\"instance\":0,\"last_changed\":0,\"last_value\":0,\"maximum\":0,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":44,\"unit\":\"text\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"0.16\",\"editable\":0,\"id\":399,\"instance\":0,\"last_changed\":0,\"last_value\":0,\"maximum\":0,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":45,\"unit\":\"text\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":400,\"instance\":0,\"last_changed\":1675339200,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":91,\"unit\":\"\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":20,\"data\":\"\",\"editable\":0,\"id\":401,\"instance\":0,\"last_changed\":1678481730,\"last_value\":22,\"maximum\":100,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"options\":{\"automations\":[\"step\"]},\"state\":1,\"step_value\":1,\"target_value\":20,\"type\":18,\"unit\":\"%25\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":55,\"data\":\"\",\"editable\":0,\"id\":402,\"instance\":0,\"last_changed\":1678428470,\"last_value\":85,\"maximum\":100,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"options\":{\"history\":{\"day\":182,\"month\":6,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":55,\"type\":8,\"unit\":\"%25\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":1,\"id\":403,\"instance\":0,\"last_changed\":1678428470,\"last_value\":1,\"maximum\":4,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":258,\"unit\":\"\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":404,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":180,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":180,\"target_value\":0,\"type\":90,\"unit\":\"%C2%B0\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":405,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":30,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":5,\"target_value\":0,\"type\":259,\"unit\":\"s\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":1,\"id\":406,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":260,\"unit\":\"\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":2,\"data\":\"\",\"editable\":1,\"id\":407,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":3,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":2,\"type\":261,\"unit\":\"\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":408,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":5,\"minimum\":-5,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":0.1,\"target_value\":0,\"type\":64,\"unit\":\"%C2%B0C\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":20.87,\"data\":\"\",\"editable\":0,\"id\":409,\"instance\":0,\"last_changed\":1678481730,\"last_value\":20.78,\"maximum\":125,\"minimum\":-50,\"name\":\"\",\"node_id\":62,\"options\":{\"can_observe\":[5],\"history\":{\"day\":1,\"month\":6,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":20.87,\"type\":5,\"unit\":\"%C2%B0C\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":21,\"data\":\"\",\"editable\":1,\"id\":410,\"instance\":0,\"last_changed\":1678428171,\"last_value\":21,\"maximum\":28,\"minimum\":8,\"name\":\"\",\"node_id\":62,\"options\":{\"automations\":[\"step\"],\"can_observe\":[6],\"history\":{\"day\":35,\"month\":1,\"stepped\":true,\"week\":5}},\"state\":1,\"step_value\":0.5,\"target_value\":21,\"type\":6,\"unit\":\"%C2%B0C\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":0,\"id\":411,\"instance\":0,\"last_changed\":1674031459,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"options\":{\"history\":{\"day\":182,\"month\":6,\"stepped\":true,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":69,\"unit\":\"\"},{\"based_on\":0,\"changed_by\":0,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":1,\"id\":493,\"instance\":0,\"last_changed\":0,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":385,\"unit\":\"\"}],\"cube_type\":1,\"favorite\":0,\"history\":0,\"id\":62,\"image\":\"default\",\"name\":\"EG / Wohnzimmer / Heizung Balkon\",\"note\":\"# EUROtronic Spirit Z-Wave Plus\",\"order\":4,\"owner\":1,\"phonetic_name\":\"Heizung Wohnzimmer Balkon\",\"profile\":3006,\"protocol\":1,\"routing\":0,\"security\":0,\"services\":7,\"state\":1,\"state_changed\":1678428481}}",
                                   "payloadType": "json",
                                   "x": 300,
                                   "y": 3340,
                                   "wires": [
                                       [
                                           "ce392b92472130c0"
                                       ]
                                   ]
                               },
                               {
                                   "id": "43fca4060b0a75d7",
                                   "type": "debug",
                                   "z": "9c280ddf049b2b4d",
                                   "name": "Status geändert",
                                   "active": true,
                                   "tosidebar": true,
                                   "console": false,
                                   "tostatus": false,
                                   "complete": "payload",
                                   "targetType": "msg",
                                   "statusVal": "",
                                   "statusType": "auto",
                                   "x": 1300,
                                   "y": 3340,
                                   "wires": []
                               },
                               {
                                   "id": "999cc6c5ddb7d1a9",
                                   "type": "inject",
                                   "z": "9c280ddf049b2b4d",
                                   "name": "Gerät 71",
                                   "props": [
                                       {
                                           "p": "payload"
                                       }
                                   ],
                                   "repeat": "",
                                   "crontab": "",
                                   "once": false,
                                   "onceDelay": 0.1,
                                   "topic": "",
                                   "payload": "{\"node\":{\"added\":1646564569,\"attributes\":[{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":0,\"id\":445,\"instance\":0,\"last_changed\":1678481630,\"last_value\":1,\"maximum\":4,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":33,\"unit\":\"n%2Fa\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"V2 (6.1.0.18912)\",\"editable\":0,\"id\":446,\"instance\":0,\"last_changed\":1646564575,\"last_value\":0,\"maximum\":0,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":45,\"unit\":\"text\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":447,\"instance\":0,\"last_changed\":1646564576,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":170,\"unit\":\"n%2Fa\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":0,\"id\":448,\"instance\":0,\"last_changed\":1678480957,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"options\":{\"history\":{\"day\":35,\"month\":1,\"stepped\":true,\"week\":5}},\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":76,\"unit\":\"n%2Fa\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":180,\"data\":\"PIR\",\"editable\":1,\"id\":449,\"instance\":0,\"last_changed\":1646591363,\"last_value\":0,\"maximum\":65535,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":180,\"type\":196,\"unit\":\"s\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":0,\"id\":450,\"instance\":0,\"last_changed\":1678481630,\"last_value\":1,\"maximum\":65534,\"minimum\":1,\"name\":\"\",\"node_id\":71,\"options\":{\"history\":{\"day\":1,\"month\":6,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":11,\"unit\":\"lx\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":14.75,\"data\":\"\",\"editable\":0,\"id\":451,\"instance\":0,\"last_changed\":1678479841,\"last_value\":15.03,\"maximum\":60,\"minimum\":-20,\"name\":\"\",\"node_id\":71,\"options\":{\"history\":{\"day\":1,\"month\":6,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":14.75,\"type\":5,\"unit\":\"%C2%B0C\"},{\"based_on\":0,\"changed_by\":0,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":1,\"id\":500,\"instance\":0,\"last_changed\":0,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":385,\"unit\":\"\"}],\"cube_type\":2,\"favorite\":0,\"history\":0,\"id\":71,\"image\":\"nodeicon_presence\",\"name\":\"DG / Schlafzimmer / Bewegungsmelder / Kirsten\",\"note\":\"# Philips Hue Bewegungsmelder\",\"order\":45,\"owner\":1,\"phonetic_name\":\"Bewegungsmelder Kirsten\",\"profile\":4035,\"protocol\":2,\"routing\":0,\"security\":0,\"services\":5,\"state\":1,\"state_changed\":1678427715}}",
                                   "payloadType": "json",
                                   "x": 300,
                                   "y": 3380,
                                   "wires": [
                                       [
                                           "ce392b92472130c0"
                                       ]
                                   ]
                               }
                            ]
                            

                            (
                               payload.nodes[id=$$.device.node.id].state = device.node.state
                            ) and (
                               device.node.attributes[type=8] ? payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value : true
                            )
                            

                            Das Ganze sind aber langsam Logikfragen und haben weniger mit NodeRed zu tun. ;)

                            Wie gesagt das Ganze steht und fällt aber damit, wann der globale Kontext geändert wird und ob die einzelnen Nodes vorher ankommen, bevor der globale Kontext geändert wird.

                            Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

                            O 1 Antwort Letzte Antwort
                            0
                            • mickymM mickym

                              @oli So ich habs jetzt getestet musste nochmal geändert werden. Wie gesagt es muss AND sein, weil ja nur dann nichts geändert wurde, wenn beide Parameter nicht geändert wurden.

                              So um das für strom und batteriegebundenen Geräten zu gültig zu machen, ist die Bedingung doch etwas komplizierter:

                              7028dbec-d0f6-425b-b5dc-42357d41383d-image.png

                              Du kannst selbst testen: Gerät 62 ist batteriegebunden, Gerät 71 strom. Wenn Du state änderst funktioniert es und wenn Du current_value im attribute type 8 änderst.

                              [
                                 {
                                     "id": "dfd67d5090a5ee3c",
                                     "type": "change",
                                     "z": "9c280ddf049b2b4d",
                                     "name": "",
                                     "rules": [
                                         {
                                             "t": "move",
                                             "p": "payload",
                                             "pt": "msg",
                                             "to": "device",
                                             "tot": "msg"
                                         }
                                     ],
                                     "action": "",
                                     "property": "",
                                     "from": "",
                                     "to": "",
                                     "reg": false,
                                     "x": 700,
                                     "y": 3280,
                                     "wires": [
                                         [
                                             "40ce65fe6c573d84"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "40ce65fe6c573d84",
                                     "type": "change",
                                     "z": "9c280ddf049b2b4d",
                                     "name": "hole alle Geräte",
                                     "rules": [
                                         {
                                             "t": "set",
                                             "p": "payload",
                                             "pt": "msg",
                                             "to": "{}",
                                             "tot": "json"
                                         },
                                         {
                                             "t": "set",
                                             "p": "payload.nodes",
                                             "pt": "msg",
                                             "to": "homee.nodes",
                                             "tot": "global"
                                         }
                                     ],
                                     "action": "",
                                     "property": "",
                                     "from": "",
                                     "to": "",
                                     "reg": false,
                                     "x": 920,
                                     "y": 3280,
                                     "wires": [
                                         [
                                             "8d51d3dcf40934ba"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "8d51d3dcf40934ba",
                                     "type": "switch",
                                     "z": "9c280ddf049b2b4d",
                                     "name": "Nur wenn Gerätestatus geändert",
                                     "property": "(\t   payload.nodes[id=$$.device.node.id].state = device.node.state\t) and (\t   device.node.attributes[type=8] ? payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value : true\t)",
                                     "propertyType": "jsonata",
                                     "rules": [
                                         {
                                             "t": "false"
                                         }
                                     ],
                                     "checkall": "true",
                                     "repair": false,
                                     "outputs": 1,
                                     "x": 1170,
                                     "y": 3280,
                                     "wires": [
                                         [
                                             "43da9c222d7086f2",
                                             "43fca4060b0a75d7"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "ce392b92472130c0",
                                     "type": "switch",
                                     "z": "9c280ddf049b2b4d",
                                     "name": "verify device",
                                     "property": "payload.node",
                                     "propertyType": "msg",
                                     "rules": [
                                         {
                                             "t": "nnull"
                                         }
                                     ],
                                     "checkall": "true",
                                     "repair": false,
                                     "outputs": 1,
                                     "x": 490,
                                     "y": 3280,
                                     "wires": [
                                         [
                                             "dfd67d5090a5ee3c"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "5af35c4e9a5c92c8",
                                     "type": "link in",
                                     "z": "9c280ddf049b2b4d",
                                     "name": "",
                                     "links": [
                                         "d87f2174cf715cf2"
                                     ],
                                     "x": 355,
                                     "y": 3280,
                                     "wires": [
                                         [
                                             "ce392b92472130c0"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "c89774bbb921130b",
                                     "type": "inject",
                                     "z": "9c280ddf049b2b4d",
                                     "name": "Gerät 62",
                                     "props": [
                                         {
                                             "p": "payload"
                                         }
                                     ],
                                     "repeat": "",
                                     "crontab": "",
                                     "once": false,
                                     "onceDelay": 0.1,
                                     "topic": "",
                                     "payload": "{\"node\":{\"added\":1646555512,\"attributes\":[{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"4.61\",\"editable\":0,\"id\":398,\"instance\":0,\"last_changed\":0,\"last_value\":0,\"maximum\":0,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":44,\"unit\":\"text\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"0.16\",\"editable\":0,\"id\":399,\"instance\":0,\"last_changed\":0,\"last_value\":0,\"maximum\":0,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":45,\"unit\":\"text\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":400,\"instance\":0,\"last_changed\":1675339200,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":91,\"unit\":\"\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":20,\"data\":\"\",\"editable\":0,\"id\":401,\"instance\":0,\"last_changed\":1678481730,\"last_value\":22,\"maximum\":100,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"options\":{\"automations\":[\"step\"]},\"state\":1,\"step_value\":1,\"target_value\":20,\"type\":18,\"unit\":\"%25\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":55,\"data\":\"\",\"editable\":0,\"id\":402,\"instance\":0,\"last_changed\":1678428470,\"last_value\":85,\"maximum\":100,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"options\":{\"history\":{\"day\":182,\"month\":6,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":55,\"type\":8,\"unit\":\"%25\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":1,\"id\":403,\"instance\":0,\"last_changed\":1678428470,\"last_value\":1,\"maximum\":4,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":258,\"unit\":\"\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":404,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":180,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":180,\"target_value\":0,\"type\":90,\"unit\":\"%C2%B0\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":405,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":30,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":5,\"target_value\":0,\"type\":259,\"unit\":\"s\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":1,\"id\":406,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":260,\"unit\":\"\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":2,\"data\":\"\",\"editable\":1,\"id\":407,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":3,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":2,\"type\":261,\"unit\":\"\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":408,\"instance\":0,\"last_changed\":1646555513,\"last_value\":0,\"maximum\":5,\"minimum\":-5,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":0.1,\"target_value\":0,\"type\":64,\"unit\":\"%C2%B0C\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":20.87,\"data\":\"\",\"editable\":0,\"id\":409,\"instance\":0,\"last_changed\":1678481730,\"last_value\":20.78,\"maximum\":125,\"minimum\":-50,\"name\":\"\",\"node_id\":62,\"options\":{\"can_observe\":[5],\"history\":{\"day\":1,\"month\":6,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":20.87,\"type\":5,\"unit\":\"%C2%B0C\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":21,\"data\":\"\",\"editable\":1,\"id\":410,\"instance\":0,\"last_changed\":1678428171,\"last_value\":21,\"maximum\":28,\"minimum\":8,\"name\":\"\",\"node_id\":62,\"options\":{\"automations\":[\"step\"],\"can_observe\":[6],\"history\":{\"day\":35,\"month\":1,\"stepped\":true,\"week\":5}},\"state\":1,\"step_value\":0.5,\"target_value\":21,\"type\":6,\"unit\":\"%C2%B0C\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":0,\"id\":411,\"instance\":0,\"last_changed\":1674031459,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"options\":{\"history\":{\"day\":182,\"month\":6,\"stepped\":true,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":69,\"unit\":\"\"},{\"based_on\":0,\"changed_by\":0,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":1,\"id\":493,\"instance\":0,\"last_changed\":0,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":62,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":385,\"unit\":\"\"}],\"cube_type\":1,\"favorite\":0,\"history\":0,\"id\":62,\"image\":\"default\",\"name\":\"EG / Wohnzimmer / Heizung Balkon\",\"note\":\"# EUROtronic Spirit Z-Wave Plus\",\"order\":4,\"owner\":1,\"phonetic_name\":\"Heizung Wohnzimmer Balkon\",\"profile\":3006,\"protocol\":1,\"routing\":0,\"security\":0,\"services\":7,\"state\":1,\"state_changed\":1678428481}}",
                                     "payloadType": "json",
                                     "x": 300,
                                     "y": 3340,
                                     "wires": [
                                         [
                                             "ce392b92472130c0"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "43fca4060b0a75d7",
                                     "type": "debug",
                                     "z": "9c280ddf049b2b4d",
                                     "name": "Status geändert",
                                     "active": true,
                                     "tosidebar": true,
                                     "console": false,
                                     "tostatus": false,
                                     "complete": "payload",
                                     "targetType": "msg",
                                     "statusVal": "",
                                     "statusType": "auto",
                                     "x": 1300,
                                     "y": 3340,
                                     "wires": []
                                 },
                                 {
                                     "id": "999cc6c5ddb7d1a9",
                                     "type": "inject",
                                     "z": "9c280ddf049b2b4d",
                                     "name": "Gerät 71",
                                     "props": [
                                         {
                                             "p": "payload"
                                         }
                                     ],
                                     "repeat": "",
                                     "crontab": "",
                                     "once": false,
                                     "onceDelay": 0.1,
                                     "topic": "",
                                     "payload": "{\"node\":{\"added\":1646564569,\"attributes\":[{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":0,\"id\":445,\"instance\":0,\"last_changed\":1678481630,\"last_value\":1,\"maximum\":4,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":33,\"unit\":\"n%2Fa\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"V2 (6.1.0.18912)\",\"editable\":0,\"id\":446,\"instance\":0,\"last_changed\":1646564575,\"last_value\":0,\"maximum\":0,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":45,\"unit\":\"text\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":1,\"id\":447,\"instance\":0,\"last_changed\":1646564576,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":170,\"unit\":\"n%2Fa\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":0,\"data\":\"\",\"editable\":0,\"id\":448,\"instance\":0,\"last_changed\":1678480957,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"options\":{\"history\":{\"day\":35,\"month\":1,\"stepped\":true,\"week\":5}},\"state\":1,\"step_value\":1,\"target_value\":0,\"type\":76,\"unit\":\"n%2Fa\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":180,\"data\":\"PIR\",\"editable\":1,\"id\":449,\"instance\":0,\"last_changed\":1646591363,\"last_value\":0,\"maximum\":65535,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":180,\"type\":196,\"unit\":\"s\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":0,\"id\":450,\"instance\":0,\"last_changed\":1678481630,\"last_value\":1,\"maximum\":65534,\"minimum\":1,\"name\":\"\",\"node_id\":71,\"options\":{\"history\":{\"day\":1,\"month\":6,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":11,\"unit\":\"lx\"},{\"based_on\":1,\"changed_by\":1,\"changed_by_id\":0,\"current_value\":14.75,\"data\":\"\",\"editable\":0,\"id\":451,\"instance\":0,\"last_changed\":1678479841,\"last_value\":15.03,\"maximum\":60,\"minimum\":-20,\"name\":\"\",\"node_id\":71,\"options\":{\"history\":{\"day\":1,\"month\":6,\"week\":26}},\"state\":1,\"step_value\":1,\"target_value\":14.75,\"type\":5,\"unit\":\"%C2%B0C\"},{\"based_on\":0,\"changed_by\":0,\"changed_by_id\":0,\"current_value\":1,\"data\":\"\",\"editable\":1,\"id\":500,\"instance\":0,\"last_changed\":0,\"last_value\":0,\"maximum\":1,\"minimum\":0,\"name\":\"\",\"node_id\":71,\"state\":1,\"step_value\":1,\"target_value\":1,\"type\":385,\"unit\":\"\"}],\"cube_type\":2,\"favorite\":0,\"history\":0,\"id\":71,\"image\":\"nodeicon_presence\",\"name\":\"DG / Schlafzimmer / Bewegungsmelder / Kirsten\",\"note\":\"# Philips Hue Bewegungsmelder\",\"order\":45,\"owner\":1,\"phonetic_name\":\"Bewegungsmelder Kirsten\",\"profile\":4035,\"protocol\":2,\"routing\":0,\"security\":0,\"services\":5,\"state\":1,\"state_changed\":1678427715}}",
                                     "payloadType": "json",
                                     "x": 300,
                                     "y": 3380,
                                     "wires": [
                                         [
                                             "ce392b92472130c0"
                                         ]
                                     ]
                                 }
                              ]
                              

                              (
                                 payload.nodes[id=$$.device.node.id].state = device.node.state
                              ) and (
                                 device.node.attributes[type=8] ? payload.nodes[id=$$.device.node.id].attributes[type=8].current_value = device.node.attributes[type=8].current_value : true
                              )
                              

                              Das Ganze sind aber langsam Logikfragen und haben weniger mit NodeRed zu tun. ;)

                              Wie gesagt das Ganze steht und fällt aber damit, wann der globale Kontext geändert wird und ob die einzelnen Nodes vorher ankommen, bevor der globale Kontext geändert wird.

                              O Online
                              O Online
                              Oli
                              schrieb am zuletzt editiert von
                              #98

                              @mickym
                              sorry, aber ich kann das spielen nicht lassen und habe versucht noch etwas an der Tabelle zu ändern

                              Ich wollte, wenn nur der Batteriestatus 69 vorhanden ist keine Zahlen, sondern einen Text hinterlegt haben. In der JSONata klappt das auch

                              Heizungsthermostate haben beides, da wird mir der Prozentwert hinterlegt:
                              c304836e-7f25-4387-aa45-34018d6e8fac-image.png

                              Netatmo Geräte haben nur 69, da wird mir der Text hinterlegt:
                              1bd5642c-a408-4e2e-bbd6-1e2056e7f91c-image.png

                              Im Flow bringt er mir aber folgenden Fehlermeldung:
                              5c0e9f9e-371d-4c31-9e88-8f25b5db5be1-image.png

                              Hier der Flow

                              [
                                 {
                                     "id": "9731f891b382fe8c",
                                     "type": "tab",
                                     "label": "Flow 1",
                                     "disabled": false,
                                     "info": "",
                                     "env": []
                                 },
                                 {
                                     "id": "11fd1028247a8897",
                                     "type": "change",
                                     "z": "9731f891b382fe8c",
                                     "name": "decodeUrlComponents",
                                     "rules": [
                                         {
                                             "t": "set",
                                             "p": "payload",
                                             "pt": "msg",
                                             "to": "payload ~> |$.nodes|{\"name\":$decodeUrlComponent(name),\t\"note\":$decodeUrlComponent(note),\t\"phonetic_name\":$decodeUrlComponent(phonetic_name)},\"\"|",
                                             "tot": "jsonata"
                                         }
                                     ],
                                     "action": "",
                                     "property": "",
                                     "from": "",
                                     "to": "",
                                     "reg": false,
                                     "x": 500,
                                     "y": 120,
                                     "wires": [
                                         [
                                             "05ccc17805c274e2"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "05ccc17805c274e2",
                                     "type": "change",
                                     "z": "9731f891b382fe8c",
                                     "name": "Alle Geräte",
                                     "rules": [
                                         {
                                             "t": "set",
                                             "p": "payload",
                                             "pt": "msg",
                                             "to": "payload.nodes",
                                             "tot": "msg"
                                         }
                                     ],
                                     "action": "",
                                     "property": "",
                                     "from": "",
                                     "to": "",
                                     "reg": false,
                                     "x": 710,
                                     "y": 120,
                                     "wires": [
                                         [
                                             "21f49844d0f9be61"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "21f49844d0f9be61",
                                     "type": "change",
                                     "z": "9731f891b382fe8c",
                                     "name": "Geräte ausschliessen",
                                     "rules": [
                                         {
                                             "t": "set",
                                             "p": "payload",
                                             "pt": "msg",
                                             "to": "payload ~> $filter(function($value){$value.id in [-1] != true})",
                                             "tot": "jsonata"
                                         }
                                     ],
                                     "action": "",
                                     "property": "",
                                     "from": "",
                                     "to": "",
                                     "reg": false,
                                     "x": 920,
                                     "y": 120,
                                     "wires": [
                                         [
                                             "65f883047ce1db69"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "93a74a370ce33f6a",
                                     "type": "change",
                                     "z": "9731f891b382fe8c",
                                     "name": "hole alle Geräte",
                                     "rules": [
                                         {
                                             "t": "set",
                                             "p": "payload",
                                             "pt": "msg",
                                             "to": "{}",
                                             "tot": "json"
                                         },
                                         {
                                             "t": "set",
                                             "p": "payload.nodes",
                                             "pt": "msg",
                                             "to": "homee.nodes",
                                             "tot": "global"
                                         }
                                     ],
                                     "action": "",
                                     "property": "",
                                     "from": "",
                                     "to": "",
                                     "reg": false,
                                     "x": 300,
                                     "y": 120,
                                     "wires": [
                                         [
                                             "11fd1028247a8897"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "73447e82349b1ddc",
                                     "type": "inject",
                                     "z": "9731f891b382fe8c",
                                     "name": "trigger",
                                     "props": [
                                         {
                                             "p": "payload"
                                         }
                                     ],
                                     "repeat": "",
                                     "crontab": "",
                                     "once": false,
                                     "onceDelay": 0.1,
                                     "topic": "",
                                     "payload": "true",
                                     "payloadType": "bool",
                                     "x": 130,
                                     "y": 120,
                                     "wires": [
                                         [
                                             "93a74a370ce33f6a"
                                         ]
                                     ]
                                 },
                                 {
                                     "id": "357d692fea66dd1e",
                                     "type": "debug",
                                     "z": "9731f891b382fe8c",
                                     "name": "Geräte Tabelle",
                                     "active": true,
                                     "tosidebar": true,
                                     "console": false,
                                     "tostatus": false,
                                     "complete": "payload",
                                     "targetType": "msg",
                                     "statusVal": "",
                                     "statusType": "auto",
                                     "x": 1400,
                                     "y": 120,
                                     "wires": []
                                 },
                                 {
                                     "id": "65f883047ce1db69",
                                     "type": "change",
                                     "z": "9731f891b382fe8c",
                                     "name": "Geräte Tabelle8",
                                     "rules": [
                                         {
                                             "t": "set",
                                             "p": "protocols",
                                             "pt": "msg",
                                             "to": "[{\"id\":1,\"name\":\"Z-Wave\",\"color\":\"#886fa9\"},{\"id\":2,\"name\":\"ZigBee\",\"color\":\"#ee6c1e\"},{\"id\":3,\"name\":\"EnOcean\",\"color\":\"#44abb2\"},{\"id\":9,\"name\":\"WLAN\",\"color\":\"#8f8f8f\"},{\"id\":12,\"name\":\"WLAN\",\"color\":\"#8f8f8f\"}]",
                                             "tot": "json"
                                         },
                                         {
                                             "t": "set",
                                             "p": "states",
                                             "pt": "msg",
                                             "to": "[{\"id\":1,\"name\":\"verfügbar\",\"color\":\"green\"},{\"id\":2,\"name\":\"nicht verfügbar\",\"color\":\"red\"},{\"id\":12,\"name\":\"wird aktualisiert\",\"color\":\"orange\"}]",
                                             "tot": "json"
                                         },
                                         {
                                             "t": "set",
                                             "p": "battery",
                                             "pt": "msg",
                                             "to": "[{\"level\":30,\"color\":\"green\"},{\"level\":20,\"color\":\"yellow\"},{\"level\":15,\"color\":\"orange\"},{\"level\":0,\"color\":\"red\"}]",
                                             "tot": "json"
                                         },
                                         {
                                             "t": "set",
                                             "p": "battery69",
                                             "pt": "msg",
                                             "to": "[{\"level\":0,\"name\":\"Batterie ok\",\"color\":\"green\"},{\"level\":1,\"name\":\"Batterie wechseln\",\"color\":\"red\"}]",
                                             "tot": "str"
                                         },
                                         {
                                             "t": "set",
                                             "p": "payload",
                                             "pt": "msg",
                                             "to": "payload.{\"name\" :name,\t        \"type\" : note,\t        \"protocol\" : ' <font color=\\\"' & $single($$.protocols, function($v){$v.id = protocol}).color & '\\\"> ' & $single($$.protocols, function($v){$v.id = protocol}).name,\t        \"state\" : ' <font color=\\\"' & $single($$.states, function($v){$v.id = state}).color & '\\\"> ' & $single($$.states, function($v){$v.id = state}).name,\t        \"battery69\" : (attributes[type=8 ] ? 0 : attributes[type=69 ]).type = 69 ? attributes[type=69 ].current_value,\t        \"battery\" : (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 8 ? attributes[type=8 ].current_value\t} ~> |$|{\"battery\" : $exists(battery69) ? ' <font color=\\\"' & $filter($$.battery69, function($v){battery69 >= $v.level})[0].color & '\\\"> ' & $single($$.battery69, function($v){$v.level = battery69}).name :\t$exists(battery) ? ' <font color=\\\"' & $filter($$.battery, function($v){battery >= $v.level})[0].color & '\\\"> ' & battery & \" %\" :\t$contains(type,\"Plug\") ? ' <font color=\\\"#40E0D0\\\"> ' & \"Strombetrieben\": \"Keine Information vorhanden\"},\"note\"|",
                                             "tot": "jsonata"
                                         }
                                     ],
                                     "action": "",
                                     "property": "",
                                     "from": "",
                                     "to": "",
                                     "reg": false,
                                     "x": 1140,
                                     "y": 120,
                                     "wires": [
                                         [
                                             "357d692fea66dd1e"
                                         ]
                                     ]
                                 }
                              ]
                              

                              Ich will es nur verstehen

                              Gruß
                              Oliver

                              mickymM 1 Antwort Letzte Antwort
                              0
                              • O Oli

                                @mickym
                                sorry, aber ich kann das spielen nicht lassen und habe versucht noch etwas an der Tabelle zu ändern

                                Ich wollte, wenn nur der Batteriestatus 69 vorhanden ist keine Zahlen, sondern einen Text hinterlegt haben. In der JSONata klappt das auch

                                Heizungsthermostate haben beides, da wird mir der Prozentwert hinterlegt:
                                c304836e-7f25-4387-aa45-34018d6e8fac-image.png

                                Netatmo Geräte haben nur 69, da wird mir der Text hinterlegt:
                                1bd5642c-a408-4e2e-bbd6-1e2056e7f91c-image.png

                                Im Flow bringt er mir aber folgenden Fehlermeldung:
                                5c0e9f9e-371d-4c31-9e88-8f25b5db5be1-image.png

                                Hier der Flow

                                [
                                   {
                                       "id": "9731f891b382fe8c",
                                       "type": "tab",
                                       "label": "Flow 1",
                                       "disabled": false,
                                       "info": "",
                                       "env": []
                                   },
                                   {
                                       "id": "11fd1028247a8897",
                                       "type": "change",
                                       "z": "9731f891b382fe8c",
                                       "name": "decodeUrlComponents",
                                       "rules": [
                                           {
                                               "t": "set",
                                               "p": "payload",
                                               "pt": "msg",
                                               "to": "payload ~> |$.nodes|{\"name\":$decodeUrlComponent(name),\t\"note\":$decodeUrlComponent(note),\t\"phonetic_name\":$decodeUrlComponent(phonetic_name)},\"\"|",
                                               "tot": "jsonata"
                                           }
                                       ],
                                       "action": "",
                                       "property": "",
                                       "from": "",
                                       "to": "",
                                       "reg": false,
                                       "x": 500,
                                       "y": 120,
                                       "wires": [
                                           [
                                               "05ccc17805c274e2"
                                           ]
                                       ]
                                   },
                                   {
                                       "id": "05ccc17805c274e2",
                                       "type": "change",
                                       "z": "9731f891b382fe8c",
                                       "name": "Alle Geräte",
                                       "rules": [
                                           {
                                               "t": "set",
                                               "p": "payload",
                                               "pt": "msg",
                                               "to": "payload.nodes",
                                               "tot": "msg"
                                           }
                                       ],
                                       "action": "",
                                       "property": "",
                                       "from": "",
                                       "to": "",
                                       "reg": false,
                                       "x": 710,
                                       "y": 120,
                                       "wires": [
                                           [
                                               "21f49844d0f9be61"
                                           ]
                                       ]
                                   },
                                   {
                                       "id": "21f49844d0f9be61",
                                       "type": "change",
                                       "z": "9731f891b382fe8c",
                                       "name": "Geräte ausschliessen",
                                       "rules": [
                                           {
                                               "t": "set",
                                               "p": "payload",
                                               "pt": "msg",
                                               "to": "payload ~> $filter(function($value){$value.id in [-1] != true})",
                                               "tot": "jsonata"
                                           }
                                       ],
                                       "action": "",
                                       "property": "",
                                       "from": "",
                                       "to": "",
                                       "reg": false,
                                       "x": 920,
                                       "y": 120,
                                       "wires": [
                                           [
                                               "65f883047ce1db69"
                                           ]
                                       ]
                                   },
                                   {
                                       "id": "93a74a370ce33f6a",
                                       "type": "change",
                                       "z": "9731f891b382fe8c",
                                       "name": "hole alle Geräte",
                                       "rules": [
                                           {
                                               "t": "set",
                                               "p": "payload",
                                               "pt": "msg",
                                               "to": "{}",
                                               "tot": "json"
                                           },
                                           {
                                               "t": "set",
                                               "p": "payload.nodes",
                                               "pt": "msg",
                                               "to": "homee.nodes",
                                               "tot": "global"
                                           }
                                       ],
                                       "action": "",
                                       "property": "",
                                       "from": "",
                                       "to": "",
                                       "reg": false,
                                       "x": 300,
                                       "y": 120,
                                       "wires": [
                                           [
                                               "11fd1028247a8897"
                                           ]
                                       ]
                                   },
                                   {
                                       "id": "73447e82349b1ddc",
                                       "type": "inject",
                                       "z": "9731f891b382fe8c",
                                       "name": "trigger",
                                       "props": [
                                           {
                                               "p": "payload"
                                           }
                                       ],
                                       "repeat": "",
                                       "crontab": "",
                                       "once": false,
                                       "onceDelay": 0.1,
                                       "topic": "",
                                       "payload": "true",
                                       "payloadType": "bool",
                                       "x": 130,
                                       "y": 120,
                                       "wires": [
                                           [
                                               "93a74a370ce33f6a"
                                           ]
                                       ]
                                   },
                                   {
                                       "id": "357d692fea66dd1e",
                                       "type": "debug",
                                       "z": "9731f891b382fe8c",
                                       "name": "Geräte Tabelle",
                                       "active": true,
                                       "tosidebar": true,
                                       "console": false,
                                       "tostatus": false,
                                       "complete": "payload",
                                       "targetType": "msg",
                                       "statusVal": "",
                                       "statusType": "auto",
                                       "x": 1400,
                                       "y": 120,
                                       "wires": []
                                   },
                                   {
                                       "id": "65f883047ce1db69",
                                       "type": "change",
                                       "z": "9731f891b382fe8c",
                                       "name": "Geräte Tabelle8",
                                       "rules": [
                                           {
                                               "t": "set",
                                               "p": "protocols",
                                               "pt": "msg",
                                               "to": "[{\"id\":1,\"name\":\"Z-Wave\",\"color\":\"#886fa9\"},{\"id\":2,\"name\":\"ZigBee\",\"color\":\"#ee6c1e\"},{\"id\":3,\"name\":\"EnOcean\",\"color\":\"#44abb2\"},{\"id\":9,\"name\":\"WLAN\",\"color\":\"#8f8f8f\"},{\"id\":12,\"name\":\"WLAN\",\"color\":\"#8f8f8f\"}]",
                                               "tot": "json"
                                           },
                                           {
                                               "t": "set",
                                               "p": "states",
                                               "pt": "msg",
                                               "to": "[{\"id\":1,\"name\":\"verfügbar\",\"color\":\"green\"},{\"id\":2,\"name\":\"nicht verfügbar\",\"color\":\"red\"},{\"id\":12,\"name\":\"wird aktualisiert\",\"color\":\"orange\"}]",
                                               "tot": "json"
                                           },
                                           {
                                               "t": "set",
                                               "p": "battery",
                                               "pt": "msg",
                                               "to": "[{\"level\":30,\"color\":\"green\"},{\"level\":20,\"color\":\"yellow\"},{\"level\":15,\"color\":\"orange\"},{\"level\":0,\"color\":\"red\"}]",
                                               "tot": "json"
                                           },
                                           {
                                               "t": "set",
                                               "p": "battery69",
                                               "pt": "msg",
                                               "to": "[{\"level\":0,\"name\":\"Batterie ok\",\"color\":\"green\"},{\"level\":1,\"name\":\"Batterie wechseln\",\"color\":\"red\"}]",
                                               "tot": "str"
                                           },
                                           {
                                               "t": "set",
                                               "p": "payload",
                                               "pt": "msg",
                                               "to": "payload.{\"name\" :name,\t        \"type\" : note,\t        \"protocol\" : ' <font color=\\\"' & $single($$.protocols, function($v){$v.id = protocol}).color & '\\\"> ' & $single($$.protocols, function($v){$v.id = protocol}).name,\t        \"state\" : ' <font color=\\\"' & $single($$.states, function($v){$v.id = state}).color & '\\\"> ' & $single($$.states, function($v){$v.id = state}).name,\t        \"battery69\" : (attributes[type=8 ] ? 0 : attributes[type=69 ]).type = 69 ? attributes[type=69 ].current_value,\t        \"battery\" : (attributes[type=8 ] ? attributes[type=8 ] : attributes[type=69 ]).type = 8 ? attributes[type=8 ].current_value\t} ~> |$|{\"battery\" : $exists(battery69) ? ' <font color=\\\"' & $filter($$.battery69, function($v){battery69 >= $v.level})[0].color & '\\\"> ' & $single($$.battery69, function($v){$v.level = battery69}).name :\t$exists(battery) ? ' <font color=\\\"' & $filter($$.battery, function($v){battery >= $v.level})[0].color & '\\\"> ' & battery & \" %\" :\t$contains(type,\"Plug\") ? ' <font color=\\\"#40E0D0\\\"> ' & \"Strombetrieben\": \"Keine Information vorhanden\"},\"note\"|",
                                               "tot": "jsonata"
                                           }
                                       ],
                                       "action": "",
                                       "property": "",
                                       "from": "",
                                       "to": "",
                                       "reg": false,
                                       "x": 1140,
                                       "y": 120,
                                       "wires": [
                                           [
                                               "357d692fea66dd1e"
                                           ]
                                       ]
                                   }
                                ]
                                

                                Ich will es nur verstehen

                                mickymM Online
                                mickymM Online
                                mickym
                                Most Active
                                schrieb am zuletzt editiert von mickym
                                #99

                                gelöscht. ;)

                                Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

                                O 1 Antwort Letzte Antwort
                                0
                                • mickymM mickym

                                  gelöscht. ;)

                                  O Online
                                  O Online
                                  Oli
                                  schrieb am zuletzt editiert von
                                  #100

                                  @mickym
                                  verstehe ich jetzt nicht, da schreibe ich doch den value Wert rein, 0 = Batterie ok, 1 = Batterie wechseln

                                  Gruß
                                  Oliver

                                  mickymM 1 Antwort Letzte Antwort
                                  0
                                  • O Oli

                                    @mickym
                                    verstehe ich jetzt nicht, da schreibe ich doch den value Wert rein, 0 = Batterie ok, 1 = Batterie wechseln

                                    mickymM Online
                                    mickymM Online
                                    mickym
                                    Most Active
                                    schrieb am zuletzt editiert von mickym
                                    #101

                                    @oli Ich habs . Ich merke schon Du willst mich auf die Probe stellen. ;)

                                    42c05561-27c7-4d63-9c6a-15a49466d3d9-image.png

                                    Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

                                    O 1 Antwort Letzte Antwort
                                    0
                                    • mickymM mickym

                                      @oli Ich habs . Ich merke schon Du willst mich auf die Probe stellen. ;)

                                      42c05561-27c7-4d63-9c6a-15a49466d3d9-image.png

                                      O Online
                                      O Online
                                      Oli
                                      schrieb am zuletzt editiert von
                                      #102

                                      @mickym
                                      vielen Dank, du bist der Beste

                                      Gruß
                                      Oliver

                                      mickymM 1 Antwort Letzte Antwort
                                      0
                                      • O Oli

                                        @mickym
                                        vielen Dank, du bist der Beste

                                        mickymM Online
                                        mickymM Online
                                        mickym
                                        Most Active
                                        schrieb am zuletzt editiert von
                                        #103

                                        @oli sagte in Benötige Hilfe mit Node-Red in Verbindung mit homee:

                                        @mickym
                                        vielen Dank, du bist der Beste

                                        Na ja - ich hab da viel zu lange gebraucht, um darauf zu kommen. ;)

                                        Jeder Flow bzw. jedes Script, das ich hier poste implementiert jeder auf eigene Gefahr. Flows und Scripts können Fehler aufweisen und weder der Seitenbetreiber noch ich persönlich können hierfür haftbar gemacht werden. Das gleiche gilt für Empfehlungen aller Art.

                                        O 1 Antwort Letzte Antwort
                                        0
                                        • mickymM mickym

                                          @oli sagte in Benötige Hilfe mit Node-Red in Verbindung mit homee:

                                          @mickym
                                          vielen Dank, du bist der Beste

                                          Na ja - ich hab da viel zu lange gebraucht, um darauf zu kommen. ;)

                                          O Online
                                          O Online
                                          Oli
                                          schrieb am zuletzt editiert von
                                          #104

                                          @mickym

                                          ich leider schon wieder, war heute fleißig und habe sogar einen Flow, ohne deine Hilfe hinbekommen
                                          f4fc80b6-086b-4867-b0b4-0fb1cb59e1c8-image.png

                                          Ich versuche gerade die Settings auszulesen, was bis jetzt auch gut geklappt hat.
                                          Jetzt hänge ich aber wieder an so einer dämlichen Tabelle, die eigentlich ganz einfach aus sah

                                          Hier die Daten:

                                          {"language":"de","remote_access":1,"beta":0,"webhooks_key":"XXXXXXXXXXXX","automatic_location_detection":1,"polling_interval":60,"enable_analytics":0,"homee_name":"XXXXXXXX","b2b_partner":"homee","country":"Deutschland","country_code":"DE","state":"XXX","city":"XXXX","latitude":XXXXX,"longitude":XXXXX,"zip":"XXXX","address":"XXXXXX","timezone":"Europe%2FBerlin","last_automatic_location_detection":1674998871,"local_ssl_enabled":true,"wlan_enabled":1,"wlan_ip_address":"XXXXX","wlan_ssid":"XXXXX","wlan_mode":2,"internet_access":true,"lan_enabled":0,"available_ssids":["XXXX,XXXX"],"time":1678749606,"civil_time":"2023-03-14 00:20:06","version":"2.38.3+10a3a6dd","uid":"XXXXX","cubes":[{"protocol":1,"type":1,"order":1,"firmware":"3.95.0","secure_add":1,"missing_nodes":0,"resettable":true,"heal":true,"device_exclude_supported":true,"device_reinitialize_supported":true},{"protocol":3,"type":3,"order":2,"resettable":false},{"protocol":2,"type":2,"order":3,"firmware":"2.6.3","nw_channel":12,"resettable":true}],"extensions":{"weather":{"enabled":1},"amazon_alexa":{"enabled":1},"google_assistant":{"enabled":0,"syncing":0},"apple_homekit":{"configNumber":1,"enabled":0,"paired":0,"syncing":0},"ftp":{"enabled":1,"protocol":0,"hostname":"XXXXXX","port":XX,"username":"XXXX","has_password":1,"path":"Public/homee/","testing":0},"history":{"enabled":1,"destination":1,"folder":"Verlaufsdaten"},"backup":{"enabled":1,"destination":1,"folder":"Backup%2F","manual_export":0},"proxy":{"enabled":1,"connected":true,"environment":1},"electricity_price":{"enabled":0},"ssh_tunnel":{"enabled":false},"notification":{"email_daily_count":0,"email_daily_limit":50,"email_monthly_count":0,"email_monthly_limit":1550,"email_next_daily_reset_date":1678834800,"email_next_monthly_reset_date":1680300000,"environment":1},"dropbox":{"enabled":false},"braindump":{"enabled":false},"watchdog":{"enabled":true,"run_period":10000},"mosquitto_mqtt":{}},"name":"homee Oliver"}
                                          

                                          Es sollen eigentlich nur von den Cubes "type" und "fimware" ausgelesen und in eine Tabelle geschrieben werden, aber stelle mich wieder zu blöd an

                                          Hier der Flow mit meinem erfolglosen Versuch:

                                          [
                                             {
                                                 "id": "2749496aa10f7c17",
                                                 "type": "tab",
                                                 "label": "homee Settings",
                                                 "disabled": false,
                                                 "info": "",
                                                 "env": []
                                             },
                                             {
                                                 "id": "3bb8ae97da664e72",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "decodeUrlComponents",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload ~> |$.settings|{\"name\":$decodeUrlComponent(homee_name)},\"\"|",
                                                         "tot": "jsonata"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 560,
                                                 "y": 180,
                                                 "wires": [
                                                     [
                                                         "af2cb67fb55f481d"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "af2cb67fb55f481d",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Alle Settings",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload.settings",
                                                         "tot": "msg"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 750,
                                                 "y": 180,
                                                 "wires": [
                                                     [
                                                         "c718d649fbe26208"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "c718d649fbe26208",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Geräte ausschliessen",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload ~> $filter(function($value){$value.id in [-1] != true})",
                                                         "tot": "jsonata"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 960,
                                                 "y": 180,
                                                 "wires": [
                                                     [
                                                         "937a5862046b9d5f",
                                                         "c7f5dce04b044676",
                                                         "e3c876ba60d4c83b",
                                                         "736aeef19db4d053",
                                                         "fc927cb540b12985",
                                                         "6fba09a1121470b2",
                                                         "1e42f8900946d138",
                                                         "7455cb50e5c795a5"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "5f3d5e25b9cde8da",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "hole alle Settings",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "{}",
                                                         "tot": "json"
                                                     },
                                                     {
                                                         "t": "set",
                                                         "p": "payload.settings",
                                                         "pt": "msg",
                                                         "to": "homee.settings",
                                                         "tot": "global"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 310,
                                                 "y": 180,
                                                 "wires": [
                                                     [
                                                         "3bb8ae97da664e72"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "ccf2eb936b15a350",
                                                 "type": "inject",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "trigger",
                                                 "props": [
                                                     {
                                                         "p": "payload"
                                                     }
                                                 ],
                                                 "repeat": "",
                                                 "crontab": "",
                                                 "once": false,
                                                 "onceDelay": 0.1,
                                                 "topic": "",
                                                 "payload": "true",
                                                 "payloadType": "bool",
                                                 "x": 130,
                                                 "y": 180,
                                                 "wires": [
                                                     [
                                                         "5f3d5e25b9cde8da"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "937a5862046b9d5f",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Settings",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1200,
                                                 "y": 60,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "e3c876ba60d4c83b",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "UID Name",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload.uid",
                                                         "tot": "jsonata"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 1210,
                                                 "y": 300,
                                                 "wires": [
                                                     [
                                                         "cf048a91a8b51875",
                                                         "f76a02bd74f8832c"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "cf048a91a8b51875",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "UID Name",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1430,
                                                 "y": 240,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "736aeef19db4d053",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Firmeware",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload.version",
                                                         "tot": "jsonata"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 1210,
                                                 "y": 420,
                                                 "wires": [
                                                     [
                                                         "e590a079e72bd879",
                                                         "6eb4c1b40932e67c"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "e590a079e72bd879",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Firmeware",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1430,
                                                 "y": 360,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "c7f5dce04b044676",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "homee Name",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload.name",
                                                         "tot": "jsonata"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 1220,
                                                 "y": 180,
                                                 "wires": [
                                                     [
                                                         "f4cdf6d60a263c02",
                                                         "2ff1da8ed1a5bc32"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "f4cdf6d60a263c02",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "homee Name",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1440,
                                                 "y": 120,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "f76a02bd74f8832c",
                                                 "type": "ioBroker out",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "UID Name",
                                                 "topic": "0_userdata.0.System.homee.Cube1.Uid",
                                                 "ack": "true",
                                                 "autoCreate": "true",
                                                 "stateName": "0_userdata.0.System.homee.Cube1.Uid",
                                                 "role": "",
                                                 "payloadType": "string",
                                                 "readonly": "false",
                                                 "stateUnit": "",
                                                 "stateMin": "",
                                                 "stateMax": "",
                                                 "x": 1430,
                                                 "y": 300,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "2ff1da8ed1a5bc32",
                                                 "type": "ioBroker out",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "homee Name",
                                                 "topic": "0_userdata.0.System.homee.Cube1.Name",
                                                 "ack": "true",
                                                 "autoCreate": "true",
                                                 "stateName": "0_userdata.0.System.homee.Cube1.Name",
                                                 "role": "",
                                                 "payloadType": "string",
                                                 "readonly": "false",
                                                 "stateUnit": "",
                                                 "stateMin": "",
                                                 "stateMax": "",
                                                 "x": 1440,
                                                 "y": 180,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "6eb4c1b40932e67c",
                                                 "type": "ioBroker out",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Firmeware",
                                                 "topic": "0_userdata.0.System.homee.Cube1.Firmeware",
                                                 "ack": "true",
                                                 "autoCreate": "true",
                                                 "stateName": "0_userdata.0.System.homee.Cube1.Firmeware",
                                                 "role": "",
                                                 "payloadType": "string",
                                                 "readonly": "false",
                                                 "stateUnit": "",
                                                 "stateMin": "",
                                                 "stateMax": "",
                                                 "x": 1430,
                                                 "y": 420,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "5a98cc34ad5d369c",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Anzahl Zusatzwürfel",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1720,
                                                 "y": 720,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "ef618bf5f21d53fc",
                                                 "type": "ioBroker out",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Anzahl Zusatzwürfel",
                                                 "topic": "0_userdata.0.System.homee.Cube1.AnzahlCubes",
                                                 "ack": "true",
                                                 "autoCreate": "true",
                                                 "stateName": "0_userdata.0.System.homee.Cube1.AnzahlCubes",
                                                 "role": "",
                                                 "payloadType": "number",
                                                 "readonly": "false",
                                                 "stateUnit": "",
                                                 "stateMin": "",
                                                 "stateMax": "",
                                                 "x": 1720,
                                                 "y": 780,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "c3f282786a48e754",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Anzahl Zusatzwürfel",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "$count(payload)",
                                                         "tot": "jsonata"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 1460,
                                                 "y": 780,
                                                 "wires": [
                                                     [
                                                         "5a98cc34ad5d369c",
                                                         "ef618bf5f21d53fc"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "b6ce520fe699b5b4",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Zusatzwürfel",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1430,
                                                 "y": 720,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "6fba09a1121470b2",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Zusatzwürfel",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload.cubes.type",
                                                         "tot": "jsonata"
                                                     },
                                                     {
                                                         "t": "set",
                                                         "p": "homee.settings",
                                                         "pt": "flow",
                                                         "to": "payload",
                                                         "tot": "msg"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 1210,
                                                 "y": 780,
                                                 "wires": [
                                                     [
                                                         "b6ce520fe699b5b4",
                                                         "c3f282786a48e754"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "103dd420f1ae6f4f",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Verbindung über",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1440,
                                                 "y": 480,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "aaf4ea5be5e5d689",
                                                 "type": "ioBroker out",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Verbindung über",
                                                 "topic": "0_userdata.0.System.homee.Cube1.Verbindung",
                                                 "ack": "true",
                                                 "autoCreate": "true",
                                                 "stateName": "0_userdata.0.System.homee.Cube1.Verbindung",
                                                 "role": "",
                                                 "payloadType": "string",
                                                 "readonly": "false",
                                                 "stateUnit": "",
                                                 "stateMin": "",
                                                 "stateMax": "",
                                                 "x": 1440,
                                                 "y": 540,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "fc927cb540b12985",
                                                 "type": "function",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Verbindung über",
                                                 "func": "var wlan = msg.payload.wlan_enabled\nvar lan = msg.payload.wlan_enabled\nvar verbindung = \"\";\n\nif (wlan == 1) {\n    verbindung = \"Wlan\";\n} else if (lan == 1) {\n    verbindung == \"Lan\";\n} else if (wlan == 0 && lan == 0) {\n    verbindung = \"keine Verbindung\"\n}\n\nmsg.payload = verbindung;\nreturn msg;",
                                                 "outputs": 1,
                                                 "noerr": 0,
                                                 "initialize": "",
                                                 "finalize": "",
                                                 "libs": [],
                                                 "x": 1220,
                                                 "y": 540,
                                                 "wires": [
                                                     [
                                                         "103dd420f1ae6f4f",
                                                         "aaf4ea5be5e5d689"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "9ea4d4898638727c",
                                                 "type": "comment",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "homee Settings",
                                                 "info": "",
                                                 "x": 140,
                                                 "y": 80,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "1e42f8900946d138",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Verbindung mit",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload.wlan_ssid",
                                                         "tot": "jsonata"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 1220,
                                                 "y": 660,
                                                 "wires": [
                                                     [
                                                         "a6f09f2bdda4dc43",
                                                         "1504ff5a09d26392"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "a6f09f2bdda4dc43",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Verbindung mit",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1440,
                                                 "y": 600,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "1504ff5a09d26392",
                                                 "type": "ioBroker out",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Verbindung mit",
                                                 "topic": "0_userdata.0.System.homee.Cube1.Netzwerk",
                                                 "ack": "true",
                                                 "autoCreate": "true",
                                                 "stateName": "0_userdata.0.System.homee.Cube1.Netzwerk",
                                                 "role": "",
                                                 "payloadType": "string",
                                                 "readonly": "false",
                                                 "stateUnit": "",
                                                 "stateMin": "",
                                                 "stateMax": "",
                                                 "x": 1440,
                                                 "y": 660,
                                                 "wires": []
                                             },
                                             {
                                                 "id": "8a43345ef2a70be0",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "",
                                                 "rules": [
                                                     {
                                                         "t": "move",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "settings",
                                                         "tot": "msg"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 480,
                                                 "y": 760,
                                                 "wires": [
                                                     [
                                                         "46a5350c5d867f97"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "46a5350c5d867f97",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "hole alle homeegramme",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "{}",
                                                         "tot": "json"
                                                     },
                                                     {
                                                         "t": "set",
                                                         "p": "payload.settings",
                                                         "pt": "msg",
                                                         "to": "homee.settings",
                                                         "tot": "global"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 730,
                                                 "y": 760,
                                                 "wires": [
                                                     [
                                                         "053f961317aeb04b"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "053f961317aeb04b",
                                                 "type": "switch",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Nur wenn Settings sich ändern",
                                                 "property": "(\t    payload.settings = settings\t)",
                                                 "propertyType": "jsonata",
                                                 "rules": [
                                                     {
                                                         "t": "false"
                                                     }
                                                 ],
                                                 "checkall": "true",
                                                 "repair": false,
                                                 "outputs": 1,
                                                 "x": 710,
                                                 "y": 420,
                                                 "wires": [
                                                     [
                                                         "3bb8ae97da664e72"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "f1c83ffb994d87a7",
                                                 "type": "switch",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "verify settings",
                                                 "property": "payload.settings",
                                                 "propertyType": "msg",
                                                 "rules": [
                                                     {
                                                         "t": "nnull"
                                                     }
                                                 ],
                                                 "checkall": "true",
                                                 "repair": false,
                                                 "outputs": 1,
                                                 "x": 220,
                                                 "y": 760,
                                                 "wires": [
                                                     [
                                                         "8a43345ef2a70be0"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "5f4368b7e682f493",
                                                 "type": "link in",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "",
                                                 "links": [
                                                     "d87f2174cf715cf2"
                                                 ],
                                                 "x": 75,
                                                 "y": 760,
                                                 "wires": [
                                                     [
                                                         "f1c83ffb994d87a7"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "7455cb50e5c795a5",
                                                 "type": "change",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Zusatzwürfel Tabelle",
                                                 "rules": [
                                                     {
                                                         "t": "set",
                                                         "p": "protocols",
                                                         "pt": "msg",
                                                         "to": "[{\"id\":1,\"name\":\"Z-Wave\"},{\"id\":2,\"name\":\"ZigBee\"},{\"id\":3,\"name\":\"EnOcean\"}]",
                                                         "tot": "json"
                                                     },
                                                     {
                                                         "t": "set",
                                                         "p": "payload",
                                                         "pt": "msg",
                                                         "to": "payload.{\"name\" : $single($$.protocols, function($v){$v.id = type}).name,        \t        \"firmware\" : $exists(firmware) ? firmware : \"k.A.\"        \t}",
                                                         "tot": "jsonata"
                                                     }
                                                 ],
                                                 "action": "",
                                                 "property": "",
                                                 "from": "",
                                                 "to": "",
                                                 "reg": false,
                                                 "x": 1240,
                                                 "y": 880,
                                                 "wires": [
                                                     [
                                                         "d5594ef7e61b1649"
                                                     ]
                                                 ]
                                             },
                                             {
                                                 "id": "d5594ef7e61b1649",
                                                 "type": "debug",
                                                 "z": "2749496aa10f7c17",
                                                 "name": "Zusatzwürfel Tabelle",
                                                 "active": false,
                                                 "tosidebar": true,
                                                 "console": false,
                                                 "tostatus": false,
                                                 "complete": "payload",
                                                 "targetType": "msg",
                                                 "statusVal": "",
                                                 "statusType": "auto",
                                                 "x": 1480,
                                                 "y": 880,
                                                 "wires": []
                                             }
                                          ]
                                          

                                          Wäre schön, wenn du mir nochmal helfen könntest

                                          Gruß
                                          Oliver

                                          mickymM 2 Antworten Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          874

                                          Online

                                          32.5k

                                          Benutzer

                                          81.8k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe