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. MQTT String generell aufteilen?

NEWS

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

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    2.3k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    16
    1
    3.6k

MQTT String generell aufteilen?

Geplant Angeheftet Gesperrt Verschoben Skripten / Logik
javascript
28 Beiträge 7 Kommentatoren 3.6k Aufrufe 8 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.
  • F frostnatt

    Ich nutze selber zigbee2mqtt seit langem, weil es einfach stabiler lief als der zigbee Adapter.
    Hier ist ein kleines Script von mir zum parsen der Json-Objekte vom zigbee2mqtt:

    const JSPath = "javascript.0"                              // JS- Pfad
    const parsedStatesPath   = JSPath + ".zigbee2mqtt"         // Pfad fuer geparste States
    const zigbee2mqttJsonPath = "mqtt.0.zigbee2mqtt"           //Pfad fuer zigbee2mqtt Json Objekte
    let IDs = [];
    
    
    $("[id=" + zigbee2mqttJsonPath + ".*]").each(function (id) {
        IDs.push(id)
    })
    on({id: IDs, change: "ne"}, function (obj) {
        let JsonObj = JSON.parse(obj.state.val)
        Object.keys(JsonObj).forEach(function(key){
            if (getState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath)).notExist){
                createState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                    setState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key])
            })
            }else {
                setState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key])
            };
        })
    })
    

    Viel Spaß damit :)

    B Offline
    B Offline
    butsch
    schrieb am zuletzt editiert von
    #10

    @frostnatt sagte in MQTT String generell aufteilen?:

    Ich nutze selber zigbee2mqtt seit langem, weil es einfach stabiler lief als der zigbee Adapter.
    Hier ist ein kleines Script von mir zum parsen der Json-Objekte vom zigbee2mqtt:

    const JSPath = "javascript.0"                              // JS- Pfad
    const parsedStatesPath   = JSPath + ".zigbee2mqtt"         // Pfad fuer geparste States
    const zigbee2mqttJsonPath = "mqtt.0.zigbee2mqtt"           //Pfad fuer zigbee2mqtt Json Objekte
    let IDs = [];
    
    
    $("[id=" + zigbee2mqttJsonPath + ".*]").each(function (id) {
        IDs.push(id)
    })
    on({id: IDs, change: "ne"}, function (obj) {
        let JsonObj = JSON.parse(obj.state.val)
        Object.keys(JsonObj).forEach(function(key){
            if (getState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath)).notExist){
                createState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                    setState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key])
            })
            }else {
                setState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key])
            };
        })
    })
    

    Viel Spaß damit :)

    ...ich habe das Script jetzt mal am Laufen, verstehe aber nicht genau was ich noch abändern muss, damit das ganze funktioniert?
    So direkt schein es nicht zu klappen

    F 1 Antwort Letzte Antwort
    0
    • B butsch

      @frostnatt sagte in MQTT String generell aufteilen?:

      Ich nutze selber zigbee2mqtt seit langem, weil es einfach stabiler lief als der zigbee Adapter.
      Hier ist ein kleines Script von mir zum parsen der Json-Objekte vom zigbee2mqtt:

      const JSPath = "javascript.0"                              // JS- Pfad
      const parsedStatesPath   = JSPath + ".zigbee2mqtt"         // Pfad fuer geparste States
      const zigbee2mqttJsonPath = "mqtt.0.zigbee2mqtt"           //Pfad fuer zigbee2mqtt Json Objekte
      let IDs = [];
      
      
      $("[id=" + zigbee2mqttJsonPath + ".*]").each(function (id) {
          IDs.push(id)
      })
      on({id: IDs, change: "ne"}, function (obj) {
          let JsonObj = JSON.parse(obj.state.val)
          Object.keys(JsonObj).forEach(function(key){
              if (getState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath)).notExist){
                  createState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                      setState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key])
              })
              }else {
                  setState(obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + '.' + key, JsonObj[key])
              };
          })
      })
      

      Viel Spaß damit :)

      ...ich habe das Script jetzt mal am Laufen, verstehe aber nicht genau was ich noch abändern muss, damit das ganze funktioniert?
      So direkt schein es nicht zu klappen

      F Offline
      F Offline
      frostnatt
      schrieb am zuletzt editiert von frostnatt
      #11

      @butsch

      const JSPath = "javascript.0"                              // JS- Pfad
      
      const parsedStatesPath   = JSPath + ".zigbee2mqtt"         // Pfad fuer geparste States
      
      const zigbee2mqttJsonPath = "mqtt.0.zigbee2mqtt"           //Pfad fuer zigbee2mqtt Json Objekte
      

      Man muss nur die o.g. Pfade anpassen.
      JSPath ist hierber der Pfad zu javascript Instanz, welche das Script ausführt.
      zigbee2mqttJsonPath ist der Pfad, wo Json Objekte von zigbee2mqtt landen.
      parsedStatesPath ist der Pfad für die geparsten Datenpunkte.
      Die Datenpunkte werden erst angelegt, wenn Json Objekte geändert werden - etwas Geduld ist hier also gefordert :)

      1 Antwort Letzte Antwort
      0
      • B Offline
        B Offline
        butsch
        schrieb am zuletzt editiert von
        #12

        Ok, dann müssten die Einstellungen so wie in deinem Script ja bei mir passen. Hier meine Objekte:
        4cf269e7-2052-4161-a3d1-166da950e804-image.png

        Oder mache ich sonst wo noch einen Fehler? OnOff und Temperatur sind die Topics vom zigbee2mqtt....

        1 Antwort Letzte Antwort
        0
        • B Offline
          B Offline
          butsch
          schrieb am zuletzt editiert von
          #13

          Ok, ich habs! Danke noch mal!!!!
          zigbee2mqttJsonPath musste ich anpassen

          GEIL!

          1 Antwort Letzte Antwort
          0
          • B Offline
            B Offline
            butsch
            schrieb am zuletzt editiert von butsch
            #14

            Soweit scheint jetzt alles zu funktionieren, die States sind da und werden auch aktualisiert, aber:

            10:06:33.041	warn	javascript.0 (226402) at script.js.common.MQTT2OBJEKT.Parser:13:13
            10:06:33.041	warn	javascript.0 (226402) at Object.<anonymous> (script.js.common.MQTT2OBJEKT.Parser:12:26)
            
            226402) getState "javascript.0.zigbee2mqtt.OnOff" not found (3)
            

            Was denn da los? ;-(

            F 1 Antwort Letzte Antwort
            0
            • B butsch

              Soweit scheint jetzt alles zu funktionieren, die States sind da und werden auch aktualisiert, aber:

              10:06:33.041	warn	javascript.0 (226402) at script.js.common.MQTT2OBJEKT.Parser:13:13
              10:06:33.041	warn	javascript.0 (226402) at Object.<anonymous> (script.js.common.MQTT2OBJEKT.Parser:12:26)
              
              226402) getState "javascript.0.zigbee2mqtt.OnOff" not found (3)
              

              Was denn da los? ;-(

              F Offline
              F Offline
              frostnatt
              schrieb am zuletzt editiert von
              #15

              @butsch
              Die Warnings bekomme ich auch seit einiger Zeit. Das Script funktioniert aber weiterhin ohne Probleme bei mir. Muss ich mal bei Gelegenheit debuggen, es fehlt leider im Moment die Zeit...

              1 Antwort Letzte Antwort
              0
              • F Offline
                F Offline
                frostnatt
                schrieb am zuletzt editiert von
                #16

                @butsch
                Habe das Problem gefixt, das Script wirft keine Warnings mehr bei mir.

                const JSPath = "javascript.0"                              // JS- Pfad
                const parsedStatesPath   = JSPath + ".zigbee2mqtt"         // Pfad fuer geparste States
                const zigbee2mqttJsonPath = "mqtt.0.zigbee2mqtt"           //Pfad fuer zigbee2mqtt Json Objekte
                let IDs = [];
                
                
                $("[id=" + zigbee2mqttJsonPath + ".*]").each(function (id) {
                    IDs.push(id)
                })
                on({id: IDs, change: "ne"}, function (obj) {
                    let JsonObj = JSON.parse(obj.state.val)
                    Object.keys(JsonObj).forEach(function(key){
                        let currState = obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + "." + key
                        if (getState(currState).notExist){
                            createState(currState, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                                setState(currState, JsonObj[key]);
                        })
                        }else {
                            setState(currState, JsonObj[key])
                        };
                    })
                })
                
                metaxaM 1 Antwort Letzte Antwort
                0
                • B Offline
                  B Offline
                  butsch
                  schrieb am zuletzt editiert von
                  #17

                  @frostnatt sagte in MQTT String generell aufteilen?:

                                                                                                                                              const JSPath = "javascript.0"                              // JS- Pfad                                                                                                                                                                            const parsedStatesPath   = JSPath + ".zigbee2mqtt"         // Pfad fuer geparste States                                                                                                                                                                            const zigbee2mqttJsonPath = "mqtt.0.zigbee2mqtt"           //Pfad fuer zigbee2mqtt Json Objekte                                                                                                                                                                            let IDs = [];                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      $("[id=" + zigbee2mqttJsonPath + ".*]").each(function (id) {                                                                                                                                                                                IDs.push(id)                                                                                                                                                                            })                                                                                                                                                                            on({id: IDs, change: "ne"}, function (obj) {                                                                                                                                                                                let JsonObj = JSON.parse(obj.state.val)                                                                                                                                                                                Object.keys(JsonObj).forEach(function(key){                                                                                                                                                                                    let currState = obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + "." + key                                                                                                                                                                                    if (getState(currState).notExist){                                                                                                                                                                                        createState(currState, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){                                                                                                                                                                                            setState(currState, JsonObj[key]);                                                                                                                                                                                    })                                                                                                                                                                                    }else {                                                                                                                                                                                        setState(currState, JsonObj[key])                                                                                                                                                                                    };                                                                                                                                                                                })                                                                                                                                                                            })                                            
                  

                  Vielen Dank, jetzt passt es!

                  1 Antwort Letzte Antwort
                  0
                  • F frostnatt

                    @butsch
                    Habe das Problem gefixt, das Script wirft keine Warnings mehr bei mir.

                    const JSPath = "javascript.0"                              // JS- Pfad
                    const parsedStatesPath   = JSPath + ".zigbee2mqtt"         // Pfad fuer geparste States
                    const zigbee2mqttJsonPath = "mqtt.0.zigbee2mqtt"           //Pfad fuer zigbee2mqtt Json Objekte
                    let IDs = [];
                    
                    
                    $("[id=" + zigbee2mqttJsonPath + ".*]").each(function (id) {
                        IDs.push(id)
                    })
                    on({id: IDs, change: "ne"}, function (obj) {
                        let JsonObj = JSON.parse(obj.state.val)
                        Object.keys(JsonObj).forEach(function(key){
                            let currState = obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + "." + key
                            if (getState(currState).notExist){
                                createState(currState, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                                    setState(currState, JsonObj[key]);
                            })
                            }else {
                                setState(currState, JsonObj[key])
                            };
                        })
                    })
                    
                    metaxaM Offline
                    metaxaM Offline
                    metaxa
                    schrieb am zuletzt editiert von metaxa
                    #18

                    @frostnatt sagte in MQTT String generell aufteilen?:

                    @butsch
                    Habe das Problem gefixt, das Script wirft keine Warnings mehr bei mir.

                    Jetzt habe ich primitiv geglaubt, ich kann mir das Script stehlen, ein wenig anpassen und es läuft..... war ein Irrglaube. Kannst du mir vielleicht bitte helfen?

                    schedule("* * * * *", function (){       //alle Minuten
                    
                    const JSPath = "a_andreas.0.eigene_dp"					// JS- Pfad
                    const parsedStatesPath   = JSPath + ".Heizung"			// Pfad fuer geparste States
                    const JsonPath = "mqtt.0.ems-esp.sm_data"				// Pfad fuer Json Objekte
                    
                    let IDs = [];
                    
                    $("[id=" + JsonPath + ".*]").each(function (id) {
                        IDs.push(id)
                    })
                    
                    on({id: IDs, change: "ne"}, function (obj) {
                        let JsonObj = JSON.parse(obj.state.val)
                        Object.keys(JsonObj).forEach(function(key){
                            let currState = obj.id.replace(JsonPath, parsedStatesPath) + "." + key
                           if (getState(currState).notExist){
                                createState(currState, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                                    setState(currState, JsonObj[key]);
                            })
                            }else {
                                setState(currState, JsonObj[key])
                            };
                        })
                    })
                    })
                    

                    fd4394d7-4b1e-448c-955b-8616c922e63c-grafik.png
                    57556ad1-405f-438e-89b7-12d95f228838-grafik.png

                    {"collectortemp":16,"bottomtemp":57.8,"pump":"off","pumpWorkMin":30500,"energylasthour":0}
                    

                    Leider tut sich nix ........ bitte um Unterstützung!

                    Finde deine Lösung mit dynamischen DP echt genial!!!!
                    LG, mxa

                    paul53P 1 Antwort Letzte Antwort
                    0
                    • metaxaM metaxa

                      @frostnatt sagte in MQTT String generell aufteilen?:

                      @butsch
                      Habe das Problem gefixt, das Script wirft keine Warnings mehr bei mir.

                      Jetzt habe ich primitiv geglaubt, ich kann mir das Script stehlen, ein wenig anpassen und es läuft..... war ein Irrglaube. Kannst du mir vielleicht bitte helfen?

                      schedule("* * * * *", function (){       //alle Minuten
                      
                      const JSPath = "a_andreas.0.eigene_dp"					// JS- Pfad
                      const parsedStatesPath   = JSPath + ".Heizung"			// Pfad fuer geparste States
                      const JsonPath = "mqtt.0.ems-esp.sm_data"				// Pfad fuer Json Objekte
                      
                      let IDs = [];
                      
                      $("[id=" + JsonPath + ".*]").each(function (id) {
                          IDs.push(id)
                      })
                      
                      on({id: IDs, change: "ne"}, function (obj) {
                          let JsonObj = JSON.parse(obj.state.val)
                          Object.keys(JsonObj).forEach(function(key){
                              let currState = obj.id.replace(JsonPath, parsedStatesPath) + "." + key
                             if (getState(currState).notExist){
                                  createState(currState, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                                      setState(currState, JsonObj[key]);
                              })
                              }else {
                                  setState(currState, JsonObj[key])
                              };
                          })
                      })
                      })
                      

                      fd4394d7-4b1e-448c-955b-8616c922e63c-grafik.png
                      57556ad1-405f-438e-89b7-12d95f228838-grafik.png

                      {"collectortemp":16,"bottomtemp":57.8,"pump":"off","pumpWorkMin":30500,"energylasthour":0}
                      

                      Leider tut sich nix ........ bitte um Unterstützung!

                      Finde deine Lösung mit dynamischen DP echt genial!!!!
                      LG, mxa

                      paul53P Offline
                      paul53P Offline
                      paul53
                      schrieb am zuletzt editiert von paul53
                      #19

                      @metaxa sagte:

                      Leider tut sich nix

                      Mit createState() kann man keine Datenpunkte unter "a_andreas.0.eigene_dp" erstellen.
                      Außerdem: Was soll das schedule() drumherum ? Damit wird jede Minute ein neuer Trigger erzeugt.

                      Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                      Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                      metaxaM 1 Antwort Letzte Antwort
                      1
                      • paul53P paul53

                        @metaxa sagte:

                        Leider tut sich nix

                        Mit createState() kann man keine Datenpunkte unter "a_andreas.0.eigene_dp" erstellen.
                        Außerdem: Was soll das schedule() drumherum ? Damit wird jede Minute ein neuer Trigger erzeugt.

                        metaxaM Offline
                        metaxaM Offline
                        metaxa
                        schrieb am zuletzt editiert von metaxa
                        #20

                        @paul53 sagte in MQTT String generell aufteilen?:

                        @metaxa sagte:

                        Leider tut sich nix

                        Mit createState() kann man keine Datenpunkte unter "a_andreas.0.eigene_dp" erstellen.

                        Hi Paul,
                        ich habs geändert ... aber es tut sich auch nix.

                        // schedule("* * * * *", function (){       //alle Minuten
                        
                        const JSPath = "javascript.0"					// JS- Pfad
                        const parsedStatesPath   = JSPath + ".Heizung"			// Pfad fuer geparste States
                        const JsonPath = "mqtt.0.ems-esp.sm_data"				// Pfad fuer Json Objekte
                        
                        

                        Hättest bitte noch eine Idee?

                        Ups ...... hatte ich nicht gesehen: Ich will mit dem Shedule, dass das Script alle Minuten zum Testen ausgeführt wird.

                        paul53P 1 Antwort Letzte Antwort
                        0
                        • metaxaM metaxa

                          @paul53 sagte in MQTT String generell aufteilen?:

                          @metaxa sagte:

                          Leider tut sich nix

                          Mit createState() kann man keine Datenpunkte unter "a_andreas.0.eigene_dp" erstellen.

                          Hi Paul,
                          ich habs geändert ... aber es tut sich auch nix.

                          // schedule("* * * * *", function (){       //alle Minuten
                          
                          const JSPath = "javascript.0"					// JS- Pfad
                          const parsedStatesPath   = JSPath + ".Heizung"			// Pfad fuer geparste States
                          const JsonPath = "mqtt.0.ems-esp.sm_data"				// Pfad fuer Json Objekte
                          
                          

                          Hättest bitte noch eine Idee?

                          Ups ...... hatte ich nicht gesehen: Ich will mit dem Shedule, dass das Script alle Minuten zum Testen ausgeführt wird.

                          paul53P Offline
                          paul53P Offline
                          paul53
                          schrieb am zuletzt editiert von paul53
                          #21

                          @metaxa sagte:

                          Hättest bitte noch eine Idee?

                          Du willst einen bestimmten Datenpunkt parsen. Dazu braucht man kein Array of IDs.

                          const idJson = 'mqtt.0.ems-esp.sm_data';
                          const path = 'Heizung.';
                          const js = 'javascript.' + instance + '.';
                          
                          on(idJson, function(dp) { // triggert bei Wertänderung
                             let obj = JSON.parse(dp.state.val);
                             for(let prop in obj) {
                                if(existsState(js + path + prop)) setState(path + prop, obj[prop], true);
                                else createState(path + prop, obj[prop], {type: typeof obj[prop]});
                             }
                          });
                          

                          Bei den Datenpunkten mit Zahlenwerten solltest Du noch manuell die "unit" hinzufügen, denn das geht nicht automatisch.

                          Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                          Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                          metaxaM 1 Antwort Letzte Antwort
                          1
                          • paul53P paul53

                            @metaxa sagte:

                            Hättest bitte noch eine Idee?

                            Du willst einen bestimmten Datenpunkt parsen. Dazu braucht man kein Array of IDs.

                            const idJson = 'mqtt.0.ems-esp.sm_data';
                            const path = 'Heizung.';
                            const js = 'javascript.' + instance + '.';
                            
                            on(idJson, function(dp) { // triggert bei Wertänderung
                               let obj = JSON.parse(dp.state.val);
                               for(let prop in obj) {
                                  if(existsState(js + path + prop)) setState(path + prop, obj[prop], true);
                                  else createState(path + prop, obj[prop], {type: typeof obj[prop]});
                               }
                            });
                            

                            Bei den Datenpunkten mit Zahlenwerten solltest Du noch manuell die "unit" hinzufügen, denn das geht nicht automatisch.

                            metaxaM Offline
                            metaxaM Offline
                            metaxa
                            schrieb am zuletzt editiert von
                            #22

                            @paul53 Ich werde es nie lernen und vestehen, danke Paul!
                            Ich versuche es zu kapieren, aber ich komm nicht weit genug. Paar Fragen noch bitte

                            1. wer oder was triggert das Script?
                            2. habe ich Chance meine eigene Struktur zu verwenden ("a_andreas.0.eigene_dp")

                            Ups, sehe gerade noch eine Änderung von dir, baue ich gleich ein - wird sicher Sinn machen, wenn ich auch nicht verstehe welchen :-)

                            Danke Paul für deine Zeit!

                            paul53P 1 Antwort Letzte Antwort
                            0
                            • metaxaM metaxa

                              @paul53 Ich werde es nie lernen und vestehen, danke Paul!
                              Ich versuche es zu kapieren, aber ich komm nicht weit genug. Paar Fragen noch bitte

                              1. wer oder was triggert das Script?
                              2. habe ich Chance meine eigene Struktur zu verwenden ("a_andreas.0.eigene_dp")

                              Ups, sehe gerade noch eine Änderung von dir, baue ich gleich ein - wird sicher Sinn machen, wenn ich auch nicht verstehe welchen :-)

                              Danke Paul für deine Zeit!

                              paul53P Offline
                              paul53P Offline
                              paul53
                              schrieb am zuletzt editiert von
                              #23

                              @metaxa sagte:

                              wer oder was triggert das Script?

                              Getriggert wird bei einer Wertänderung des Datenpunktes 'mqtt.0.ems-esp.sm_data'.

                              @metaxa sagte in MQTT String generell aufteilen?:

                              habe ich Chance meine eigene Struktur zu verwenden ("a_andreas.0.eigene_dp")

                              Ja, aber nicht mit createState() , sondern mit setObject() und setState() im Callback.

                              Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                              Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                              metaxaM 1 Antwort Letzte Antwort
                              1
                              • paul53P paul53

                                @metaxa sagte:

                                wer oder was triggert das Script?

                                Getriggert wird bei einer Wertänderung des Datenpunktes 'mqtt.0.ems-esp.sm_data'.

                                @metaxa sagte in MQTT String generell aufteilen?:

                                habe ich Chance meine eigene Struktur zu verwenden ("a_andreas.0.eigene_dp")

                                Ja, aber nicht mit createState() , sondern mit setObject() und setState() im Callback.

                                metaxaM Offline
                                metaxaM Offline
                                metaxa
                                schrieb am zuletzt editiert von metaxa
                                #24

                                @paul53 :-) //

                                Da hatte ich doch schon mal was gebastelt, jetzt ist es mir auch klar warum :-)

                                createState("javascript.0.scriptDatenPunkte.Sprit_AT.Tankstelle_"+index+".Index", 0,{type: 'number', name: 'ID', read: true, write: true});
                                        setState("javascript.0.scriptDatenPunkte.Sprit_AT.Tankstelle_"+index+".Index", gasStation[index].id);
                                

                                Muss mich nochmals reinfuchsen. Ahhh, is doch was anderes ....... ich fuchse .....

                                Zum 27sten mal, danke dir Paul!
                                mxa

                                paul53P 1 Antwort Letzte Antwort
                                0
                                • metaxaM metaxa

                                  @paul53 :-) //

                                  Da hatte ich doch schon mal was gebastelt, jetzt ist es mir auch klar warum :-)

                                  createState("javascript.0.scriptDatenPunkte.Sprit_AT.Tankstelle_"+index+".Index", 0,{type: 'number', name: 'ID', read: true, write: true});
                                          setState("javascript.0.scriptDatenPunkte.Sprit_AT.Tankstelle_"+index+".Index", gasStation[index].id);
                                  

                                  Muss mich nochmals reinfuchsen. Ahhh, is doch was anderes ....... ich fuchse .....

                                  Zum 27sten mal, danke dir Paul!
                                  mxa

                                  paul53P Offline
                                  paul53P Offline
                                  paul53
                                  schrieb am zuletzt editiert von
                                  #25

                                  @metaxa sagte:

                                  Muss mich nochmals reinfuchsen.

                                  Anregung

                                  Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                                  Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                                  metaxaM 1 Antwort Letzte Antwort
                                  1
                                  • paul53P paul53

                                    @metaxa sagte:

                                    Muss mich nochmals reinfuchsen.

                                    Anregung

                                    metaxaM Offline
                                    metaxaM Offline
                                    metaxa
                                    schrieb am zuletzt editiert von
                                    #26

                                    @paul53 sagte in MQTT String generell aufteilen?:

                                    Anregung

                                    Üner diesen Thread stolperte ich schon mal, danke für den Link. Um das zu behirnen brauche ich wohl nochmals einen 1 monatigen "Lockdown". Das ist schon ein hartes Stück Brot.

                                    LG, mxa

                                    1 Antwort Letzte Antwort
                                    0
                                    • R Offline
                                      R Offline
                                      Rushmed
                                      Most Active
                                      schrieb am zuletzt editiert von
                                      #27

                                      Hallo, ich habe mir das Script von oben geschnappt und angepasst.

                                      Script:

                                      const JSPath = "0_userdata.0"                              // JS- Pfad
                                      const parsedStatesPath   = JSPath + ".cam_kueche"         // Pfad fuer geparste States
                                      const zigbee2mqttJsonPath = "mqtt.0.cam_kueche"           //Pfad fuer zigbee2mqtt Json Objekte
                                      let IDs = [];
                                      
                                      
                                      $("[id=" + zigbee2mqttJsonPath + ".*]").each(function (id) {
                                          IDs.push(id)
                                      })
                                      on({id: IDs, change: "ne"}, function (obj) {
                                          let JsonObj = JSON.parse(obj.state.val)
                                          Object.keys(JsonObj).forEach(function(key){
                                              let currState = obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + "." + key
                                              if (getState(currState).notExist){
                                                  createState(currState, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                                                      setState(currState, JsonObj[key]);
                                              })
                                              }else {
                                                  setState(currState, JsonObj[key])
                                              };
                                          })
                                      })
                                      

                                      Im Datenpunkt steht bspw. dieser Wert:

                                      {"start":"2020-11-07T16:06:12+0100","end":"2020-11-07T16:07:12+0100","files":[ "2020Y11M07D16H/07M00S60.mp4", "2020Y11M07D16H/06M10S50.mp4", "2020Y11M07D16H/05M00S60.mp4" ]}
                                      

                                      Das Script legt die Datenpunkte an und befüllt sie auch.
                                      2b416f36-f3fe-4dfc-924b-9a9659759285-grafik.png

                                      Im Log passier allerdings folgendes:

                                      javascript.0	2020-11-07 16:06:15.130	error	(17569) at processImmediate (internal/timers.js:461:21)
                                      javascript.0	2020-11-07 16:06:15.130	error	(17569) at Immediate._onImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                                      javascript.0	2020-11-07 16:06:15.130	error	(17569) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:463:25)
                                      javascript.0	2020-11-07 16:06:15.129	error	(17569) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1065:38)
                                      javascript.0	2020-11-07 16:06:15.129	error	(17569) at Object.<anonymous> (script.js.Parsing.cam_kueche:11:24)
                                      javascript.0	2020-11-07 16:06:15.129	error	(17569) at JSON.parse (<anonymous>:null:null)
                                      javascript.0	2020-11-07 16:06:15.128	error	(17569) Error in callback: SyntaxError: Unexpected token � in JSON at position 0
                                      

                                      Kann mir jemand helfen die Fehlermeldungen zu verstehen?

                                      R 1 Antwort Letzte Antwort
                                      0
                                      • R Rushmed

                                        Hallo, ich habe mir das Script von oben geschnappt und angepasst.

                                        Script:

                                        const JSPath = "0_userdata.0"                              // JS- Pfad
                                        const parsedStatesPath   = JSPath + ".cam_kueche"         // Pfad fuer geparste States
                                        const zigbee2mqttJsonPath = "mqtt.0.cam_kueche"           //Pfad fuer zigbee2mqtt Json Objekte
                                        let IDs = [];
                                        
                                        
                                        $("[id=" + zigbee2mqttJsonPath + ".*]").each(function (id) {
                                            IDs.push(id)
                                        })
                                        on({id: IDs, change: "ne"}, function (obj) {
                                            let JsonObj = JSON.parse(obj.state.val)
                                            Object.keys(JsonObj).forEach(function(key){
                                                let currState = obj.id.replace(zigbee2mqttJsonPath, parsedStatesPath) + "." + key
                                                if (getState(currState).notExist){
                                                    createState(currState, JsonObj[key], {read: true, write: true, type: typeof(JsonObj[key]), name: '' , desc: ''},function(){
                                                        setState(currState, JsonObj[key]);
                                                })
                                                }else {
                                                    setState(currState, JsonObj[key])
                                                };
                                            })
                                        })
                                        

                                        Im Datenpunkt steht bspw. dieser Wert:

                                        {"start":"2020-11-07T16:06:12+0100","end":"2020-11-07T16:07:12+0100","files":[ "2020Y11M07D16H/07M00S60.mp4", "2020Y11M07D16H/06M10S50.mp4", "2020Y11M07D16H/05M00S60.mp4" ]}
                                        

                                        Das Script legt die Datenpunkte an und befüllt sie auch.
                                        2b416f36-f3fe-4dfc-924b-9a9659759285-grafik.png

                                        Im Log passier allerdings folgendes:

                                        javascript.0	2020-11-07 16:06:15.130	error	(17569) at processImmediate (internal/timers.js:461:21)
                                        javascript.0	2020-11-07 16:06:15.130	error	(17569) at Immediate._onImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                                        javascript.0	2020-11-07 16:06:15.130	error	(17569) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:463:25)
                                        javascript.0	2020-11-07 16:06:15.129	error	(17569) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1065:38)
                                        javascript.0	2020-11-07 16:06:15.129	error	(17569) at Object.<anonymous> (script.js.Parsing.cam_kueche:11:24)
                                        javascript.0	2020-11-07 16:06:15.129	error	(17569) at JSON.parse (<anonymous>:null:null)
                                        javascript.0	2020-11-07 16:06:15.128	error	(17569) Error in callback: SyntaxError: Unexpected token � in JSON at position 0
                                        

                                        Kann mir jemand helfen die Fehlermeldungen zu verstehen?

                                        R Offline
                                        R Offline
                                        Rushmed
                                        Most Active
                                        schrieb am zuletzt editiert von
                                        #28

                                        @Rushmed Hat niemand ne Idee?

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


                                        Support us

                                        ioBroker
                                        Community Adapters
                                        Donate

                                        597

                                        Online

                                        32.5k

                                        Benutzer

                                        81.6k

                                        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