Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Skripten / Logik
    4. MQTT String generell aufteilen?

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    MQTT String generell aufteilen?

    This topic has been deleted. Only users with topic management privileges can see it.
    • paul53
      paul53 @metaxa last edited by 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.

      metaxa 1 Reply Last reply Reply Quote 1
      • metaxa
        metaxa @paul53 last edited by 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.

        paul53 1 Reply Last reply Reply Quote 0
        • paul53
          paul53 @metaxa last edited by 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.

          metaxa 1 Reply Last reply Reply Quote 1
          • metaxa
            metaxa @paul53 last edited by

            @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!

            paul53 1 Reply Last reply Reply Quote 0
            • paul53
              paul53 @metaxa last edited by

              @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.

              metaxa 1 Reply Last reply Reply Quote 1
              • metaxa
                metaxa @paul53 last edited by 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

                paul53 1 Reply Last reply Reply Quote 0
                • paul53
                  paul53 @metaxa last edited by

                  @metaxa sagte:

                  Muss mich nochmals reinfuchsen.

                  Anregung

                  metaxa 1 Reply Last reply Reply Quote 1
                  • metaxa
                    metaxa @paul53 last edited by

                    @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 Reply Last reply Reply Quote 0
                    • R
                      Rushmed Most Active last edited by

                      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 Reply Last reply Reply Quote 0
                      • R
                        Rushmed Most Active @Rushmed last edited by

                        @Rushmed Hat niemand ne Idee?

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

                        Support us

                        ioBroker
                        Community Adapters
                        Donate

                        899
                        Online

                        31.8k
                        Users

                        80.0k
                        Topics

                        1.3m
                        Posts

                        javascript
                        7
                        28
                        2569
                        Loading More Posts
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes
                        Reply
                        • Reply as topic
                        Log in to reply
                        Community
                        Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                        The ioBroker Community 2014-2023
                        logo