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. ioBroker Allgemein
  4. Status vom Kostal Wechselrichter auslesen?

NEWS

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

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

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

Status vom Kostal Wechselrichter auslesen?

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
331 Beiträge 35 Kommentatoren 88.8k Aufrufe 25 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.
  • DiginixD Offline
    DiginixD Offline
    Diginix
    schrieb am zuletzt editiert von
    #43

    Kann mir hier jemand die modbus Adapter Einstellungen für ein Plenticore Plus 5.5 mit Firmware 1.30 erklären oder als Screenshot zeigen.
    Habe die IP, Port und GeräteID eingetragen, sonst noch nichts weiter. Die Instanz bleibt aber gelb. Im Log steht "Serial is not available", habe aber TCP gewählt.

    ..:: So long! Tom ::..

    NUC7i3 (Ubuntu Proxmox VM) | Echo Dots 2+3. Gen | Xiaomi Sensoren | Mi Robot 1S | Yeelight | Sonoff | Shelly | H801 RGB | Gosund SP1 | NodeMCU+ESP32 | Kostal Plenticore PV+BYD | openWB

    J 1 Antwort Letzte Antwort
    0
    • bahnuhrB bahnuhr

      Ich benutze folgendes Script:

      /* Photovoltaik: Piko 5.5 Anlage
      
      Diese Script stammt aus dem Homematic Forum. Von wem weiß ich nicht mehr.
      Lief bei mir als ccu.io.Script einwandfrei.
      
      Dieses Script habe ich nun auf iobroker umgeschrieben.
      
      @bahnuhr
      02.01.2017 Dieter Müller
      */
      
      //Variaben
      var idaktuell = 'javascript.0.Status.Photovoltaik.Leistung_aktuell';
      var idTag = 'javascript.0.Status.Photovoltaik.Tagesleistung';
      var idall = 'javascript.0.Status.Photovoltaik.Leistung_gesamt';
      var idP1 = 'javascript.0.Status.Photovoltaik.Leistung_Strang1';
      var idP2 = 'javascript.0.Status.Photovoltaik.Leistung_Strang2';
      
      var NameAnlage = 'xxx';   // Nutzername der Photovoltaik-Anlage
      var PassAnlage = 'x';   // Password der Photovoltaik-Anlage
      var IPAnlage = '192.168.xxx.xx';   // IP der Photovoltaik-Anlage
      
      var logging = false;
      
       function Piko() {
                  var cheerio = require('cheerio');
                  var request = require('request');
      
                  if (logging) log("Piko 5.5 auslesen");
                  //http://SN-Login:WGrZMkb@192.168.243.75
                  request('http://' + NameAnlage + ':' + PassAnlage +'@' + IPAnlage, function (error, response, body) {
                          $ = cheerio.load(body);
                          var d = $("td");
      
                          var pwr = parseFloat(d.eq(14).text().trim());   // Energie aktuell in W
                          var day = parseFloat(d.eq(26).text().trim());   // Tagesenergie in kWh
                          var all = parseFloat(d.eq(17).text().trim());   // Gesamtenergie in kWh
                          var v1 = d.eq(56).text().trim();   // PV Generator Nr. 1 - Spannung in V
                          var i1 = d.eq(65).text().trim();   // PV Generator Nr. 1 - Strom in A
                          var p1 = parseInt(v1 * i1);
                          var v2 = d.eq(82).text().trim();   // PV Generator Nr. 1 - Spannung in V
                          var i2 = d.eq(91).text().trim();   // PV Generator Nr. 1 - Strom in A
                          var p2 = parseInt(v2 * i2);
                          if (isNaN(pwr)) pwr = 0;
                          if (isNaN(p1)) p1 = 0;
                          if (isNaN(p2)) p2 = 0;
      
                          if (logging) log("Leistung aktuell= " + pwr);
                          if (logging) log("Tagesleistung= " + day);
                          if (logging) log("Leistung gesamt= " + all);
      					if (logging) log("Leistung Strang 1= " + p1);
      					if (logging) log("Leistung Strang 2= " + p2);
      
                          setState(idaktuell, pwr);
                          setState(idTag, day);
                          setState(idall, all);
                          setState(idP1, p1);
                          setState(idP2, p2);
                  });
          }
      
      schedule("2,7,12,17,22,27,32,37,42,47,52,57 * * * *", function () {
          log ("Auslöser: Schedule");
      	Piko();
      });
      
      schedule("3 0 * * *", function () {     // Variablen löschen um 00:03 Uhr
          setState('javascript.0.Status.Photovoltaik.Tagesleistung', 0);
      });
      
      
      • Variablen manuell anlegen

      • benutzernamen, password, ip anpassen

      • cheerio unter js eintragen.

      dann klappts.

      mfg

      Dieter

      S Offline
      S Offline
      Spooky99
      schrieb am zuletzt editiert von
      #44

      @bahnuhr
      Hallo Dieter,
      ich versuche mich grad an dem skript, bin aber noch seeeeeeeeehr neu in dem ganzen Thema.
      Was meinst du mit Cheerio unter JS eintragen?
      Und die Variablen kann ich in einen Ordner anlegen den ich z.B. Wechselrichter nenne?

      bahnuhrB 1 Antwort Letzte Antwort
      0
      • S Spooky99

        @bahnuhr
        Hallo Dieter,
        ich versuche mich grad an dem skript, bin aber noch seeeeeeeeehr neu in dem ganzen Thema.
        Was meinst du mit Cheerio unter JS eintragen?
        Und die Variablen kann ich in einen Ordner anlegen den ich z.B. Wechselrichter nenne?

        bahnuhrB Online
        bahnuhrB Online
        bahnuhr
        Forum Testing Most Active
        schrieb am zuletzt editiert von
        #45

        @Spooky99 sagte in Status vom Kostal Wechselrichter auslesen?:

        @bahnuhr
        Hallo Dieter,
        ich versuche mich grad an dem skript, bin aber noch seeeeeeeeehr neu in dem ganzen Thema.
        Was meinst du mit Cheerio unter JS eintragen?
        Und die Variablen kann ich in einen Ordner anlegen den ich z.B. Wechselrichter nenne?

        cheerio klappt nicht mehr.

        Musste das Script wie folgt ändern:

        // Photovoltaik: Piko 5.5 Anlage (alte Firmware)
        // Danke an homoran für den regex
        // @bahnuhr; 03/2019 Dieter Müller
        
        //Variaben
            var idaktuell = 'javascript.0.Status.Photovoltaik.Leistung_aktuell';
            var idTag = 'javascript.0.Status.Photovoltaik.Tagesleistung';
            var idall = 'javascript.0.Status.Photovoltaik.Leistung_gesamt';
            var idP1 = 'javascript.0.Status.Photovoltaik.Leistung_Strang1';
            var idP2 = 'javascript.0.Status.Photovoltaik.Leistung_Strang2';
        
            var NameAnlage = 'SN-Login';        // Nutzername der Photovoltaik-Anlage
            var PassAnlage = 'xxx';         // Password der Photovoltaik-Anlage
            var IPAnlage = '192.168.xxx.xxx';    // IP der Photovoltaik-Anlage
        
            var logging = false;
            var request = require('request');
        
        
         function Piko() {
            log("Piko 5.5 auslesen");
            var results = [];
            request('http://' + NameAnlage + ':' + PassAnlage +'@' + IPAnlage, function (error, response, body) {
                var d = body.toString();
                if (logging) log (d);
                var reg = /#FFFFFF">[^\d]+([^<]+)/g
                var z = reg.exec(d);
        
                while(z != null) {
                    if (isNaN(z[1])) {
                        if (logging) log("keine Zahl= "+ z[1]);
                        z[1] = 0;
                    } else {
                        if (logging) log("Zahl= "+ z[1]);
                        parseFloat(z[1]);
                    }
                    results[results.length] = z[1];
                    z = reg.exec(d);
                }
                if (logging) log("results= "+ results);
        
            // Werte zuordnen
                var pwr = results[0];           // Energie aktuell in W
                var day = results[2];           // Tagesenergie in kWh
                var all = results[1];           // Gesamtenergie in kWh
                var v1 = results[3];            // PV Generator Nr. 1 - Spannung in V
                var i1 = results[5];            // PV Generator Nr. 1 - Strom in A
                var p1 = parseInt(v1 * i1);
                var v2 = results[7];            // PV Generator Nr. 2 - Spannung in V
                var i2 = results[9];            // PV Generator Nr. 2 - Strom in A
                var p2 = parseInt(v2 * i2);
        
                if (logging) log("Leistung aktuell= " + pwr + " W");
                if (logging) log("Tagesleistung= " + day + " kWh");
                if (logging) log("Leistung gesamt= " + all + " kWh");
        	    if (logging) log("Leistung Strang 1= " + p1 + " W");
            	if (logging) log("Leistung Strang 2= " + p2 + " W");
        
                setState(idaktuell, parseFloat(pwr));
                setState(idTag, parseFloat(day));
                setState(idall, parseFloat(all));
                setState(idP1, parseFloat(p1));
                setState(idP2, parseFloat(p2));
            });
        }
        
        
        schedule("2,7,12,17,22,27,32,37,42,47,52,57 * * * *", function () {
            log ("Auslöser: Schedule");
        	Piko();
        });
        
        schedule("3 0 * * *", function () {     // Variablen löschen um 00:03 Uhr   
            setState('javascript.0.Status.Photovoltaik.Tagesleistung', 0);
        });
        
        
        

        Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
        Danke.
        gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
        ScreenToGif :https://www.screentogif.com/downloads.html

        S E 2 Antworten Letzte Antwort
        1
        • bahnuhrB bahnuhr

          @Spooky99 sagte in Status vom Kostal Wechselrichter auslesen?:

          @bahnuhr
          Hallo Dieter,
          ich versuche mich grad an dem skript, bin aber noch seeeeeeeeehr neu in dem ganzen Thema.
          Was meinst du mit Cheerio unter JS eintragen?
          Und die Variablen kann ich in einen Ordner anlegen den ich z.B. Wechselrichter nenne?

          cheerio klappt nicht mehr.

          Musste das Script wie folgt ändern:

          // Photovoltaik: Piko 5.5 Anlage (alte Firmware)
          // Danke an homoran für den regex
          // @bahnuhr; 03/2019 Dieter Müller
          
          //Variaben
              var idaktuell = 'javascript.0.Status.Photovoltaik.Leistung_aktuell';
              var idTag = 'javascript.0.Status.Photovoltaik.Tagesleistung';
              var idall = 'javascript.0.Status.Photovoltaik.Leistung_gesamt';
              var idP1 = 'javascript.0.Status.Photovoltaik.Leistung_Strang1';
              var idP2 = 'javascript.0.Status.Photovoltaik.Leistung_Strang2';
          
              var NameAnlage = 'SN-Login';        // Nutzername der Photovoltaik-Anlage
              var PassAnlage = 'xxx';         // Password der Photovoltaik-Anlage
              var IPAnlage = '192.168.xxx.xxx';    // IP der Photovoltaik-Anlage
          
              var logging = false;
              var request = require('request');
          
          
           function Piko() {
              log("Piko 5.5 auslesen");
              var results = [];
              request('http://' + NameAnlage + ':' + PassAnlage +'@' + IPAnlage, function (error, response, body) {
                  var d = body.toString();
                  if (logging) log (d);
                  var reg = /#FFFFFF">[^\d]+([^<]+)/g
                  var z = reg.exec(d);
          
                  while(z != null) {
                      if (isNaN(z[1])) {
                          if (logging) log("keine Zahl= "+ z[1]);
                          z[1] = 0;
                      } else {
                          if (logging) log("Zahl= "+ z[1]);
                          parseFloat(z[1]);
                      }
                      results[results.length] = z[1];
                      z = reg.exec(d);
                  }
                  if (logging) log("results= "+ results);
          
              // Werte zuordnen
                  var pwr = results[0];           // Energie aktuell in W
                  var day = results[2];           // Tagesenergie in kWh
                  var all = results[1];           // Gesamtenergie in kWh
                  var v1 = results[3];            // PV Generator Nr. 1 - Spannung in V
                  var i1 = results[5];            // PV Generator Nr. 1 - Strom in A
                  var p1 = parseInt(v1 * i1);
                  var v2 = results[7];            // PV Generator Nr. 2 - Spannung in V
                  var i2 = results[9];            // PV Generator Nr. 2 - Strom in A
                  var p2 = parseInt(v2 * i2);
          
                  if (logging) log("Leistung aktuell= " + pwr + " W");
                  if (logging) log("Tagesleistung= " + day + " kWh");
                  if (logging) log("Leistung gesamt= " + all + " kWh");
          	    if (logging) log("Leistung Strang 1= " + p1 + " W");
              	if (logging) log("Leistung Strang 2= " + p2 + " W");
          
                  setState(idaktuell, parseFloat(pwr));
                  setState(idTag, parseFloat(day));
                  setState(idall, parseFloat(all));
                  setState(idP1, parseFloat(p1));
                  setState(idP2, parseFloat(p2));
              });
          }
          
          
          schedule("2,7,12,17,22,27,32,37,42,47,52,57 * * * *", function () {
              log ("Auslöser: Schedule");
          	Piko();
          });
          
          schedule("3 0 * * *", function () {     // Variablen löschen um 00:03 Uhr   
              setState('javascript.0.Status.Photovoltaik.Tagesleistung', 0);
          });
          
          
          
          S Offline
          S Offline
          Spooky99
          schrieb am zuletzt editiert von
          #46

          @bahnuhr ok werde ich gleich mal übernehmen...
          ich tue mich noch schwer mit den Variablen anlegen, hättest du da vielleicht ein BIld wie das bei dir ausschaut? Ich bin echt unbeholfen ;-)

          bahnuhrB 1 Antwort Letzte Antwort
          0
          • S Spooky99

            @bahnuhr ok werde ich gleich mal übernehmen...
            ich tue mich noch schwer mit den Variablen anlegen, hättest du da vielleicht ein BIld wie das bei dir ausschaut? Ich bin echt unbeholfen ;-)

            bahnuhrB Online
            bahnuhrB Online
            bahnuhr
            Forum Testing Most Active
            schrieb am zuletzt editiert von
            #47

            @Spooky99 sagte in Status vom Kostal Wechselrichter auslesen?:

            Variablen anlegen,

            mit folgendem Script:

            // Photovoltaik -------------------------------------------------------------------------------------------------------------
            createState('javascript.0.Status.Photovoltaik.Leistung_aktuell', 0, {type: 'number',name: 'Leistung aktuell',min: 0,role: 'per Script'});
            createState('javascript.0.Status.Photovoltaik.Tagesleistung', 0, {type: 'number',name: 'Tagesleistung',min: 0,role: 'per Script'});
            createState('javascript.0.Status.Photovoltaik.Leistung_gesamt', 0, {type: 'number',name: 'Leistung gesamt',min: 0,role: 'per Script'});
            createState('javascript.0.Status.Photovoltaik.Leistung_Strang1', 0, {type: 'number',name: 'Leistung Strang 1',min: 0,role: 'per Script'});
            createState('javascript.0.Status.Photovoltaik.Leistung_Strang2', 0, {type: 'number',name: 'Leistung Strang 2',min: 0,role: 'value'});
            
            

            Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
            Danke.
            gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
            ScreenToGif :https://www.screentogif.com/downloads.html

            1 Antwort Letzte Antwort
            0
            • bahnuhrB Online
              bahnuhrB Online
              bahnuhr
              Forum Testing Most Active
              schrieb am zuletzt editiert von
              #48

              und bei den Objekten siehts dann so aus:

              75273d82-cc5d-41a4-a6e4-5a2a227c4e30-grafik.png


              Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
              Danke.
              gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
              ScreenToGif :https://www.screentogif.com/downloads.html

              1 Antwort Letzte Antwort
              0
              • bahnuhrB Online
                bahnuhrB Online
                bahnuhr
                Forum Testing Most Active
                schrieb am zuletzt editiert von
                #49

                und meine Darstellung in vis:
                531203d8-ecc5-4537-a0c4-8684e7de2118-grafik.png


                Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                Danke.
                gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                ScreenToGif :https://www.screentogif.com/downloads.html

                1 Antwort Letzte Antwort
                0
                • bahnuhrB Online
                  bahnuhrB Online
                  bahnuhr
                  Forum Testing Most Active
                  schrieb am zuletzt editiert von
                  #50

                  und die Darstellung in flot:
                  7e63ed26-5ab9-4b81-a454-f748ee144a1a-grafik.png

                  Aber das kannst du ja machen wie du möchtest.


                  Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                  Danke.
                  gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                  ScreenToGif :https://www.screentogif.com/downloads.html

                  1 Antwort Letzte Antwort
                  0
                  • S Offline
                    S Offline
                    Spooky99
                    schrieb am zuletzt editiert von
                    #51

                    ARGH WIE GEIL IST DAS DENN??????
                    Vielen vielen Dank!!! WIe ich das aufbereite muss ich mal sehen aber das ist ja der Hammer!
                    Da muss ich wohl doch noch nen Volkshochschulkurs belegen;-)

                    bahnuhrB 1 Antwort Letzte Antwort
                    0
                    • S Spooky99

                      ARGH WIE GEIL IST DAS DENN??????
                      Vielen vielen Dank!!! WIe ich das aufbereite muss ich mal sehen aber das ist ja der Hammer!
                      Da muss ich wohl doch noch nen Volkshochschulkurs belegen;-)

                      bahnuhrB Online
                      bahnuhrB Online
                      bahnuhr
                      Forum Testing Most Active
                      schrieb am zuletzt editiert von
                      #52

                      @Spooky99 sagte in Status vom Kostal Wechselrichter auslesen?:

                      ARGH WIE GEIL IST DAS DENN??????
                      Vielen vielen Dank!!! WIe ich das aufbereite muss ich mal sehen aber das ist ja der Hammer!
                      Da muss ich wohl doch noch nen Volkshochschulkurs belegen;-)

                      wenns gefällt dann positiv vooten.


                      Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                      Danke.
                      gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                      ScreenToGif :https://www.screentogif.com/downloads.html

                      1 Antwort Letzte Antwort
                      1
                      • S Offline
                        S Offline
                        Spooky99
                        schrieb am zuletzt editiert von
                        #53

                        und irgendwann hab ich auch raus wie ich in das runde Anzeigending 1000 2000 3000 usw. stehen habe irgendwie unterteilt der das noch falsch...

                        1 Antwort Letzte Antwort
                        0
                        • DiginixD Diginix

                          Kann mir hier jemand die modbus Adapter Einstellungen für ein Plenticore Plus 5.5 mit Firmware 1.30 erklären oder als Screenshot zeigen.
                          Habe die IP, Port und GeräteID eingetragen, sonst noch nichts weiter. Die Instanz bleibt aber gelb. Im Log steht "Serial is not available", habe aber TCP gewählt.

                          J Offline
                          J Offline
                          joefarm
                          schrieb am zuletzt editiert von
                          #54

                          @Diginix said in Status vom Kostal Wechselrichter auslesen?:

                          Kann mir hier jemand die modbus Adapter Einstellungen für ein Plenticore Plus 5.5 mit Firmware 1.30 erklären oder als Screenshot zeigen.
                          Habe die IP, Port und GeräteID eingetragen, sonst noch nichts weiter. Die Instanz bleibt aber gelb. Im Log steht "Serial is not available", habe aber TCP gewählt.

                          Sorry, hab die Frage gerade erst gelesen. Mein Plenticore Plus 10 ist jetzt seit gut einem Monat in Betrieb und ich hab einiges ausprobiert, um ihn auszulesen per modbus. Mit folgenden Einstellungen war ich erfolgreich:

                          address	name	description	unit	type	len	factor	offset	role	room	poll	wp
                          2	MODBUSEnable	MODBUS Enable		uint16be	1	1	0	value		false	false	
                          4	MODBUSUnit-ID	MODBUS Unit-ID		uint16be	1	1	0	value		false	false	
                          6	Inverterarticlenumber	Inverter article number		string	8	1	0	value		false	false	
                          14	Inverterserialnumber	Inverter serial number		string	8	1	0	value		false	false	
                          30	Numberofbidirectionalconverter	Number of bidirectional converter		uint16be	1	1	0	value		false	false	
                          32	NumberofACphases	Number of AC phases		uint16be	1	1	0	value		false	false	
                          34	NumberofPVstrings	Number of PV strings		uint16be	1	1	0	value		false	false	
                          36	Hardware-Version-	Hardware-Version -		uint16be	1	1	0	value		false	false	
                          38	Software-VersionMaincontroller(MC)	Software-Version Maincontroller (MC)		string	8	1	0	value		false	false	
                          46	Software-VersionIO-Controller(IOC)	Software-Version IO-Controller (IOC)		string	8	1	0	value		false	false	
                          54	Power-ID	Power-ID		uint16be	1	1	0	value		false	false	
                          56	Inverterstate2	Inverter state2		uint16be	1	1	0	value		true	false	
                          100	TotalDCpower	Total DC power	W	floatsw	2	1	0	value		true	false	
                          104	Stateofenergymanager3	State of energy manager3		floatsw	2	1	0	value		true	false	
                          106	Homeownconsumptionfrombattery	Home own consumption from battery	W	floatsw	2	1	0	value		true	false	
                          108	Homeownconsumptionfromgrid	Home own consumption from grid	W	floatsw	2	1	0	value		true	false	
                          110	TotalhomeconsumptionBattery	Total home consumption Battery	kWh	floatsw	2	0.001	0	value		true	false	
                          112	TotalhomeconsumptionGrid	Total home consumption Grid	kWh	floatsw	2	0.001	0	value		true	false	
                          114	TotalhomeconsumptionPV	Total home consumption PV	kWh	floatsw	2	0.001	0	value		true	false	
                          116	HomeownconsumptionfromPV	Home own consumption from PV	W	floatsw	2	1	0	value		true	false	
                          118	Totalhomeconsumption	Total home consumption	kWh	floatsw	2	0.001	0	value		true	false	
                          120	Isolationresistance	Isolation resistance	Ohm	floatsw	2	1	0	value		false	false	
                          122	PowerlimitfromEVU	Power limit from EVU	%	floatsw	2	1	0	value		true	false	
                          124	Totalhomeconsumptionrate	Total home consumption rate	%	floatsw	2	1	0	value		true	false	
                          144	Worktime	Worktime	s	floatsw	2	1	0	value		true	false	
                          150	Actualcosf	Actual cos f		floatsw	2	1	0	value		true	false	
                          152	Gridfrequency	Grid frequency	Hz	floatsw	2	1	0	value		true	false	
                          154	CurrentPhase1	Current Phase 1	A	floatsw	2	1	0	value		false	false	
                          156	ActivepowerPhase1	Active power Phase 1	W	floatsw	2	1	0	value		false	false	
                          158	VoltagePhase1	Voltage Phase 1	V	floatsw	2	1	0	value		false	false	
                          160	CurrentPhase2	Current Phase 2	A	floatsw	2	1	0	value		false	false	
                          162	ActivepowerPhase2	Active power Phase 2	W	floatsw	2	1	0	value		false	false	
                          164	VoltagePhase2	Voltage Phase 2	V	floatsw	2	1	0	value		false	false	
                          166	CurrentPhase3	Current Phase 3	A	floatsw	2	1	0	value		false	false	
                          168	ActivepowerPhase3	Active power Phase 3	W	floatsw	2	1	0	value		false	false	
                          170	VoltagePhase3	Voltage Phase 3	V	floatsw	2	1	0	value		false	false	
                          172	TotalACactivepower	Total AC active power	W	floatsw	2	1	0	value		true	false	
                          174	TotalACreactivepower	Total AC reactive power	Var	floatsw	2	1	0	value		false	false	
                          178	TotalACapparentpower	Total AC apparent power	VA	floatsw	2	1	0	value		false	false	
                          190	Batterychargecurrent	Battery charge current	A	floatsw	2	1	0	value		true	false	
                          194	Numberofbatterycycles	Number of battery cycles		floatsw	2	1	0	value		true	false	
                          200	Actualbatterycharge (-)/discharge(+)current	Actual battery charge (-)/ discharge(+)  current	A	floatsw	2	1	0	value		true	false	
                          202	PSSBfusestate6	PSSB fuse state6		floatsw	2	1	0	value		true	false	
                          208	Batteryreadyflag	Battery ready flag		floatsw	2	1	0	value		true	false	
                          210	Act.stateofcharge	Act. state of charge	%	floatsw	2	1	0	value		true	false	
                          212	Batterystate5	Battery state5		floatsw	2	1	0	value		false	false	
                          214	Batterytemperature	Battery temperature	°C	floatsw	2	1	0	value		true	false	
                          216	Batteryvoltage	Battery voltage	V	floatsw	2	1	0	value		true	false	
                          218	Cosf(powermeter)	Cos f (powermeter)		floatsw	2	1	0	value		true	false	
                          220	Frequency(powermeter)	Frequency (powermeter)	Hz	floatsw	2	1	0	value		true	false	
                          320	Totale Erzeugung	Totale Erzeugung	kWh	floatsw	2	0.001	0	value		true	false	
                          322	Tagesproduktion	Tagesproduktion	kWh	floatsw	2	0.001	0	value		true	false	
                          252	Totalactivepower(powermeter)	Total active power (powermeter)	W	floatsw	2	1	0	value		true	false	
                          324	Yearlyyield	Yearly yield	kWh	floatsw	2	0.001	0	value		true	false	
                          326	Monthlyyield	Monthly yield	kWh	floatsw	2	0.001	0	value		true	false	
                          512	Batterygrosscapacity5	Battery gross capacity5	Ah	uint32be	2	1	0	value		true	false	
                          514	BatteryactualSOC	Battery actual SOC	%	uint16be	1	1	0	value		true	false	
                          577	GenerationEnergy	Generation Energy	kWh	uint32be	2	0.001	0	value		true	false	
                          582	Actualbatterycharge/dischargepower	Actual battery charge/discharge power	W	int16be	1	1	0	value		true	false	
                          224	Activepowerphase1(powermeter)	Active power phase 1 (powermeter)	W	floatsw	2	1	0	value		true	false	
                          234	Activepowerphase2(powermeter)	Active power phase 2 (powermeter)	W	floatsw	2	1	0	value		true	false	
                          244	Activepowerphase3(powermeter)	Active power phase 3 (powermeter)	W	floatsw	2	1	0	value		true	false	
                          575	InverterGenerationPower(actual)	Inverter Generation Power (actual)	W	int16be	1	1	0	value		true	false	
                          260	PowerDC1	Power DC1	W	floatsw	2	1	0	value		true	false	
                          270	PowerDC2	Power DC2	W	floatsw	2	1	0	value		true	false	
                          280	PowerDC3	Power DC3	W	floatsw	2	1	0	value		true	false	
                          
                          

                          Nicht alle Einträge liefern brauchbare Werte, aber die meisten doch. Einfach ausprobieren.
                          Ich hab zusätzlich noch den Smart Energy Manager am laufen, den ich per 2. modbus Eintrag auslese:

                          address	name	description	unit	type	len	factor	offset	role	room	poll	wp
                          8218	Product Name	Product Name		string	16	1	0	value		true	false	
                          40071	M_AC_Current	AC Current (sum of active phases)	A	int16be	1	0.01	0	value		false	false	
                          40072	M_AC_Cur- rent_A	Phase A AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                          40073	M_AC_Cur- rent_B	Phase B AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                          40074	M_AC_Cur- rent_C	Phase C AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                          40076	M_AC_Vol- tage_LN	Line to Neutral AC Voltage (average of active phases)	V	int16be	1	0.01	0	value		false	false	
                          40077	M_AC_Vol- tage_AN	Phase A to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                          40078	M_AC_Vol- tage_BN	Phase B to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                          40079	M_AC_Vol- tage_CN	Phase C to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                          40080	M_AC_Vol- tage_LL	Line to Line AC Voltage (average of active phases)	V	uint16be	1	1	0	value		false	false	
                          40081	M_AC_Vol- tage_AB	Phase A to Phase B AC Voltage	V	uint16be	1	1	0	value		false	false	
                          40082	M_AC_Vol- tage_BC	Phase B to Phase C AC Voltage	V	uint16be	1	1	0	value		false	false	
                          40083	M_AC_Vol- tage_CA	Phase C to Phase A AC Voltage	V	uint16be	1	1	0	value		false	false	
                          40085	M_AC_Freq	AC Frequency	Hz	uint16be	1	0.01	0	value		true	false	
                          40087	M_AC_Power	Total Real Power (sum of active pha- ses)	kW	int16be	1	0.01	0	value		true	false	
                          40088	M_AC_Pow- er_A	Phase A AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                          40089	M_AC_Pow- er_B	Phase B AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                          40090	M_AC_Pow- er_C	Phase C AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                          40092	M_AC_VA	Total AC Apparent Power (sum of ac- tive phases)	VA	int16be	1	1	0	value		false	false	
                          40093	M_AC_VA_A	Phase A AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                          40094	M_AC_VA_B	Phase B AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                          40095	M_AC_VA_C	Phase C AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                          40097	M_AC_VAR	Total AC Reactive Power (sum of ac- tive phases)	var	uint16be	1	1	0	value		false	false	
                          40098	M_AC_VAR_A	Phase A AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                          40099	M_AC_VAR_B	Phase B AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                          40100	M_AC_VAR_C	Phase C AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                          40102	M_AC_PF	Average Power Factor (average of active phases)	%	uint16be	1	1	0	value		false	false	
                          40103	M_AC_PF_A	Phase A Power Factor	%	uint16be	1	1	0	value		false	false	
                          40104	M_AC_PF_B	Phase B Power Factor	%	uint16be	1	1	0	value		false	false	
                          40105	M_AC_PF_C	Phase C Power Factor	%	uint16be	1	1	0	value		false	false	
                          40107	M_Exported	Total Exported Re- al Energy	kWh	int32be	2	-0.001	0	value		true	false	
                          40109	M_Expor- ted_A	Phase A Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                          40111	M_Expor- ted_B	Phase B Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                          40113	M_Expor- ted_C	Phase C Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                          40115	M_Imported	Total Imported Re- al Energy	kWh	int32be	2	0.001	0	value		true	false	
                          40117	M_Imported_A	Phase A Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                          40119	M_Impor- ted_B	Phase B Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                          40121	M_Impor- ted_C	Phase C Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                          40124	M_Expor- ted_VA	Total Exported Ap- parent Energy	VAh	int32be	2	1	0	value		false	false	
                          40126	M_Expor- ted_VA_A	Phase A Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                          40128	M_Expor- ted_VA_B	Phase B Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                          40130	M_Expor- ted_VA_C	Phase C Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                          40132	M_Impor- ted_VA	Total Imported Ap- parent Energy	VAh	uint32be	2	1	0	value		false	false	
                          40134	M_Impor- ted_VA_A	Phase A Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                          40136	M_Impor- ted_VA_B	Phase B Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                          40138	M_Impor- ted_VA_C	Phase C Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                          40145	M_Import_ VARh_Q1B	Phase B – Quadrant 1: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40147	M_Import_ VARh_Q1C	Phase C – Quadrant 1: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40149	M_Import_ VARh_Q2	Quadrant 2: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40151	M_Import_ VARh_Q2A	Phase A – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40153	M_Import_ VARh_Q2B	Phase B – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40155	M_Import_ VARh_Q2C	Phase C – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40157	M_Export_ VARh_Q3	Quadrant 3: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40159	M_Export_ VARh_Q3A	Phase A – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40161	M_Export_ VARh_Q3B	Phase B – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40163	M_Export_ VARh_Q3C	Phase C – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40165	M_Export_ VARh_Q4	Quadrant 4: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40167	M_Export_ VARh_Q4A	Phase A – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40169	M_Export_ VARh_Q4B	Phase B – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          40171	M_Export_ VARh_Q4C	Phase C – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                          0	Active Power+	Active Power+	W	uint32be	2	1	0	value		false	false	
                          2	Active Power-	Active Power-	W	uint32be	2	1	0	value		false	false	
                          
                          

                          Beides jeweils in die Holding-Register importieren. Bin gerne aufgeschlossen, wer noch weitere Werte gefunden hat.

                          Das Ganze sieht dann visualisiert so aus:
                          6af9a378-fd30-4b27-a801-ff71183cf4e8-image.png

                          DiginixD Marco LaserM E 3 Antworten Letzte Antwort
                          0
                          • J joefarm

                            @Diginix said in Status vom Kostal Wechselrichter auslesen?:

                            Kann mir hier jemand die modbus Adapter Einstellungen für ein Plenticore Plus 5.5 mit Firmware 1.30 erklären oder als Screenshot zeigen.
                            Habe die IP, Port und GeräteID eingetragen, sonst noch nichts weiter. Die Instanz bleibt aber gelb. Im Log steht "Serial is not available", habe aber TCP gewählt.

                            Sorry, hab die Frage gerade erst gelesen. Mein Plenticore Plus 10 ist jetzt seit gut einem Monat in Betrieb und ich hab einiges ausprobiert, um ihn auszulesen per modbus. Mit folgenden Einstellungen war ich erfolgreich:

                            address	name	description	unit	type	len	factor	offset	role	room	poll	wp
                            2	MODBUSEnable	MODBUS Enable		uint16be	1	1	0	value		false	false	
                            4	MODBUSUnit-ID	MODBUS Unit-ID		uint16be	1	1	0	value		false	false	
                            6	Inverterarticlenumber	Inverter article number		string	8	1	0	value		false	false	
                            14	Inverterserialnumber	Inverter serial number		string	8	1	0	value		false	false	
                            30	Numberofbidirectionalconverter	Number of bidirectional converter		uint16be	1	1	0	value		false	false	
                            32	NumberofACphases	Number of AC phases		uint16be	1	1	0	value		false	false	
                            34	NumberofPVstrings	Number of PV strings		uint16be	1	1	0	value		false	false	
                            36	Hardware-Version-	Hardware-Version -		uint16be	1	1	0	value		false	false	
                            38	Software-VersionMaincontroller(MC)	Software-Version Maincontroller (MC)		string	8	1	0	value		false	false	
                            46	Software-VersionIO-Controller(IOC)	Software-Version IO-Controller (IOC)		string	8	1	0	value		false	false	
                            54	Power-ID	Power-ID		uint16be	1	1	0	value		false	false	
                            56	Inverterstate2	Inverter state2		uint16be	1	1	0	value		true	false	
                            100	TotalDCpower	Total DC power	W	floatsw	2	1	0	value		true	false	
                            104	Stateofenergymanager3	State of energy manager3		floatsw	2	1	0	value		true	false	
                            106	Homeownconsumptionfrombattery	Home own consumption from battery	W	floatsw	2	1	0	value		true	false	
                            108	Homeownconsumptionfromgrid	Home own consumption from grid	W	floatsw	2	1	0	value		true	false	
                            110	TotalhomeconsumptionBattery	Total home consumption Battery	kWh	floatsw	2	0.001	0	value		true	false	
                            112	TotalhomeconsumptionGrid	Total home consumption Grid	kWh	floatsw	2	0.001	0	value		true	false	
                            114	TotalhomeconsumptionPV	Total home consumption PV	kWh	floatsw	2	0.001	0	value		true	false	
                            116	HomeownconsumptionfromPV	Home own consumption from PV	W	floatsw	2	1	0	value		true	false	
                            118	Totalhomeconsumption	Total home consumption	kWh	floatsw	2	0.001	0	value		true	false	
                            120	Isolationresistance	Isolation resistance	Ohm	floatsw	2	1	0	value		false	false	
                            122	PowerlimitfromEVU	Power limit from EVU	%	floatsw	2	1	0	value		true	false	
                            124	Totalhomeconsumptionrate	Total home consumption rate	%	floatsw	2	1	0	value		true	false	
                            144	Worktime	Worktime	s	floatsw	2	1	0	value		true	false	
                            150	Actualcosf	Actual cos f		floatsw	2	1	0	value		true	false	
                            152	Gridfrequency	Grid frequency	Hz	floatsw	2	1	0	value		true	false	
                            154	CurrentPhase1	Current Phase 1	A	floatsw	2	1	0	value		false	false	
                            156	ActivepowerPhase1	Active power Phase 1	W	floatsw	2	1	0	value		false	false	
                            158	VoltagePhase1	Voltage Phase 1	V	floatsw	2	1	0	value		false	false	
                            160	CurrentPhase2	Current Phase 2	A	floatsw	2	1	0	value		false	false	
                            162	ActivepowerPhase2	Active power Phase 2	W	floatsw	2	1	0	value		false	false	
                            164	VoltagePhase2	Voltage Phase 2	V	floatsw	2	1	0	value		false	false	
                            166	CurrentPhase3	Current Phase 3	A	floatsw	2	1	0	value		false	false	
                            168	ActivepowerPhase3	Active power Phase 3	W	floatsw	2	1	0	value		false	false	
                            170	VoltagePhase3	Voltage Phase 3	V	floatsw	2	1	0	value		false	false	
                            172	TotalACactivepower	Total AC active power	W	floatsw	2	1	0	value		true	false	
                            174	TotalACreactivepower	Total AC reactive power	Var	floatsw	2	1	0	value		false	false	
                            178	TotalACapparentpower	Total AC apparent power	VA	floatsw	2	1	0	value		false	false	
                            190	Batterychargecurrent	Battery charge current	A	floatsw	2	1	0	value		true	false	
                            194	Numberofbatterycycles	Number of battery cycles		floatsw	2	1	0	value		true	false	
                            200	Actualbatterycharge (-)/discharge(+)current	Actual battery charge (-)/ discharge(+)  current	A	floatsw	2	1	0	value		true	false	
                            202	PSSBfusestate6	PSSB fuse state6		floatsw	2	1	0	value		true	false	
                            208	Batteryreadyflag	Battery ready flag		floatsw	2	1	0	value		true	false	
                            210	Act.stateofcharge	Act. state of charge	%	floatsw	2	1	0	value		true	false	
                            212	Batterystate5	Battery state5		floatsw	2	1	0	value		false	false	
                            214	Batterytemperature	Battery temperature	°C	floatsw	2	1	0	value		true	false	
                            216	Batteryvoltage	Battery voltage	V	floatsw	2	1	0	value		true	false	
                            218	Cosf(powermeter)	Cos f (powermeter)		floatsw	2	1	0	value		true	false	
                            220	Frequency(powermeter)	Frequency (powermeter)	Hz	floatsw	2	1	0	value		true	false	
                            320	Totale Erzeugung	Totale Erzeugung	kWh	floatsw	2	0.001	0	value		true	false	
                            322	Tagesproduktion	Tagesproduktion	kWh	floatsw	2	0.001	0	value		true	false	
                            252	Totalactivepower(powermeter)	Total active power (powermeter)	W	floatsw	2	1	0	value		true	false	
                            324	Yearlyyield	Yearly yield	kWh	floatsw	2	0.001	0	value		true	false	
                            326	Monthlyyield	Monthly yield	kWh	floatsw	2	0.001	0	value		true	false	
                            512	Batterygrosscapacity5	Battery gross capacity5	Ah	uint32be	2	1	0	value		true	false	
                            514	BatteryactualSOC	Battery actual SOC	%	uint16be	1	1	0	value		true	false	
                            577	GenerationEnergy	Generation Energy	kWh	uint32be	2	0.001	0	value		true	false	
                            582	Actualbatterycharge/dischargepower	Actual battery charge/discharge power	W	int16be	1	1	0	value		true	false	
                            224	Activepowerphase1(powermeter)	Active power phase 1 (powermeter)	W	floatsw	2	1	0	value		true	false	
                            234	Activepowerphase2(powermeter)	Active power phase 2 (powermeter)	W	floatsw	2	1	0	value		true	false	
                            244	Activepowerphase3(powermeter)	Active power phase 3 (powermeter)	W	floatsw	2	1	0	value		true	false	
                            575	InverterGenerationPower(actual)	Inverter Generation Power (actual)	W	int16be	1	1	0	value		true	false	
                            260	PowerDC1	Power DC1	W	floatsw	2	1	0	value		true	false	
                            270	PowerDC2	Power DC2	W	floatsw	2	1	0	value		true	false	
                            280	PowerDC3	Power DC3	W	floatsw	2	1	0	value		true	false	
                            
                            

                            Nicht alle Einträge liefern brauchbare Werte, aber die meisten doch. Einfach ausprobieren.
                            Ich hab zusätzlich noch den Smart Energy Manager am laufen, den ich per 2. modbus Eintrag auslese:

                            address	name	description	unit	type	len	factor	offset	role	room	poll	wp
                            8218	Product Name	Product Name		string	16	1	0	value		true	false	
                            40071	M_AC_Current	AC Current (sum of active phases)	A	int16be	1	0.01	0	value		false	false	
                            40072	M_AC_Cur- rent_A	Phase A AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                            40073	M_AC_Cur- rent_B	Phase B AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                            40074	M_AC_Cur- rent_C	Phase C AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                            40076	M_AC_Vol- tage_LN	Line to Neutral AC Voltage (average of active phases)	V	int16be	1	0.01	0	value		false	false	
                            40077	M_AC_Vol- tage_AN	Phase A to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                            40078	M_AC_Vol- tage_BN	Phase B to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                            40079	M_AC_Vol- tage_CN	Phase C to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                            40080	M_AC_Vol- tage_LL	Line to Line AC Voltage (average of active phases)	V	uint16be	1	1	0	value		false	false	
                            40081	M_AC_Vol- tage_AB	Phase A to Phase B AC Voltage	V	uint16be	1	1	0	value		false	false	
                            40082	M_AC_Vol- tage_BC	Phase B to Phase C AC Voltage	V	uint16be	1	1	0	value		false	false	
                            40083	M_AC_Vol- tage_CA	Phase C to Phase A AC Voltage	V	uint16be	1	1	0	value		false	false	
                            40085	M_AC_Freq	AC Frequency	Hz	uint16be	1	0.01	0	value		true	false	
                            40087	M_AC_Power	Total Real Power (sum of active pha- ses)	kW	int16be	1	0.01	0	value		true	false	
                            40088	M_AC_Pow- er_A	Phase A AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                            40089	M_AC_Pow- er_B	Phase B AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                            40090	M_AC_Pow- er_C	Phase C AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                            40092	M_AC_VA	Total AC Apparent Power (sum of ac- tive phases)	VA	int16be	1	1	0	value		false	false	
                            40093	M_AC_VA_A	Phase A AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                            40094	M_AC_VA_B	Phase B AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                            40095	M_AC_VA_C	Phase C AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                            40097	M_AC_VAR	Total AC Reactive Power (sum of ac- tive phases)	var	uint16be	1	1	0	value		false	false	
                            40098	M_AC_VAR_A	Phase A AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                            40099	M_AC_VAR_B	Phase B AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                            40100	M_AC_VAR_C	Phase C AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                            40102	M_AC_PF	Average Power Factor (average of active phases)	%	uint16be	1	1	0	value		false	false	
                            40103	M_AC_PF_A	Phase A Power Factor	%	uint16be	1	1	0	value		false	false	
                            40104	M_AC_PF_B	Phase B Power Factor	%	uint16be	1	1	0	value		false	false	
                            40105	M_AC_PF_C	Phase C Power Factor	%	uint16be	1	1	0	value		false	false	
                            40107	M_Exported	Total Exported Re- al Energy	kWh	int32be	2	-0.001	0	value		true	false	
                            40109	M_Expor- ted_A	Phase A Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                            40111	M_Expor- ted_B	Phase B Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                            40113	M_Expor- ted_C	Phase C Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                            40115	M_Imported	Total Imported Re- al Energy	kWh	int32be	2	0.001	0	value		true	false	
                            40117	M_Imported_A	Phase A Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                            40119	M_Impor- ted_B	Phase B Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                            40121	M_Impor- ted_C	Phase C Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                            40124	M_Expor- ted_VA	Total Exported Ap- parent Energy	VAh	int32be	2	1	0	value		false	false	
                            40126	M_Expor- ted_VA_A	Phase A Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                            40128	M_Expor- ted_VA_B	Phase B Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                            40130	M_Expor- ted_VA_C	Phase C Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                            40132	M_Impor- ted_VA	Total Imported Ap- parent Energy	VAh	uint32be	2	1	0	value		false	false	
                            40134	M_Impor- ted_VA_A	Phase A Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                            40136	M_Impor- ted_VA_B	Phase B Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                            40138	M_Impor- ted_VA_C	Phase C Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                            40145	M_Import_ VARh_Q1B	Phase B – Quadrant 1: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40147	M_Import_ VARh_Q1C	Phase C – Quadrant 1: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40149	M_Import_ VARh_Q2	Quadrant 2: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40151	M_Import_ VARh_Q2A	Phase A – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40153	M_Import_ VARh_Q2B	Phase B – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40155	M_Import_ VARh_Q2C	Phase C – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40157	M_Export_ VARh_Q3	Quadrant 3: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40159	M_Export_ VARh_Q3A	Phase A – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40161	M_Export_ VARh_Q3B	Phase B – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40163	M_Export_ VARh_Q3C	Phase C – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40165	M_Export_ VARh_Q4	Quadrant 4: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40167	M_Export_ VARh_Q4A	Phase A – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40169	M_Export_ VARh_Q4B	Phase B – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            40171	M_Export_ VARh_Q4C	Phase C – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                            0	Active Power+	Active Power+	W	uint32be	2	1	0	value		false	false	
                            2	Active Power-	Active Power-	W	uint32be	2	1	0	value		false	false	
                            
                            

                            Beides jeweils in die Holding-Register importieren. Bin gerne aufgeschlossen, wer noch weitere Werte gefunden hat.

                            Das Ganze sieht dann visualisiert so aus:
                            6af9a378-fd30-4b27-a801-ff71183cf4e8-image.png

                            DiginixD Offline
                            DiginixD Offline
                            Diginix
                            schrieb am zuletzt editiert von
                            #55

                            @joefarm
                            Danke, hatte es damals selbst gelöst bekommen.
                            Wichtig war die Adressen unter Holding Registers und mit Float (Big Endian Word Swap) anzulegen.

                            ..:: So long! Tom ::..

                            NUC7i3 (Ubuntu Proxmox VM) | Echo Dots 2+3. Gen | Xiaomi Sensoren | Mi Robot 1S | Yeelight | Sonoff | Shelly | H801 RGB | Gosund SP1 | NodeMCU+ESP32 | Kostal Plenticore PV+BYD | openWB

                            J 1 Antwort Letzte Antwort
                            0
                            • DiginixD Diginix

                              @joefarm
                              Danke, hatte es damals selbst gelöst bekommen.
                              Wichtig war die Adressen unter Holding Registers und mit Float (Big Endian Word Swap) anzulegen.

                              J Offline
                              J Offline
                              joefarm
                              schrieb am zuletzt editiert von
                              #56

                              @Diginix
                              Alles klar, freut mich wenn es geklappt hat.

                              1 Antwort Letzte Antwort
                              0
                              • bahnuhrB bahnuhr

                                @Spooky99 sagte in Status vom Kostal Wechselrichter auslesen?:

                                @bahnuhr
                                Hallo Dieter,
                                ich versuche mich grad an dem skript, bin aber noch seeeeeeeeehr neu in dem ganzen Thema.
                                Was meinst du mit Cheerio unter JS eintragen?
                                Und die Variablen kann ich in einen Ordner anlegen den ich z.B. Wechselrichter nenne?

                                cheerio klappt nicht mehr.

                                Musste das Script wie folgt ändern:

                                // Photovoltaik: Piko 5.5 Anlage (alte Firmware)
                                // Danke an homoran für den regex
                                // @bahnuhr; 03/2019 Dieter Müller
                                
                                //Variaben
                                    var idaktuell = 'javascript.0.Status.Photovoltaik.Leistung_aktuell';
                                    var idTag = 'javascript.0.Status.Photovoltaik.Tagesleistung';
                                    var idall = 'javascript.0.Status.Photovoltaik.Leistung_gesamt';
                                    var idP1 = 'javascript.0.Status.Photovoltaik.Leistung_Strang1';
                                    var idP2 = 'javascript.0.Status.Photovoltaik.Leistung_Strang2';
                                
                                    var NameAnlage = 'SN-Login';        // Nutzername der Photovoltaik-Anlage
                                    var PassAnlage = 'xxx';         // Password der Photovoltaik-Anlage
                                    var IPAnlage = '192.168.xxx.xxx';    // IP der Photovoltaik-Anlage
                                
                                    var logging = false;
                                    var request = require('request');
                                
                                
                                 function Piko() {
                                    log("Piko 5.5 auslesen");
                                    var results = [];
                                    request('http://' + NameAnlage + ':' + PassAnlage +'@' + IPAnlage, function (error, response, body) {
                                        var d = body.toString();
                                        if (logging) log (d);
                                        var reg = /#FFFFFF">[^\d]+([^<]+)/g
                                        var z = reg.exec(d);
                                
                                        while(z != null) {
                                            if (isNaN(z[1])) {
                                                if (logging) log("keine Zahl= "+ z[1]);
                                                z[1] = 0;
                                            } else {
                                                if (logging) log("Zahl= "+ z[1]);
                                                parseFloat(z[1]);
                                            }
                                            results[results.length] = z[1];
                                            z = reg.exec(d);
                                        }
                                        if (logging) log("results= "+ results);
                                
                                    // Werte zuordnen
                                        var pwr = results[0];           // Energie aktuell in W
                                        var day = results[2];           // Tagesenergie in kWh
                                        var all = results[1];           // Gesamtenergie in kWh
                                        var v1 = results[3];            // PV Generator Nr. 1 - Spannung in V
                                        var i1 = results[5];            // PV Generator Nr. 1 - Strom in A
                                        var p1 = parseInt(v1 * i1);
                                        var v2 = results[7];            // PV Generator Nr. 2 - Spannung in V
                                        var i2 = results[9];            // PV Generator Nr. 2 - Strom in A
                                        var p2 = parseInt(v2 * i2);
                                
                                        if (logging) log("Leistung aktuell= " + pwr + " W");
                                        if (logging) log("Tagesleistung= " + day + " kWh");
                                        if (logging) log("Leistung gesamt= " + all + " kWh");
                                	    if (logging) log("Leistung Strang 1= " + p1 + " W");
                                    	if (logging) log("Leistung Strang 2= " + p2 + " W");
                                
                                        setState(idaktuell, parseFloat(pwr));
                                        setState(idTag, parseFloat(day));
                                        setState(idall, parseFloat(all));
                                        setState(idP1, parseFloat(p1));
                                        setState(idP2, parseFloat(p2));
                                    });
                                }
                                
                                
                                schedule("2,7,12,17,22,27,32,37,42,47,52,57 * * * *", function () {
                                    log ("Auslöser: Schedule");
                                	Piko();
                                });
                                
                                schedule("3 0 * * *", function () {     // Variablen löschen um 00:03 Uhr   
                                    setState('javascript.0.Status.Photovoltaik.Tagesleistung', 0);
                                });
                                
                                
                                
                                E Offline
                                E Offline
                                ee
                                schrieb am zuletzt editiert von ee
                                #57

                                @bahnuhr Hi, super Beitrag! funktioniert bei mir! Wie kann ich noch die Werte vom BA anzeigen lassen?
                                http://192.168.170.200/BA.fhtml (Hausverbrauch)
                                Grüße!

                                Hier noch die Seite:
                                <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
                                <html><head>
                                <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
                                <meta name="Generator" content="ChrisB">
                                <title>PV Webserver</title>
                                </head>
                                <body nof="(MB=(DefaultMasterborder, 65, 60, 150, 10), L=(HomeLayout, 700, 600))" bgcolor="#EAF7F7" text="#000000" link="#0033CC" vlink="#990099" alink="#FF0000" topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>
                                <table cellspacing="0" cellpadding="0" width="800" nof="ly">
                                <tr valign="top" align="left">
                                <td height="5" width="190"></td>
                                <td></td>
                                </tr>
                                <tr align="left" valign="top">
                                <td height="55"></td>
                                <td colspan="2" width="600">
                                <font face="Arial,Helvetica,Geneva,Sans-serif,sans-serif" size="+3">
                                PIKO 10
                                <br><font size="+1">
                                Ebert (255)
                                </font>
                                </font>
                                <td colspan="1" width="50"><img alt="Logo" height="42" width="130" src="KSE.gif"></td>
                                </tr>
                                </table>

                                <table border="0" width="100%">
                                <tr>
                                   <td width="150"></td>
                                   <td> <hr> </td>
                                </tr></table>
                                
                                <font face="Arial,Helvetica,Geneva,Sans-serif,sans-serif">
                                <table border="0" width="100%">
                                  <tr>
                                    <td height="30" width="150"></td>
                                    <td>
                                      <font size="+1"><U>Batterie
                                      </u></font></td>
                                  </tr><tr>
                                    <td width="150"></td>
                                    <td width="280" height="35" align="right">Ladezustand:</td>
                                    <td><b>0.0%</b></td>
                                  </tr><tr>
                                    <td width="150"></td>
                                    <td width="280" height="35" align="right">Spannung:</td>
                                    <td><b>   0V</b></td>
                                  </tr><tr>
                                    <td width="150"></td>
                                    <td width="280" height="35" align="right">Ladestrom:</td>
                                    <td><b> 0.00A</b></td>
                                  </tr><tr>
                                    <td width="150"></td>
                                    <td width="280" height="35" align="right">Temperatur:</td>
                                    <td><b> 0.0°C</b></td>
                                  </tr><tr>
                                    <td width="150"></td>
                                    <td align="right" height="35" width="280">Zyklenanzahl:</td>
                                    <td><b>0</b></td>
                                  </tr><tr>
                                    <td height="50" width="150"></td>
                                    <td>
                                      <font size="+1"><u>Hausverbrauch
                                      </u></font></td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td height="35" width="280">Deckung des Hausverbrauches aus:</td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td align="right" height="35" width="280">Solargenerator:</td>
                                    <td><b>  0.0W</b></td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td align="right" height="35" width="280">Batterie:</td>
                                    <td><b>  0.0W</b></td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td align="right" height="35" width="280">Netz:</td>
                                    <td><b>  0.0W</b></td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td height="35" width="280">Phasenselektiver Hausverbrauch:</td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td align="right" height="35" width="280">Phase 1:</td>
                                    <td><b>  0.0W</b></td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td align="right" height="35" width="280">Phase 2:</td>
                                    <td><b>  0.0W</b></td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td align="right" height="35" width="280">Phase 3:</td>
                                    <td><b>  0.0W</b></td>
                                  </tr><tr>	    
                                    <td width="150"></td>
                                    <td align="right" height="35" width="280"></td>
                                  </tr>
                                </table>
                                </font>
                                <hr><br>
                                

                                <table align="left"><tbody><tr><td width="160">&nbsp</td><td>
                                <font face="Arial,Helvetica,Geneva,Sans-serif">&nbsp&nbsp
                                &nbsp<a href="index.fhtml"> Zurück zur Hauptseite </a>
                                &nbsp
                                </font></td></tr></tbody></table>

                                </body></html>

                                bahnuhrB 1 Antwort Letzte Antwort
                                0
                                • J joefarm

                                  @Diginix said in Status vom Kostal Wechselrichter auslesen?:

                                  Kann mir hier jemand die modbus Adapter Einstellungen für ein Plenticore Plus 5.5 mit Firmware 1.30 erklären oder als Screenshot zeigen.
                                  Habe die IP, Port und GeräteID eingetragen, sonst noch nichts weiter. Die Instanz bleibt aber gelb. Im Log steht "Serial is not available", habe aber TCP gewählt.

                                  Sorry, hab die Frage gerade erst gelesen. Mein Plenticore Plus 10 ist jetzt seit gut einem Monat in Betrieb und ich hab einiges ausprobiert, um ihn auszulesen per modbus. Mit folgenden Einstellungen war ich erfolgreich:

                                  address	name	description	unit	type	len	factor	offset	role	room	poll	wp
                                  2	MODBUSEnable	MODBUS Enable		uint16be	1	1	0	value		false	false	
                                  4	MODBUSUnit-ID	MODBUS Unit-ID		uint16be	1	1	0	value		false	false	
                                  6	Inverterarticlenumber	Inverter article number		string	8	1	0	value		false	false	
                                  14	Inverterserialnumber	Inverter serial number		string	8	1	0	value		false	false	
                                  30	Numberofbidirectionalconverter	Number of bidirectional converter		uint16be	1	1	0	value		false	false	
                                  32	NumberofACphases	Number of AC phases		uint16be	1	1	0	value		false	false	
                                  34	NumberofPVstrings	Number of PV strings		uint16be	1	1	0	value		false	false	
                                  36	Hardware-Version-	Hardware-Version -		uint16be	1	1	0	value		false	false	
                                  38	Software-VersionMaincontroller(MC)	Software-Version Maincontroller (MC)		string	8	1	0	value		false	false	
                                  46	Software-VersionIO-Controller(IOC)	Software-Version IO-Controller (IOC)		string	8	1	0	value		false	false	
                                  54	Power-ID	Power-ID		uint16be	1	1	0	value		false	false	
                                  56	Inverterstate2	Inverter state2		uint16be	1	1	0	value		true	false	
                                  100	TotalDCpower	Total DC power	W	floatsw	2	1	0	value		true	false	
                                  104	Stateofenergymanager3	State of energy manager3		floatsw	2	1	0	value		true	false	
                                  106	Homeownconsumptionfrombattery	Home own consumption from battery	W	floatsw	2	1	0	value		true	false	
                                  108	Homeownconsumptionfromgrid	Home own consumption from grid	W	floatsw	2	1	0	value		true	false	
                                  110	TotalhomeconsumptionBattery	Total home consumption Battery	kWh	floatsw	2	0.001	0	value		true	false	
                                  112	TotalhomeconsumptionGrid	Total home consumption Grid	kWh	floatsw	2	0.001	0	value		true	false	
                                  114	TotalhomeconsumptionPV	Total home consumption PV	kWh	floatsw	2	0.001	0	value		true	false	
                                  116	HomeownconsumptionfromPV	Home own consumption from PV	W	floatsw	2	1	0	value		true	false	
                                  118	Totalhomeconsumption	Total home consumption	kWh	floatsw	2	0.001	0	value		true	false	
                                  120	Isolationresistance	Isolation resistance	Ohm	floatsw	2	1	0	value		false	false	
                                  122	PowerlimitfromEVU	Power limit from EVU	%	floatsw	2	1	0	value		true	false	
                                  124	Totalhomeconsumptionrate	Total home consumption rate	%	floatsw	2	1	0	value		true	false	
                                  144	Worktime	Worktime	s	floatsw	2	1	0	value		true	false	
                                  150	Actualcosf	Actual cos f		floatsw	2	1	0	value		true	false	
                                  152	Gridfrequency	Grid frequency	Hz	floatsw	2	1	0	value		true	false	
                                  154	CurrentPhase1	Current Phase 1	A	floatsw	2	1	0	value		false	false	
                                  156	ActivepowerPhase1	Active power Phase 1	W	floatsw	2	1	0	value		false	false	
                                  158	VoltagePhase1	Voltage Phase 1	V	floatsw	2	1	0	value		false	false	
                                  160	CurrentPhase2	Current Phase 2	A	floatsw	2	1	0	value		false	false	
                                  162	ActivepowerPhase2	Active power Phase 2	W	floatsw	2	1	0	value		false	false	
                                  164	VoltagePhase2	Voltage Phase 2	V	floatsw	2	1	0	value		false	false	
                                  166	CurrentPhase3	Current Phase 3	A	floatsw	2	1	0	value		false	false	
                                  168	ActivepowerPhase3	Active power Phase 3	W	floatsw	2	1	0	value		false	false	
                                  170	VoltagePhase3	Voltage Phase 3	V	floatsw	2	1	0	value		false	false	
                                  172	TotalACactivepower	Total AC active power	W	floatsw	2	1	0	value		true	false	
                                  174	TotalACreactivepower	Total AC reactive power	Var	floatsw	2	1	0	value		false	false	
                                  178	TotalACapparentpower	Total AC apparent power	VA	floatsw	2	1	0	value		false	false	
                                  190	Batterychargecurrent	Battery charge current	A	floatsw	2	1	0	value		true	false	
                                  194	Numberofbatterycycles	Number of battery cycles		floatsw	2	1	0	value		true	false	
                                  200	Actualbatterycharge (-)/discharge(+)current	Actual battery charge (-)/ discharge(+)  current	A	floatsw	2	1	0	value		true	false	
                                  202	PSSBfusestate6	PSSB fuse state6		floatsw	2	1	0	value		true	false	
                                  208	Batteryreadyflag	Battery ready flag		floatsw	2	1	0	value		true	false	
                                  210	Act.stateofcharge	Act. state of charge	%	floatsw	2	1	0	value		true	false	
                                  212	Batterystate5	Battery state5		floatsw	2	1	0	value		false	false	
                                  214	Batterytemperature	Battery temperature	°C	floatsw	2	1	0	value		true	false	
                                  216	Batteryvoltage	Battery voltage	V	floatsw	2	1	0	value		true	false	
                                  218	Cosf(powermeter)	Cos f (powermeter)		floatsw	2	1	0	value		true	false	
                                  220	Frequency(powermeter)	Frequency (powermeter)	Hz	floatsw	2	1	0	value		true	false	
                                  320	Totale Erzeugung	Totale Erzeugung	kWh	floatsw	2	0.001	0	value		true	false	
                                  322	Tagesproduktion	Tagesproduktion	kWh	floatsw	2	0.001	0	value		true	false	
                                  252	Totalactivepower(powermeter)	Total active power (powermeter)	W	floatsw	2	1	0	value		true	false	
                                  324	Yearlyyield	Yearly yield	kWh	floatsw	2	0.001	0	value		true	false	
                                  326	Monthlyyield	Monthly yield	kWh	floatsw	2	0.001	0	value		true	false	
                                  512	Batterygrosscapacity5	Battery gross capacity5	Ah	uint32be	2	1	0	value		true	false	
                                  514	BatteryactualSOC	Battery actual SOC	%	uint16be	1	1	0	value		true	false	
                                  577	GenerationEnergy	Generation Energy	kWh	uint32be	2	0.001	0	value		true	false	
                                  582	Actualbatterycharge/dischargepower	Actual battery charge/discharge power	W	int16be	1	1	0	value		true	false	
                                  224	Activepowerphase1(powermeter)	Active power phase 1 (powermeter)	W	floatsw	2	1	0	value		true	false	
                                  234	Activepowerphase2(powermeter)	Active power phase 2 (powermeter)	W	floatsw	2	1	0	value		true	false	
                                  244	Activepowerphase3(powermeter)	Active power phase 3 (powermeter)	W	floatsw	2	1	0	value		true	false	
                                  575	InverterGenerationPower(actual)	Inverter Generation Power (actual)	W	int16be	1	1	0	value		true	false	
                                  260	PowerDC1	Power DC1	W	floatsw	2	1	0	value		true	false	
                                  270	PowerDC2	Power DC2	W	floatsw	2	1	0	value		true	false	
                                  280	PowerDC3	Power DC3	W	floatsw	2	1	0	value		true	false	
                                  
                                  

                                  Nicht alle Einträge liefern brauchbare Werte, aber die meisten doch. Einfach ausprobieren.
                                  Ich hab zusätzlich noch den Smart Energy Manager am laufen, den ich per 2. modbus Eintrag auslese:

                                  address	name	description	unit	type	len	factor	offset	role	room	poll	wp
                                  8218	Product Name	Product Name		string	16	1	0	value		true	false	
                                  40071	M_AC_Current	AC Current (sum of active phases)	A	int16be	1	0.01	0	value		false	false	
                                  40072	M_AC_Cur- rent_A	Phase A AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                                  40073	M_AC_Cur- rent_B	Phase B AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                                  40074	M_AC_Cur- rent_C	Phase C AC cur- rent	A	int16be	1	0.01	0	value		true	false	
                                  40076	M_AC_Vol- tage_LN	Line to Neutral AC Voltage (average of active phases)	V	int16be	1	0.01	0	value		false	false	
                                  40077	M_AC_Vol- tage_AN	Phase A to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                                  40078	M_AC_Vol- tage_BN	Phase B to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                                  40079	M_AC_Vol- tage_CN	Phase C to Neutral AC Voltage	V	uint16be	1	0.01	0	value		true	false	
                                  40080	M_AC_Vol- tage_LL	Line to Line AC Voltage (average of active phases)	V	uint16be	1	1	0	value		false	false	
                                  40081	M_AC_Vol- tage_AB	Phase A to Phase B AC Voltage	V	uint16be	1	1	0	value		false	false	
                                  40082	M_AC_Vol- tage_BC	Phase B to Phase C AC Voltage	V	uint16be	1	1	0	value		false	false	
                                  40083	M_AC_Vol- tage_CA	Phase C to Phase A AC Voltage	V	uint16be	1	1	0	value		false	false	
                                  40085	M_AC_Freq	AC Frequency	Hz	uint16be	1	0.01	0	value		true	false	
                                  40087	M_AC_Power	Total Real Power (sum of active pha- ses)	kW	int16be	1	0.01	0	value		true	false	
                                  40088	M_AC_Pow- er_A	Phase A AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                                  40089	M_AC_Pow- er_B	Phase B AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                                  40090	M_AC_Pow- er_C	Phase C AC Real Power	kW	int16be	1	0.01	0	value		true	false	
                                  40092	M_AC_VA	Total AC Apparent Power (sum of ac- tive phases)	VA	int16be	1	1	0	value		false	false	
                                  40093	M_AC_VA_A	Phase A AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                                  40094	M_AC_VA_B	Phase B AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                                  40095	M_AC_VA_C	Phase C AC Appa- rent Power	VA	int16be	1	1	0	value		false	false	
                                  40097	M_AC_VAR	Total AC Reactive Power (sum of ac- tive phases)	var	uint16be	1	1	0	value		false	false	
                                  40098	M_AC_VAR_A	Phase A AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                                  40099	M_AC_VAR_B	Phase B AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                                  40100	M_AC_VAR_C	Phase C AC Reac- tive Power	var	uint16be	1	1	0	value		false	false	
                                  40102	M_AC_PF	Average Power Factor (average of active phases)	%	uint16be	1	1	0	value		false	false	
                                  40103	M_AC_PF_A	Phase A Power Factor	%	uint16be	1	1	0	value		false	false	
                                  40104	M_AC_PF_B	Phase B Power Factor	%	uint16be	1	1	0	value		false	false	
                                  40105	M_AC_PF_C	Phase C Power Factor	%	uint16be	1	1	0	value		false	false	
                                  40107	M_Exported	Total Exported Re- al Energy	kWh	int32be	2	-0.001	0	value		true	false	
                                  40109	M_Expor- ted_A	Phase A Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                                  40111	M_Expor- ted_B	Phase B Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                                  40113	M_Expor- ted_C	Phase C Exported Real Energy	kWh	int32be	2	-0.001	0	value		true	false	
                                  40115	M_Imported	Total Imported Re- al Energy	kWh	int32be	2	0.001	0	value		true	false	
                                  40117	M_Imported_A	Phase A Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                                  40119	M_Impor- ted_B	Phase B Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                                  40121	M_Impor- ted_C	Phase C Imported Real Energy	kWh	int32be	2	0.001	0	value		true	false	
                                  40124	M_Expor- ted_VA	Total Exported Ap- parent Energy	VAh	int32be	2	1	0	value		false	false	
                                  40126	M_Expor- ted_VA_A	Phase A Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                                  40128	M_Expor- ted_VA_B	Phase B Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                                  40130	M_Expor- ted_VA_C	Phase C Exported Apparent Energy	VAh	int32be	2	1	0	value		false	false	
                                  40132	M_Impor- ted_VA	Total Imported Ap- parent Energy	VAh	uint32be	2	1	0	value		false	false	
                                  40134	M_Impor- ted_VA_A	Phase A Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                                  40136	M_Impor- ted_VA_B	Phase B Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                                  40138	M_Impor- ted_VA_C	Phase C Imported Apparent Energy	VAh	uint32be	2	1	0	value		false	false	
                                  40145	M_Import_ VARh_Q1B	Phase B – Quadrant 1: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40147	M_Import_ VARh_Q1C	Phase C – Quadrant 1: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40149	M_Import_ VARh_Q2	Quadrant 2: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40151	M_Import_ VARh_Q2A	Phase A – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40153	M_Import_ VARh_Q2B	Phase B – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40155	M_Import_ VARh_Q2C	Phase C – Quadrant 2: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40157	M_Export_ VARh_Q3	Quadrant 3: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40159	M_Export_ VARh_Q3A	Phase A – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40161	M_Export_ VARh_Q3B	Phase B – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40163	M_Export_ VARh_Q3C	Phase C – Quadrant 3: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40165	M_Export_ VARh_Q4	Quadrant 4: Total Imported Reactive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40167	M_Export_ VARh_Q4A	Phase A – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40169	M_Export_ VARh_Q4B	Phase B – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  40171	M_Export_ VARh_Q4C	Phase C – Quadrant 4: Imported Reac- tive Energy	VARh	uint32be	2	1	0	value		false	false	
                                  0	Active Power+	Active Power+	W	uint32be	2	1	0	value		false	false	
                                  2	Active Power-	Active Power-	W	uint32be	2	1	0	value		false	false	
                                  
                                  

                                  Beides jeweils in die Holding-Register importieren. Bin gerne aufgeschlossen, wer noch weitere Werte gefunden hat.

                                  Das Ganze sieht dann visualisiert so aus:
                                  6af9a378-fd30-4b27-a801-ff71183cf4e8-image.png

                                  Marco LaserM Offline
                                  Marco LaserM Offline
                                  Marco Laser
                                  schrieb am zuletzt editiert von
                                  #58

                                  @joefarm Moin, wäre es möglich dass du die Flot Einstellungen von dem unteren teilst? Bei mir nimmt er da immer Werte vom Vortag mit rein. Die Werte hast du mit dem SourceAnalytix Adapter aufgezeichnet oder?

                                  J 1 Antwort Letzte Antwort
                                  0
                                  • E ee

                                    @bahnuhr Hi, super Beitrag! funktioniert bei mir! Wie kann ich noch die Werte vom BA anzeigen lassen?
                                    http://192.168.170.200/BA.fhtml (Hausverbrauch)
                                    Grüße!

                                    Hier noch die Seite:
                                    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
                                    <html><head>
                                    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
                                    <meta name="Generator" content="ChrisB">
                                    <title>PV Webserver</title>
                                    </head>
                                    <body nof="(MB=(DefaultMasterborder, 65, 60, 150, 10), L=(HomeLayout, 700, 600))" bgcolor="#EAF7F7" text="#000000" link="#0033CC" vlink="#990099" alink="#FF0000" topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>
                                    <table cellspacing="0" cellpadding="0" width="800" nof="ly">
                                    <tr valign="top" align="left">
                                    <td height="5" width="190"></td>
                                    <td></td>
                                    </tr>
                                    <tr align="left" valign="top">
                                    <td height="55"></td>
                                    <td colspan="2" width="600">
                                    <font face="Arial,Helvetica,Geneva,Sans-serif,sans-serif" size="+3">
                                    PIKO 10
                                    <br><font size="+1">
                                    Ebert (255)
                                    </font>
                                    </font>
                                    <td colspan="1" width="50"><img alt="Logo" height="42" width="130" src="KSE.gif"></td>
                                    </tr>
                                    </table>

                                    <table border="0" width="100%">
                                    <tr>
                                       <td width="150"></td>
                                       <td> <hr> </td>
                                    </tr></table>
                                    
                                    <font face="Arial,Helvetica,Geneva,Sans-serif,sans-serif">
                                    <table border="0" width="100%">
                                      <tr>
                                        <td height="30" width="150"></td>
                                        <td>
                                          <font size="+1"><U>Batterie
                                          </u></font></td>
                                      </tr><tr>
                                        <td width="150"></td>
                                        <td width="280" height="35" align="right">Ladezustand:</td>
                                        <td><b>0.0%</b></td>
                                      </tr><tr>
                                        <td width="150"></td>
                                        <td width="280" height="35" align="right">Spannung:</td>
                                        <td><b>   0V</b></td>
                                      </tr><tr>
                                        <td width="150"></td>
                                        <td width="280" height="35" align="right">Ladestrom:</td>
                                        <td><b> 0.00A</b></td>
                                      </tr><tr>
                                        <td width="150"></td>
                                        <td width="280" height="35" align="right">Temperatur:</td>
                                        <td><b> 0.0°C</b></td>
                                      </tr><tr>
                                        <td width="150"></td>
                                        <td align="right" height="35" width="280">Zyklenanzahl:</td>
                                        <td><b>0</b></td>
                                      </tr><tr>
                                        <td height="50" width="150"></td>
                                        <td>
                                          <font size="+1"><u>Hausverbrauch
                                          </u></font></td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td height="35" width="280">Deckung des Hausverbrauches aus:</td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td align="right" height="35" width="280">Solargenerator:</td>
                                        <td><b>  0.0W</b></td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td align="right" height="35" width="280">Batterie:</td>
                                        <td><b>  0.0W</b></td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td align="right" height="35" width="280">Netz:</td>
                                        <td><b>  0.0W</b></td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td height="35" width="280">Phasenselektiver Hausverbrauch:</td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td align="right" height="35" width="280">Phase 1:</td>
                                        <td><b>  0.0W</b></td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td align="right" height="35" width="280">Phase 2:</td>
                                        <td><b>  0.0W</b></td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td align="right" height="35" width="280">Phase 3:</td>
                                        <td><b>  0.0W</b></td>
                                      </tr><tr>	    
                                        <td width="150"></td>
                                        <td align="right" height="35" width="280"></td>
                                      </tr>
                                    </table>
                                    </font>
                                    <hr><br>
                                    

                                    <table align="left"><tbody><tr><td width="160">&nbsp</td><td>
                                    <font face="Arial,Helvetica,Geneva,Sans-serif">&nbsp&nbsp
                                    &nbsp<a href="index.fhtml"> Zurück zur Hauptseite </a>
                                    &nbsp
                                    </font></td></tr></tbody></table>

                                    </body></html>

                                    bahnuhrB Online
                                    bahnuhrB Online
                                    bahnuhr
                                    Forum Testing Most Active
                                    schrieb am zuletzt editiert von
                                    #59

                                    @ee sagte in Status vom Kostal Wechselrichter auslesen?:

                                    Hi, super Beitrag! funktioniert bei mir! Wie kann ich noch die Werte vom BA anzeigen lassen?

                                    Was ist BA?

                                    Mehr Infos wären gut.


                                    Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                                    Danke.
                                    gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                                    ScreenToGif :https://www.screentogif.com/downloads.html

                                    E 1 Antwort Letzte Antwort
                                    0
                                    • bahnuhrB bahnuhr

                                      @ee sagte in Status vom Kostal Wechselrichter auslesen?:

                                      Hi, super Beitrag! funktioniert bei mir! Wie kann ich noch die Werte vom BA anzeigen lassen?

                                      Was ist BA?

                                      Mehr Infos wären gut.

                                      E Offline
                                      E Offline
                                      ee
                                      schrieb am zuletzt editiert von
                                      #60

                                      @bahnuhr Hi, der misst den Eigenverbrauch. (von Kostal https://shop.kostal-solar-electric.com/de/piko-ba-sensor.html)

                                      ich möchte die Werte weiter verarbeiten.
                                      Zb. Wenn 1000W Überschuss dann Waschmaschine einschalten.

                                      Ich habe einen Kostal Piko 10 Wechselrichter. Ich installiere gerade die neuste UI und FW auf den Wechselrichter.
                                      FW-Update_05_60
                                      PIKO-Update_UIv06.41

                                      Wie kann ich alle daten die im Webserver angezeigt werden in den IO Broker bekommen :)

                                      Sorry ich bin ein richtiger NOOB

                                      1 Antwort Letzte Antwort
                                      0
                                      • E Offline
                                        E Offline
                                        ee
                                        schrieb am zuletzt editiert von
                                        #61

                                        2edf5fa0-d4f3-43ce-8621-b9ad22a2b069-image.png

                                        So sieht die neue UI aus

                                        1 Antwort Letzte Antwort
                                        0
                                        • bahnuhrB Online
                                          bahnuhrB Online
                                          bahnuhr
                                          Forum Testing Most Active
                                          schrieb am zuletzt editiert von
                                          #62

                                          Hab ich leider nicht.

                                          Musst wohl mit dem Script mal rumspielen.

                                          mfg


                                          Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                                          Danke.
                                          gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                                          ScreenToGif :https://www.screentogif.com/downloads.html

                                          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
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          799

                                          Online

                                          32.4k

                                          Benutzer

                                          81.5k

                                          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