Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Status vom Kostal Wechselrichter auslesen?

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    Status vom Kostal Wechselrichter auslesen?

    This topic has been deleted. Only users with topic management privileges can see it.
    • Homoran
      Homoran Global Moderator Administrators last edited by Homoran

      Hab's gefunden, da war noch eine geschweifte Klammer und ein Semikolon zu viel.
      Dann gab es noch den ein oder anderen kleinen Fehler.
      Habe jetzt alles korrigiert. Bei mir läuft es jetzt so:

      Piko_Status_Klartext_objects.png

      // Ausleseskript Wechselrichter Kostal Piko ab Firmware v05.31 (12.10.2015)
      
      //Variable
      
      var url = '192.168.xxx.yyy'; // IP der Photovoltaik-Anlage eintragen
      var IPAnlage = url + '/api/dxs.json'; 
      
      //Leistungswerte
         ID_DCEingangGesamt = 33556736;         // in W
         ID_Ausgangsleistung = 67109120;        // in W
         ID_Eigenverbrauch = 83888128;          // in W
         
         //Status
         ID_Status = 16780032;                  // 0:Off
         
         //Statistik - Tag
         ID_Ertrag_d = 251658754;               // in Wh
         ID_Hausverbrauch_d = 251659010;        // in Wh
         ID_Eigenverbrauch_d = 251659266;       // in Wh
         ID_Eigenverbrauchsquote_d = 251659278; // in %
         ID_Autarkiegrad_d = 251659279;         // in %
         
         //Statistik - Gesamt
         ID_Ertrag_G = 251658753;               // in kWh
         ID_Hausverbrauch_G = 251659009;        // in kWh
         ID_Eigenverbrauch_G = 251659265;       // in kWh
         ID_Eigenverbrauchsquote_G = 251659280; // in %
         ID_Autarkiegrad_G = 251659281;         // in %
         ID_Betriebszeit = 251658496;           // in h
         
         //Momentanwerte - PV Generator
         ID_DC1Spannung = 33555202;             // in V
         ID_DC1Strom = 33555201;                // in A
         ID_DC1Leistung = 33555203;             // in W
         ID_DC2Spannung = 33555458;             // in V
         ID_DC2Strom = 33555457;                // in A
         ID_DC2Leistung = 33555459;             // in W
         
         //Momentanwerte Haus
         ID_HausverbrauchSolar = 83886336;      // in W
         ID_HausverbrauchBatterie = 83886592;   // in W
         ID_HausverbrauchNetz = 83886848;       // in W
         ID_HausverbrauchPhase1 = 83887106;     // in W
         ID_HausverbrauchPhase2 = 83887362;     // in W
         ID_HausverbrauchPhase3 = 83887618;     // in W
         
         //Netz Netzparameter
         ID_NetzAusgangLeistung = 67109120;     // in W
         ID_NetzFrequenz = 67110400;            // in Hz
         ID_NetzCosPhi = 67110656;
         
         //Netz Phase 1
         ID_P1Spannung = 67109378;              // in V
         ID_P1Strom = 67109377;                 // in A
         ID_P1Leistung = 67109379;              // in W
         
         //Netz Phase 2
         ID_P2Spannung = 67109634;              // in V
         ID_P2Strom = 67109633;                 // in A
         ID_P2Leistung = 67109635;              // in W
         
         //Netz Phase 3
         ID_P3Spannung = 67109890;              // in V
         ID_P3Strom = 67109889;                 // in A
         ID_P3Leistung = 67109891;              // in W
      
      
      
      
      
      
      
      createState('Solaranlage.Momentanwerte.Leistung_AC_aktuell', 0);
      //createState('Solaranlage.Summenwerte.Autarkiegrad_d',0);
      //createState('Solaranlage.Summenwerte.Autarkiegrad_G',0);
      createState('Solaranlage.Summenwerte.Betriebszeit',0);
      createState('Solaranlage.Momentanwerte.Status','aus');
      createState('Solaranlage.Momentanwerte.Leistung_DC_aktuell',0);
      //createState('Solaranlage.Momentanwerte.Eigenverbrauch',0);
      //createState('Solaranlage.Summenwerte.Eigenverbrauch_d');
      //createState('Solaranlage.Summenwerte.Eigenverbrauch_G', 0);
      //createState('Solaranlage.Summenwerte.Eigenverbrauchsquote_d', 0);
      //createState('Solaranlage.Summenwerte.Eigenverbrauchsquote_G', 0);
      createState('Solaranlage.Summenwerte.Tagesertrag', 0);
      createState('Solaranlage.Summenwerte.Gesamtertrag', 0);
      //createState('Solaranlage.Summenwerte.Hausverbrauch_d', 0);
      //createState('Solaranlage.Summenwerte.Hausverbrauch_G', 0);
      //createState('Solaranlage.Momentanwerte.P1Spannung');
      //createState('Solaranlage.Momentanwerte.P2Spannung');
      //createState('Solaranlage.Momentanwerte.P1Strom');
      //createState('Solaranlage.Momentanwerte.P2Strom');
      //createState('Solaranlage.Momentanwerte.P1Leistung');
      //createState('Solaranlage.Momentanwerte.P2Leistung');
      //createState('Solaranlage.Momentanwerte.Leistung_String1');
      //createState('Solaranlage.Momentanwerte.Leistung_String2');
      
      
      var logging = false;
      var request = require('request');
      
      function Piko() {
         if (logging) log("Piko 5.5 auslesen");
         request('http://' + IPAnlage + 
         '?dxsEntries=' + ID_DCEingangGesamt +
         '&dxsEntries=' + ID_Ausgangsleistung +
         '&dxsEntries=' + ID_Eigenverbrauch +
         '&dxsEntries=' + ID_Eigenverbrauch_d +
         '&dxsEntries=' + ID_Eigenverbrauch_G +
         '&dxsEntries=' + ID_Eigenverbrauchsquote_d +
         '&dxsEntries=' + ID_Eigenverbrauchsquote_G +
         '&dxsEntries=' + ID_Ertrag_d +
         '&dxsEntries=' + ID_Ertrag_G +
         '&dxsEntries=' + ID_Hausverbrauch_d +
         '&dxsEntries=' + ID_Hausverbrauch_G +
         '&dxsEntries=' + ID_Autarkiegrad_G +
         '&dxsEntries=' + ID_Autarkiegrad_d +
         '&dxsEntries=' + ID_Betriebszeit +
         '&dxsEntries=' + ID_P1Spannung +
         '&dxsEntries=' + ID_P2Spannung +
         '&dxsEntries=' + ID_P1Strom +
         '&dxsEntries=' + ID_P2Strom +
         '&dxsEntries=' + ID_P1Leistung +
         '&dxsEntries=' + ID_P2Leistung +
         '&dxsEntries=' + ID_Status +
         '&dxsEntries=' + ID_DC1Leistung +
         '&dxsEntries=' + ID_DC2Leistung,
         
         function (error, response, body) {
             if(!error && response.statusCode ==200) {
                 if(logging) log(body);
                 var result = JSON.parse(body).dxsEntries;
         		
         		var Zustand = 'aus';
      
         		if (result[20].val == 0) {
                 Zustand = 'aus';
                 } else if (result[20].value== 1) {
                 Zustand = 'Leerlauf';
                 } else if (result[20].value == 2) {
                 Zustand = 'Anfahren';
                 } else if (result[20].value == 3) {
                 Zustand = 'Einspeisen MPP';
                 } else if (result[20].value == 4) {
                 Zustand = 'Einspeisen abgeregelt';
                 } else if (result[20].value == 7) {
                 Zustand = 'Isolationsmessung';
                 } else {
                 Zustand = (String('Code ') + String('' + result[20].value));
                 }
             
         		
         		
                 setState('Solaranlage.Momentanwerte.Leistung_DC_aktuell', result[0].value || 0, true);
                 setState('Solaranlage.Momentanwerte.Leistung_AC_aktuell', result[1].value || 0, true);
                 //setState('Solaranlage.Momentanwerte.Eigenverbrauch', result[2].value || 0, true);
                 //setState('Solaranlage.Summenwerte.Eigenverbrauch_d', result[3].value || 0, true);
                 //setState('Solaranlage.Summenwerte.Eigenverbrauch_G', result[4].value || 0, true);
                 //setState('Solaranlage.Summenwerte.Eigenverbrauchsquote_d', result[5].value || 0, true);
                 //setState('Solaranlage.Summenwerte.Eigenverbrauchsquote_G', result[6].value || 0, true);
                 setState('Solaranlage.Summenwerte.Tagesertrag', result[7].value || 0, true);
                 setState('Solaranlage.Summenwerte.Gesamtertrag', result[8].value || 0, true);
                 //setState('Solaranlage.Summenwerte.Hausverbrauch_d', result[9].value || 0, true);
                 //setState('Solaranlage.Summenwerte.Hausverbrauch_G', result[10].value || 0, true);
                 //setState('Solaranlage.Summenwerte.Autarkiegrad_G', result[11].value || 0, true);
                 //setState('Solaranlage.Summenwerte.Autarkiegrad_d', result[12].value || 0, true);
                 setState('Solaranlage.Summenwerte.Betriebszeit', result[13].value || 0, true);
                 //setState('Solaranlage.Momentanwerte.P1Spannung', result[14].value || 0, true);
                 //setState('Solaranlage.Momentanwerte.P2Spannung', result[15].value || 0, true);
                 //setState('Solaranlage.Momentanwerte.P1Strom', result[16].value || 0, true);
                 //setState('Solaranlage.Momentanwerte.P2Strom', result[17].value || 0, true);
                 //setState('Solaranlage.Momentanwerte.P1Leistung', result[18].value || 0, true);
                 //setState('Solaranlage.Momentanwerte.P2Leistung', result[19].value || 0, true);
                 setState('Solaranlage.Momentanwerte.Status', Zustand || 0, true);
                 //setState('Solaranlage.Momentanwerte.Leistung_String1', result[21].value || 0, true);
                 //setState('Solaranlage.Momentanwerte.Leistung_String2', result[22].value || 0, true);
             } else {
                 log("Fehler: " + error + " bei Abfrage von: " + url, "warn");
             }
         });
      }
      
      schedule("*/11 * 5-23 * * *", Piko);
      //on('smartmeter.0.1-0:16_7_0__255.value', Piko); // triggert bei Wertänderung;
      

      PS auch bei mir lief ein Skript noch, das gar nicht mehr existierte.
      restart der js-Instanz hat geholfen

      S M 3 Replies Last reply Reply Quote 0
      • S
        scout1978 @Homoran last edited by

        @Homoran
        wow was für ein Aufand.... Gerade zurück vom Spielplatz....
        versuche das später in einer ruhigen Minute alles zu verstehen und zu testen....
        Habe demnächst Termin mit unserer Solarfirma... Meine Anforderungen sind identisch.... Ich gebe dann laut wenn ich da mehr weis.
        Bis Später
        Grüße Gernot

        S 1 Reply Last reply Reply Quote 0
        • S
          scout1978 @Homoran last edited by

          @Homoran
          Bei mir klappts noch nicht...
          Objekte.png ```
          javascript.0 2020-08-13 20:53:18.021 info (5941) script.js.Piko_Neu: registered 0 subscriptions and 1 schedule
          javascript.0 2020-08-13 20:53:17.945 info (5941) Start javascript script.js.Piko_Neu
          javascript.0 2020-08-13 20:53:17.426 info (5941) received all states
          javascript.0 2020-08-13 20:53:17.302 info (5941) received all objects
          javascript.0 2020-08-13 20:53:16.534 info (5941) requesting all objects
          javascript.0 2020-08-13 20:53:16.531 info (5941) requesting all states
          javascript.0 2020-08-13 20:53:16.448 info (5941) starting. Version 4.6.17 in /opt/iobroker/node_modules/iobroker.javascript, node: v10.22.0, js-controller: 3.1.6
          javascript.0 2020-08-13 20:53:09.962 info (2592) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
          javascript.0 2020-08-13 20:53:09.960 info (2592) terminating
          javascript.0 2020-08-13 20:53:09.958 info (2592) Stop script script.js.Piko_Neu
          javascript.0 2020-08-13 20:53:09.957 info (2592) Got terminate signal TERMINATE_YOURSELF
          javascript.0 2020-08-13 20:50:26.259 info (2592) script.js.Piko_Neu: registered 0 subscriptions and 1 schedule
          javascript.0 2020-08-13 20:50:26.243 info (2592) Start javascript script.js.Piko_Neu
          javascript.0 2020-08-13 20:50:20.612 info (2592) Stop script script.js.Piko_Neu
          javascript.0 2020-08-13 20:46:40.994 info (2592) Stop script script.js.Skript_1
          javascript.0 2020-08-13 20:46:38.134 info (2592) Stop script script.js.Skript_1
          javascript.0 2020-08-13 20:46:37.474 info (2592) script.js.Skript_1: registered 0 subscriptions and 1 schedule
          javascript.0 2020-08-13 20:46:37.334 info (2592) Start javascript script.js.Skript_1

          Habe das Skript 1 gelöscht.... Dann das Piko Neu erstellt..ip eingefügt....instanz neu gestartet....Momentanwerte kommen nicht...weil dunkel?

          Homoran 1 Reply Last reply Reply Quote 0
          • S
            scout1978 @scout1978 last edited by

            @scout1978 objekte 2.png
            Da ist was aufgetaucht

            Homoran 1 Reply Last reply Reply Quote 0
            • Homoran
              Homoran Global Moderator Administrators @scout1978 last edited by

              @scout1978 sagte in Status vom Kostal Wechselrichter auslesen?:

              Momentanwerte kommen nicht...weil dunkel?

              Natürlich! Momentan wird nichts erzeugt.
              Ist das alles was nicht funktioniert?
              Dann musst du ein paar Solarmodule gegen Lunarmodule tauschen.

              1 Reply Last reply Reply Quote 0
              • Homoran
                Homoran Global Moderator Administrators @scout1978 last edited by

                @scout1978 sagte in Status vom Kostal Wechselrichter auslesen?:

                Da ist was aufgetaucht

                Code 0 sollte "aus" heißen.
                Da ist noch ein Fehler

                Da muss statt

                function (error, response, body) {
                       if(!error && response.statusCode ==200) {
                           if(logging) log(body);
                           var result = JSON.parse(body).dxsEntries;
                   		
                   		var Zustand = 'aus';
                
                   		if (result[20].val == 0) {
                           Zustand = 'aus';
                           } else if (result[20].value== 1) {
                           Zustand = 'Leerlauf';
                           } else if (result[20].value == 2) {
                           Zustand = 'Anfahren';
                           } else if (result[20].value == 3) {
                           Zustand = 'Einspeisen MPP';
                           } else if (result[20].value == 4) {
                           Zustand = 'Einspeisen abgeregelt';
                           } else if (result[20].value == 7) {
                           Zustand = 'Isolationsmessung';
                           } else {
                           Zustand = (String('Code ') + String('' + result[20].value));
                           }
                

                In der Zeile mit result[20].val == 0 richtig heißen result[20].value == 0, so wie in den anderen Zeilen danach

                S 1 Reply Last reply Reply Quote 0
                • S
                  scout1978 @Homoran last edited by

                  @Homoran
                  Wow
                  Es klappt alles!!!! Vielen Dank!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

                  1 Reply Last reply Reply Quote 0
                  • K
                    kaybau last edited by

                    Hallo zusammen,
                    ich nutze auch seit gut 6 Monaten das Javascript zum Auslesen der Werte.
                    Hat schon mal jemand die Events aus dem Piko BA ausgelesen? Mir dauert die Alarmierung aus dem Support-Portal von Kostal eindeutig zu lange.

                    http://<IP>/#/info/events

                    Viele Grüße,
                    Kay

                    Homoran 1 Reply Last reply Reply Quote 0
                    • Homoran
                      Homoran Global Moderator Administrators @kaybau last edited by

                      @kaybau sagte in Status vom Kostal Wechselrichter auslesen?:

                      Hat schon mal jemand die Events aus dem Piko BA ausgelesen? Mir dauert die Alarmierung aus dem Support-Portal von Kostal eindeutig zu lange.
                      http://<IP>/#/info/events

                      für welche Version soll das gelten?
                      sieht für mich nicht aus wie Ausleseskript Wechselrichter Kostal Piko ab Firmware v05.31

                      1 Reply Last reply Reply Quote 0
                      • K
                        kaybau last edited by kaybau

                        Piko BA 8 mit FW 2.32 UI 06.41

                        Homoran 1 Reply Last reply Reply Quote 0
                        • Homoran
                          Homoran Global Moderator Administrators @kaybau last edited by

                          @kaybau dann gehört das hier nicht in den Thread.
                          Mach bitte einen neuen auf mit deutlichem Hinweis auf die alte FW

                          1 Reply Last reply Reply Quote 0
                          • K
                            kaybau last edited by

                            Hi @Homoran , Ich nutze das skript "// Ausleseskript Wechselrichter Kostal Piko ab Firmware v05.31 (12.10.2015)" aus dem Anfang von diesem Thread.
                            Und es ist die neueste FW , die für den Piko 8 BA verfügbar ist.
                            Wie liest Du bei deiner FW die Events aus?
                            76f2469e-ca3f-4737-a611-7880bf12ad52-grafik.png

                            VG,
                            Kay

                            Homoran 2 Replies Last reply Reply Quote 0
                            • Homoran
                              Homoran Global Moderator Administrators @kaybau last edited by Homoran

                              @kaybau sagte in Status vom Kostal Wechselrichter auslesen?:

                              Wie liest Du bei deiner FW die Events aus?

                              gar nicht

                              Das ist unheimlich komplex, da du in der api erstmal sämtliche IDs der Events identifizieren musst und dann abfragen.

                              var msgs = [
                              {"code":"3000","type":"Störung Updateprozess","description":"Interne Systemstörung","action":"Update des Wechselrichters durchführen."},
                              {"code":"3003","type":"Interne Kommunikationsstörung","description":"Interne Kommunikationsstörung","action":"zwischen Netzüberwachung und Steuerung Internen Kommunikationsleitungen zwischen den einzelnen Leiterplatten kontrollieren"},
                              {"code":"3006","type":"Interne Systemstörung ","description":"Interne Systemstörung bzgl. Leistungsabregelung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf. Support"},
                              {"code":"3010","type":"Interne Kommunikationsstörung","description":"Interne Kommunikationsstörung","action":"zwischen Steuerung und Kommunkationsplatine Kontrollieren Sie die Uhrzeiteinstellung, Funktionalität der Kommunikationsplatine und weiterer Kommunikationseinstellungen. Wechselrichter schaltet trotz fehlerhaftem Zeitstempel auf"},
                              {"code":"3011","type":"Interne Temperaturstörung","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3012","type":"Störung Varistor","description":"DC-Varistor defekt","action":"Defekten Varistor tauschen"},
                              {"code":"3013","type":"Interne Temperaturstörung","description":"Übertemperatur AC/DC an Leistungsstufe","action":"Installationsbedingungen und Lüfter kontrollieren"},
                              {"code":"3014","type":"Interne Temperaturstörung","description":"Übertemperatur Prozessor","action":"Installationsbedingungen und Lüfter kontrollieren"},
                              {"code":"3017","type":"Externe Generatorstörung","description":"Überspannung am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3018","type":"Information","description":"Leistungsabregelung durch externe Vorgaben (Netzbetreiber)","action":"Keine Maßnahme notwendig"},
                              {"code":"3019","type":"Externe Netzstörung","description":"Leistungsabregelung aufgrund eines Netzfehlers (erhöhte Netzfrequenz)","action":"Support"},
                              {"code":"3020","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3021","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3022","type":"Externe Generatorstörung","description":"Überspannung am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3023","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3024","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3025","type":"Externe Generatorstörung","description":"Überspannung am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3026","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3027","type":"Interne Temperaturstörung","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3028","type":"Externe Generatorstörung","description":"Überspannung am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3029","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3030","type":"Interne Temperaturstörung","description":"Übertemperatur AC/DC an Leistungsstufe","action":"Installationsbedingungen und Lüfter kontrollieren"},
                              {"code":"3031","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach Prüfung durch und schaltet generell auf"},
                              {"code":"3032","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3033","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3034","type":"Interne Systemstörung ","description":"Interner Zwischenkreisfehler","action":"Das Gerät neu starten"},
                              {"code":"3035","type":"Interne Systemstörung ","description":"Interner Zwischenkreisfehler","action":"Das Gerät neu starten"},
                              {"code":"3036","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                              {"code":"3037","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                              {"code":"3038","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                              {"code":"3039","type":"Interne Parametrierungsstörung","description":"Interne Systemstörung","action":"Support kontaktieren"},
                              {"code":"3045","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach Prüfung durch und schaltet generell auf"},
                              {"code":"3046","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach Prüfung durch und schaltet generell auf"},
                              {"code":"3047","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3048","type":"Interne Kommunikationsstörung","description":"Interner Kommunikationsfehler","action":"Kontrollieren Sie die internen Kommunikationsleitungen zwischen den einzelnen Leiterplatten"},
                              {"code":"3049","type":"Interne Kommunikationsstörung","description":"Interner Kommunikationsfehler","action":"Kontrollieren Sie die internen Kommunikationsleitungen zwischen den einzelnen Leiterplatten"},
                              {"code":"3050","type":"Interne Kommunikationsstörung","description":"Interner Kommunikationsfehler","action":"Kontrollieren Sie die internen Kommunikationsleitungen zwischen den einzelnen Leiterplatten"},
                              {"code":"3051","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3052","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3053","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3054","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"3055","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Das Gerät neu starten"},
                              {"code":"3056","type":"Interne Parametrierungsstörung","description":"Interne Systemstörung","action":"Support kontaktieren"},
                              {"code":"3057","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Generatorinstallation/ -auslegung kontrollieren"},
                              {"code":"3059","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Ggf. falsche Ländereinstellung. Support kontaktieren"},
                              {"code":"3060","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Support kontaktiere"},
                              {"code":"3061","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                              {"code":"3062","type":"Interne Temperaturstörung","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                              {"code":"3063","type":"Interne Parametrierungsstörung","description":"Interne Systemstörung","action":"Support kontaktieren"},
                              {"code":"3064","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                              {"code":"3065","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                              {"code":"3066","type":"Interne Parametrierungsstörung","description":"Interne Systemstörung","action":"Support kontaktiere"},
                              {"code":"3068","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Das Gerät neu starten"},
                              {"code":"3070","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                              {"code":"3071","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                              {"code":"3072","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                              {"code":"3073","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                              {"code":"3074","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                              {"code":"3075","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                              {"code":"3076","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Die AC-Spannung ist gegebenenfalls zu niedrig"},
                              {"code":"3079","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Das Gerät neu starten"},
                              {"code":"3080","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Das Gerät neu starten"},
                              {"code":"3082","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                              {"code":"3083","type":"Information","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig1"},
                              {"code":"3084","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                              {"code":"3085","type":"Interne Temperaturstörung","description":"Übertemperatur Prozessor","action":"Installationsbedingungen und Lüfter kontrollieren1 "},
                              {"code":"3086","type":"Information","description":"Leistungsabregelung aufgrund eines Netzfehlers (erhöhte AC-Spannung)","action":"Support"},
                              {"code":"3087","type":"Interne Systemstörung ","description":"Interner Systemfehler","action":"Support kontaktieren"},
                              {"code":"3088","type":"Interne Systemstörung ","description":"Lüftereinheit verschmutzt","action":"Lüftereinheit reinigen"},
                              {"code":"3089","type":"Interne Systemstörung ","description":"Lüftereinheit verschmutzt","action":"Lüftereinheit reinigen"},
                              {"code":"3090","type":"Interne Systemstörung ","description":"Interner Systemfehler","action":"Support kontaktieren"},
                              {"code":"3091","type":"Interne Systemstörung ","description":"Lüfter nicht korrekt angeschlossen","action":"Lüfter-Steckverbindungen prüfe"},
                              {"code":"3092","type":"Interne Systemstörung ","description":"Lüfter nicht korrekt angeschlossen","action":"Lüfter-Steckverbindungen prüfe"},
                              {"code":"3093","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Support kontaktiere"},
                              {"code":"3094","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Support kontaktiere"},
                              {"code":"3095","type":"Interne Parametrierungsstörung","description":"Falsche Kalibrierung","action":"Support kontaktiere"},
                              {"code":"3096","type":"Information","description":"Falsche Dimensionierung der PV-Generator","action":"Generatorinstallation/ -auslegung kontrolliere"},
                              {"code":"3097","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Support kontaktiere"},
                              {"code":"3098","type":"Information","description":"Netz nicht vorhanden","action":"Keine Maßnahme notwendig"},
                              {"code":"3101","type":"Information","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                              {"code":"3102","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                              {"code":"3103","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                              {"code":"3104","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                              {"code":"3105","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                              {"code":"3106","type":"Information","description":"Falsche Eingabe am KomBoard oder falsche Verdrahtung","action":"Eingabe oder Verdrahtung korriegieren"},
                              {"code":"4100","type":"Interne Systemstörung ","description":"Interner Softwarefehler","action":"Support"},
                              {"code":"4101","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L1","action":"Support"},
                              {"code":"4102","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L2","action":"Support"},
                              {"code":"4103","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L3","action":"Support"},
                              {"code":"4104","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L1","action":"Support"},
                              {"code":"4105","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L2","action":"Support"},
                              {"code":"4106","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L3","action":"Support"},
                              {"code":"4110","type":"Interne Systemstörung ","description":"Interner Softwarefehler","action":"Support"},
                              {"code":"4121","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4122","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4130","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4131","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4150","type":"Information","description":"Erhöhte Netzfrequenz. Oft gehäuftes Auftreten am Morgen und am Abend.","action":"Installation kontrollieren"},
                              {"code":"4151","type":"Externe Netzstörung","description":"Zu niedrige Netzfrequenz","action":"Installation kontrollieren"},
                              {"code":"4157","type":"Externe Netzstörung","description":"Erhöhte Netzfrequenz","action":"Keine Maßnahme notwendig"},
                              {"code":"4158","type":"Externe Netzstörung","description":"Erhöhte Netzfrequenz","action":"Installation kontrollieren"},
                              {"code":"4159","type":"Externe Netzstörung","description":"Erhöhte Netzfrequenz","action":"Installation kontrollieren"},
                              {"code":"4160","type":"Externe Netzstörung","description":"Erhöhte Netzfrequenz","action":"Installation kontrollieren"},
                              {"code":"4161","type":"Externe Netzstörung","description":"Zu niedrige Netzfrequenz","action":"Installation kontrollieren"},
                              {"code":"4170","type":"Information","description":"Eine Phase ist nicht angeschlossen. Ein Sicherungsautomat wurde nicht eingeschaltet.","action":"Installation kontrollieren"},
                              {"code":"4180","type":"Externe Netzstörung","description":"PE-Leitung nicht angeschlossen","action":"Installation kontrollieren"},
                              {"code":"4181","type":"Externe Netzstörung","description":"PE-Leitung nicht angeschlossen","action":"Installation kontrollieren "},
                              {"code":"4185","type":"Interne Systemstörung ","description":"Interner Softwarefehler","action":"Support1 "},
                              {"code":"4200","type":"Externe Netzstörung","description":"Erhöhte Netzspannung","action":"Installation kontrollieren "},
                              {"code":"4201","type":"Externe Netzstörung","description":"Zu niedrige Netzspannung","action":"Installation kontrollieren "},
                              {"code":"4210","type":"Externe Netzstörung","description":"Erhöhte Netzspannung","action":"Installation kontrollieren "},
                              {"code":"4211","type":"Externe Netzstörung","description":"Zu niedrige Netzspannung","action":"Installation kontrollieren "},
                              {"code":"4220","type":"Externe Netzstörung","description":"Spannungsmittelwert der letzten 10 Min. zu groß","action":"Installation kontrollieren "},
                              {"code":"4221","type":"Externe Netzstörung","description":"Spannungsmittelwert der letzten 10 Min. zu groß","action":"Installation kontrollieren "},
                              {"code":"4290","type":"Externe Netzstörung","description":"Die Netzfrequenz hat sich zu schnell verändert.","action":"Generatorinstallation kontrollieren "},
                              {"code":"4300","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4301","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4302","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4303","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4304","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4321","type":"Interne Parametrierungsstörung","description":"Defektes EEPROM unerlaubte Speicherzugriffe","action":"Support"},
                              {"code":"4322","type":"Interne Parametrierungsstörung","description":"Softwarefehler","action":"Support kontaktieren"},
                              {"code":"4323","type":"Interne Parametrierungsstörung","description":"Fehlerstrom","action":"Support"},
                              {"code":"4324","type":"Interne Parametrierungsstörung","description":"Parameterfehler","action":"Support"},
                              {"code":"4325","type":"Interne Parametrierungsstörung","description":"Parameterfehler","action":"Support"},
                              {"code":"4340","type":"-","description":"","action":""},
                              {"code":"4354","type":"Externer Fehlerstrom","description":"Fehlerstrom","action":"Generatorinstallation kontrollieren "},
                              {"code":"4360","type":"-","description":"","action":""},
                              {"code":"4421","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                              {"code":"4422","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren. "},
                              {"code":"4424","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                              {"code":"4425","type":"Interne Parametrierungsstörung","description":"Parameterfehler","action":"Support "},
                              {"code":"4450","type":"Externe Isolationsfehler","description":"Isolationsfehler","action":"Generatorinstallation kontrollieren "},
                              {"code":"4451","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren "},
                              {"code":"4475","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                              {"code":"4476","type":"Information","description":"Schwache PV-Versorgung (z.B. morgens)","action":"Keine Maßnahme notwendig "},
                              {"code":"4800","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                              {"code":"4801","type":"Interne Systemstörung ","description":"Isolationsfehler","action":"Support "},
                              {"code":"4802","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                              {"code":"4803","type":"Interne Systemstörung ","description":"Isolationsfehler","action":"Support "},
                              {"code":"4804","type":"Interne Systemstörung ","description":"Isolationsfehler","action":"Support "},
                              {"code":"4805","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                              {"code":"4810","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                              {"code":"4850","type":"Interne Systemstörung ","description":"EVU","action":"Support "},
                              {"code":"4870","type":"-","description":"","action":""},
                              {"code":"7500","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                              {"code":"7503","type":"Information","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"}
                              ];
                              

                              1 Reply Last reply Reply Quote 0
                              • Homoran
                                Homoran Global Moderator Administrators @kaybau last edited by

                                @kaybau
                                wäre das etwas für dich?

                                events.png

                                Ich hatte mal einen ganz fiesen Störfall, da hat mir jemand (ich muss zu meiner Schande gestehen, dass ich nicht mehr weiß wer 😳 ) ein Skript zum auslesen der events geschrieben.
                                Habe das eben noch ein wenig optimiert um es in dem json-table widget darstellen zu können

                                K 1 Reply Last reply Reply Quote 0
                                • K
                                  kaybau @Homoran last edited by

                                  @Homoran : Das sieht so aus, als ist es mehr als nur einen Test wert 😉

                                  Homoran 1 Reply Last reply Reply Quote 0
                                  • Homoran
                                    Homoran Global Moderator Administrators @kaybau last edited by

                                    @kaybau sagte in Status vom Kostal Wechselrichter auslesen?:

                                    @Homoran : Das sieht so aus, als ist es mehr als nur einen Test wert 😉

                                    Dann mach mal 😉

                                    Dieses

                                    var domain = '192.168.178.123'; // domain or ip without http:// or https:// 
                                    var url = '/api/dxs.json';
                                    var datenpunkt = '0_userdata.0.Solaranlage.Info';
                                    //var datenpunkt = 'javascript.0.info';
                                    
                                    var msgs = [
                                    {"code":"3000","type":"Störung Updateprozess","description":"Interne Systemstörung","action":"Update des Wechselrichters durchführen."},
                                    {"code":"3003","type":"Interne Kommunikationsstörung","description":"Interne Kommunikationsstörung","action":"zwischen Netzüberwachung und Steuerung Internen Kommunikationsleitungen zwischen den einzelnen Leiterplatten kontrollieren"},
                                    {"code":"3006","type":"Interne Systemstörung ","description":"Interne Systemstörung bzgl. Leistungsabregelung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf. Support"},
                                    {"code":"3010","type":"Interne Kommunikationsstörung","description":"Interne Kommunikationsstörung","action":"zwischen Steuerung und Kommunkationsplatine Kontrollieren Sie die Uhrzeiteinstellung, Funktionalität der Kommunikationsplatine und weiterer Kommunikationseinstellungen. Wechselrichter schaltet trotz fehlerhaftem Zeitstempel auf"},
                                    {"code":"3011","type":"Interne Temperaturstörung","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3012","type":"Störung Varistor","description":"DC-Varistor defekt","action":"Defekten Varistor tauschen"},
                                    {"code":"3013","type":"Interne Temperaturstörung","description":"Übertemperatur AC/DC an Leistungsstufe","action":"Installationsbedingungen und Lüfter kontrollieren"},
                                    {"code":"3014","type":"Interne Temperaturstörung","description":"Übertemperatur Prozessor","action":"Installationsbedingungen und Lüfter kontrollieren"},
                                    {"code":"3017","type":"Externe Generatorstörung","description":"Überspannung am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3018","type":"Information","description":"Leistungsabregelung durch externe Vorgaben (Netzbetreiber)","action":"Keine Maßnahme notwendig"},
                                    {"code":"3019","type":"Externe Netzstörung","description":"Leistungsabregelung aufgrund eines Netzfehlers (erhöhte Netzfrequenz)","action":"Support"},
                                    {"code":"3020","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3021","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3022","type":"Externe Generatorstörung","description":"Überspannung am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3023","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3024","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3025","type":"Externe Generatorstörung","description":"Überspannung am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3026","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3027","type":"Interne Temperaturstörung","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3028","type":"Externe Generatorstörung","description":"Überspannung am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3029","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3030","type":"Interne Temperaturstörung","description":"Übertemperatur AC/DC an Leistungsstufe","action":"Installationsbedingungen und Lüfter kontrollieren"},
                                    {"code":"3031","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach Prüfung durch und schaltet generell auf"},
                                    {"code":"3032","type":"Externe Generatorstörung","description":"Überstrom am PV-Generator","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3033","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3034","type":"Interne Systemstörung ","description":"Interner Zwischenkreisfehler","action":"Das Gerät neu starten"},
                                    {"code":"3035","type":"Interne Systemstörung ","description":"Interner Zwischenkreisfehler","action":"Das Gerät neu starten"},
                                    {"code":"3036","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                                    {"code":"3037","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                                    {"code":"3038","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                                    {"code":"3039","type":"Interne Parametrierungsstörung","description":"Interne Systemstörung","action":"Support kontaktieren"},
                                    {"code":"3045","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach Prüfung durch und schaltet generell auf"},
                                    {"code":"3046","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach Prüfung durch und schaltet generell auf"},
                                    {"code":"3047","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3048","type":"Interne Kommunikationsstörung","description":"Interner Kommunikationsfehler","action":"Kontrollieren Sie die internen Kommunikationsleitungen zwischen den einzelnen Leiterplatten"},
                                    {"code":"3049","type":"Interne Kommunikationsstörung","description":"Interner Kommunikationsfehler","action":"Kontrollieren Sie die internen Kommunikationsleitungen zwischen den einzelnen Leiterplatten"},
                                    {"code":"3050","type":"Interne Kommunikationsstörung","description":"Interner Kommunikationsfehler","action":"Kontrollieren Sie die internen Kommunikationsleitungen zwischen den einzelnen Leiterplatten"},
                                    {"code":"3051","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3052","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3053","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3054","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"3055","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Das Gerät neu starten"},
                                    {"code":"3056","type":"Interne Parametrierungsstörung","description":"Interne Systemstörung","action":"Support kontaktieren"},
                                    {"code":"3057","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Generatorinstallation/ -auslegung kontrollieren"},
                                    {"code":"3059","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Ggf. falsche Ländereinstellung. Support kontaktieren"},
                                    {"code":"3060","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Support kontaktiere"},
                                    {"code":"3061","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                                    {"code":"3062","type":"Interne Temperaturstörung","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                                    {"code":"3063","type":"Interne Parametrierungsstörung","description":"Interne Systemstörung","action":"Support kontaktieren"},
                                    {"code":"3064","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                                    {"code":"3065","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                                    {"code":"3066","type":"Interne Parametrierungsstörung","description":"Interne Systemstörung","action":"Support kontaktiere"},
                                    {"code":"3068","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Das Gerät neu starten"},
                                    {"code":"3070","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                                    {"code":"3071","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                                    {"code":"3072","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                                    {"code":"3073","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                                    {"code":"3074","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                                    {"code":"3075","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                                    {"code":"3076","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Die AC-Spannung ist gegebenenfalls zu niedrig"},
                                    {"code":"3079","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Das Gerät neu starten"},
                                    {"code":"3080","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Das Gerät neu starten"},
                                    {"code":"3082","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                                    {"code":"3083","type":"Information","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig1"},
                                    {"code":"3084","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren"},
                                    {"code":"3085","type":"Interne Temperaturstörung","description":"Übertemperatur Prozessor","action":"Installationsbedingungen und Lüfter kontrollieren1 "},
                                    {"code":"3086","type":"Information","description":"Leistungsabregelung aufgrund eines Netzfehlers (erhöhte AC-Spannung)","action":"Support"},
                                    {"code":"3087","type":"Interne Systemstörung ","description":"Interner Systemfehler","action":"Support kontaktieren"},
                                    {"code":"3088","type":"Interne Systemstörung ","description":"Lüftereinheit verschmutzt","action":"Lüftereinheit reinigen"},
                                    {"code":"3089","type":"Interne Systemstörung ","description":"Lüftereinheit verschmutzt","action":"Lüftereinheit reinigen"},
                                    {"code":"3090","type":"Interne Systemstörung ","description":"Interner Systemfehler","action":"Support kontaktieren"},
                                    {"code":"3091","type":"Interne Systemstörung ","description":"Lüfter nicht korrekt angeschlossen","action":"Lüfter-Steckverbindungen prüfe"},
                                    {"code":"3092","type":"Interne Systemstörung ","description":"Lüfter nicht korrekt angeschlossen","action":"Lüfter-Steckverbindungen prüfe"},
                                    {"code":"3093","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Support kontaktiere"},
                                    {"code":"3094","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Support kontaktiere"},
                                    {"code":"3095","type":"Interne Parametrierungsstörung","description":"Falsche Kalibrierung","action":"Support kontaktiere"},
                                    {"code":"3096","type":"Information","description":"Falsche Dimensionierung der PV-Generator","action":"Generatorinstallation/ -auslegung kontrolliere"},
                                    {"code":"3097","type":"Interne Parametrierungsstörung","description":"Falsche Parametrierung","action":"Support kontaktiere"},
                                    {"code":"3098","type":"Information","description":"Netz nicht vorhanden","action":"Keine Maßnahme notwendig"},
                                    {"code":"3101","type":"Information","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                                    {"code":"3102","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                                    {"code":"3103","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                                    {"code":"3104","type":"Interne Systemstörung ","description":"Interne AC-Systemstörung","action":"Gerät führt mehrfach eine Prüfung durch und schaltet generell auf"},
                                    {"code":"3105","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"},
                                    {"code":"3106","type":"Information","description":"Falsche Eingabe am KomBoard oder falsche Verdrahtung","action":"Eingabe oder Verdrahtung korriegieren"},
                                    {"code":"4100","type":"Interne Systemstörung ","description":"Interner Softwarefehler","action":"Support"},
                                    {"code":"4101","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L1","action":"Support"},
                                    {"code":"4102","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L2","action":"Support"},
                                    {"code":"4103","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L3","action":"Support"},
                                    {"code":"4104","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L1","action":"Support"},
                                    {"code":"4105","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L2","action":"Support"},
                                    {"code":"4106","type":"Interne Systemstörung ","description":"Erhöhter DC-Strom L3","action":"Support"},
                                    {"code":"4110","type":"Interne Systemstörung ","description":"Interner Softwarefehler","action":"Support"},
                                    {"code":"4121","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4122","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4130","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4131","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4150","type":"Information","description":"Erhöhte Netzfrequenz. Oft gehäuftes Auftreten am Morgen und am Abend.","action":"Installation kontrollieren"},
                                    {"code":"4151","type":"Externe Netzstörung","description":"Zu niedrige Netzfrequenz","action":"Installation kontrollieren"},
                                    {"code":"4157","type":"Externe Netzstörung","description":"Erhöhte Netzfrequenz","action":"Keine Maßnahme notwendig"},
                                    {"code":"4158","type":"Externe Netzstörung","description":"Erhöhte Netzfrequenz","action":"Installation kontrollieren"},
                                    {"code":"4159","type":"Externe Netzstörung","description":"Erhöhte Netzfrequenz","action":"Installation kontrollieren"},
                                    {"code":"4160","type":"Externe Netzstörung","description":"Erhöhte Netzfrequenz","action":"Installation kontrollieren"},
                                    {"code":"4161","type":"Externe Netzstörung","description":"Zu niedrige Netzfrequenz","action":"Installation kontrollieren"},
                                    {"code":"4170","type":"Information","description":"Eine Phase ist nicht angeschlossen. Ein Sicherungsautomat wurde nicht eingeschaltet.","action":"Installation kontrollieren"},
                                    {"code":"4180","type":"Externe Netzstörung","description":"PE-Leitung nicht angeschlossen","action":"Installation kontrollieren"},
                                    {"code":"4181","type":"Externe Netzstörung","description":"PE-Leitung nicht angeschlossen","action":"Installation kontrollieren "},
                                    {"code":"4185","type":"Interne Systemstörung ","description":"Interner Softwarefehler","action":"Support1 "},
                                    {"code":"4200","type":"Externe Netzstörung","description":"Erhöhte Netzspannung","action":"Installation kontrollieren "},
                                    {"code":"4201","type":"Externe Netzstörung","description":"Zu niedrige Netzspannung","action":"Installation kontrollieren "},
                                    {"code":"4210","type":"Externe Netzstörung","description":"Erhöhte Netzspannung","action":"Installation kontrollieren "},
                                    {"code":"4211","type":"Externe Netzstörung","description":"Zu niedrige Netzspannung","action":"Installation kontrollieren "},
                                    {"code":"4220","type":"Externe Netzstörung","description":"Spannungsmittelwert der letzten 10 Min. zu groß","action":"Installation kontrollieren "},
                                    {"code":"4221","type":"Externe Netzstörung","description":"Spannungsmittelwert der letzten 10 Min. zu groß","action":"Installation kontrollieren "},
                                    {"code":"4290","type":"Externe Netzstörung","description":"Die Netzfrequenz hat sich zu schnell verändert.","action":"Generatorinstallation kontrollieren "},
                                    {"code":"4300","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4301","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4302","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4303","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4304","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4321","type":"Interne Parametrierungsstörung","description":"Defektes EEPROM unerlaubte Speicherzugriffe","action":"Support"},
                                    {"code":"4322","type":"Interne Parametrierungsstörung","description":"Softwarefehler","action":"Support kontaktieren"},
                                    {"code":"4323","type":"Interne Parametrierungsstörung","description":"Fehlerstrom","action":"Support"},
                                    {"code":"4324","type":"Interne Parametrierungsstörung","description":"Parameterfehler","action":"Support"},
                                    {"code":"4325","type":"Interne Parametrierungsstörung","description":"Parameterfehler","action":"Support"},
                                    {"code":"4340","type":"-","description":"","action":""},
                                    {"code":"4354","type":"Externer Fehlerstrom","description":"Fehlerstrom","action":"Generatorinstallation kontrollieren "},
                                    {"code":"4360","type":"-","description":"","action":""},
                                    {"code":"4421","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                                    {"code":"4422","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren. "},
                                    {"code":"4424","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support"},
                                    {"code":"4425","type":"Interne Parametrierungsstörung","description":"Parameterfehler","action":"Support "},
                                    {"code":"4450","type":"Externe Isolationsfehler","description":"Isolationsfehler","action":"Generatorinstallation kontrollieren "},
                                    {"code":"4451","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support kontaktieren "},
                                    {"code":"4475","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                                    {"code":"4476","type":"Information","description":"Schwache PV-Versorgung (z.B. morgens)","action":"Keine Maßnahme notwendig "},
                                    {"code":"4800","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                                    {"code":"4801","type":"Interne Systemstörung ","description":"Isolationsfehler","action":"Support "},
                                    {"code":"4802","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                                    {"code":"4803","type":"Interne Systemstörung ","description":"Isolationsfehler","action":"Support "},
                                    {"code":"4804","type":"Interne Systemstörung ","description":"Isolationsfehler","action":"Support "},
                                    {"code":"4805","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                                    {"code":"4810","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                                    {"code":"4850","type":"Interne Systemstörung ","description":"EVU","action":"Support "},
                                    {"code":"4870","type":"-","description":"","action":""},
                                    {"code":"7500","type":"Interne Systemstörung ","description":"Interne Systemstörung","action":"Support "},
                                    {"code":"7503","type":"Information","description":"Interne Systemstörung","action":"Keine Maßnahme notwendig"}
                                    ];
                                    
                                    
                                    
                                    function getEvents() {
                                       //log('getEvents');
                                       var keys = [];
                                       var key1 = 234881792;
                                       var key2 = 234881537;  
                                       keys.push(key1);
                                       for (var i=0;i<10;i++) {
                                           keys.push(key2+i);
                                       }
                                    
                                       pikorequest(keys, function(response){
                                           //log('events: '+ JSON.stringify(response));
                                           var item,len
                                           if (typeof response === 'string') response = JSON.parse(response);
                                           item = getResponseId(response,234881792);
                                           len = item.value;
                                           for (var i=0;i<len;i++) {
                                               item = getResponseId(response,234881537+i);
                                               var d,date,code,env;
                                               d = item.value;
                                               date = timeConverter((d[0] << 0) + (d[1] << 8) + (d[2] << 16) + (d[3] << 24));
                                               code = (d[4] << 0) + (d[5] << 8);
                                               env = ("0000"+((d[6] << 0) + (d[7] << 8)).toString(16)).toLocaleUpperCase().substr(-4,4)+'h';
                                               var msg = msgs.find(item => item.code==code);
                                               msg.date=date;
                                               var msgtext = 'Code: '+msg.code+' Typ: '+msg.type+' Beschreibung: '+msg.description+' Maßnahme: '+msg.action
                                               //log('message' + i+1 + ': ' + date + ' '  + code + ' '  + env + ' '+msgtext);
                                               //log("Datenpunkt: "+ datenpunkt+i + " Fehlermeldung: " + msgtext + true/*ack*/);
                                               setState(datenpunkt+i,`[` + JSON.stringify(msg) +`]`, true/*ack*/);
                                           }
                                       });
                                    }
                                    
                                    function pikorequest(keys,callback) {
                                       //log('pikorequest');
                                       if (keys.length==0) {
                                           //log('request error: No keys ');
                                           return;     
                                       }
                                    
                                       var query = '';
                                    
                                       for (var i = 0; i < keys.length; i++) { 
                                           query += '&dxsEntries=' + keys[i];
                                       }
                                    
                                       var req_url = 'http://' + domain + url + '?sessionid=iobroker' + query;
                                       //log ('query: '+req_url);
                                    
                                       request(
                                           { method: 'GET',
                                           uri: req_url,
                                           }
                                       , function (error, response, body) {
                                                   //log('error: ' + error);
                                                   //log('Status: '+ response.statusCode);
                                                   //log('response: '+ JSON.stringify(response));
                                                   //response.body = '{"dxsEntries":[{"dxsId":234881792,"value":1},{"dxsId":234881537,"value":[207,217,88,94,63,16,2,0]},{"dxsId":234881538,"value":[0,0,0,0,0,0,0,0]},{"dxsId":234881539,"value":[0,0,0,0,0,0,0,0]},{"dxsId":234881540,"value":[0,0,0,0,0,0,0,0]},{"dxsId":234881541,"value":[0,0,0,0,0,0,0,0]},{"dxsId":234881542,"value":[0,0,0,0,0,0,0,0]},{"dxsId":234881543,"value":[0,0,0,0,0,0,0,0]},{"dxsId":234881544,"value":[0,0,0,0,0,0,0,0]},{"dxsId":234881545,"value":[0,0,0,0,0,0,0,0]},{"dxsId":234881546,"value":[0,0,0,0,0,0,0,0]}],"session":{"sessionId":0,"roleId":0},"status":{"code":0}}';
                                                   //response.statusCode = 200;
                                                   //error = false;
                                    
                                               if (!error && response.statusCode == 200) {
                                                   //log('request ok: ');
                                                   //log('Status: '+ response.statusCode);
                                                   //log('response: '+ JSON.stringify(response));
                                                   callback(response.body);
                                               } else {
                                                   log('request nok: ');
                                                   //log('Status: '+ response.statusCode);
                                                   //log('error: ' + error);
                                               }
                                           }
                                       );
                                    }
                                    function getResponseId(response,id) {
                                       return response.dxsEntries.find( item => item.dxsId === id );
                                    }
                                    function timeConverter(UNIX_timestamp){
                                     var a = new Date(UNIX_timestamp * 1000);
                                     var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
                                     var year = a.getFullYear();
                                     var month = months[a.getMonth()];
                                     var date = a.getDate();
                                     var hour = a.getHours();
                                     var min = a.getMinutes();
                                     var sec = a.getSeconds();
                                     var time = date + ' ' + month + ' ' + year + ' ' + hour + ':' + min + ':' + sec ;
                                     return time;
                                     log (time);
                                    }
                                    schedule("* * * * *", getEvents);
                                    

                                    liest minütlich die Fehlermeldungen aus dem Piko (FW > v05.31) aus und schreibt sie in Datenpunkte.
                                    Diese müssen noch selber angelegt werden:
                                    Kostal_event_States.png

                                    Ich selber kann nicht so toll Skripten, habe nur das JSON noch etwas umformatiert.

                                    Der aktuellste Event liegt unter Info0 ältere werden immer weiter nach hinten geschoben.

                                    Wenn ich es könnte würde ich alles in ein großes json packen, damit im widget gescrollt werden kann. Im Moment bekommt man in der "Tabelle" nur eine Zeile:

                                    Kostal_event_widget.png

                                    Man muss also im Prinzip mehrere Widgets untereinander setzen, damit man auch noch ältere events sieht

                                    Um auf irgendwelche events zu reagieren, könnte man jetzt ein Skript/Blockly schreiben, dass bei Änderung von Info0 die entsprechenden Informationen aus dem json extrahiert und als Meldung (eMail/Telegram), Sprachansage oder großes rotes blinkendes Widget in VIS ausgibt

                                    1 Reply Last reply Reply Quote 0
                                    • K
                                      kaybau last edited by

                                      Hi @Homoran ,
                                      ich hab Dein skript bezgl des Eventauslesens übernommen. Was soll ich sagen?? Es läuft und liefert die letzten Werte.
                                      Jetzt hab ich noch ne Telegram-Alerting draufgesetzt. Alles gut!
                                      Danke,
                                      Kay

                                      1 Reply Last reply Reply Quote 0
                                      • A
                                        Atlantis @Homoran last edited by

                                        @Homoran

                                        @Homoran said in Status vom Kostal Wechselrichter auslesen?:

                                        Zum Kostal Wechselrichter gibt es hier schon Threads.

                                        Entscheidend ist die Firmwareversion deines Piko.

                                        Im MOment bekomme ich es so hin:
                                        144_kostal02.jpg

                                        Gruß

                                        Rainer

                                        Hallo Rainer

                                        Ich lese schon seit Stunden das Forum hoch und runter, finde aber mein Problem nirgends beschrieben.
                                        Wollte Kostal WR Picco auslesen um eine ähnlich schöne Ansicht zu basten wie Du. Da der Adapter bei mir nicht funktioniert wollte ich mit Parser arbeiten, den ich bei iobroker jedoch noch nicht benutzt habe.

                                        Ich schaffe es, die Webseite mit Login und Passwort als Aufruf im parser anzulegen. Wenn ich im Parser in die Bleistift Edit Funktion einsteige, bekomme ich den richtigen Seitenquelltext des Picco angezeigt.

                                        Ich schaffe es im Regex mit dem Seitenquellcode die richtigen Stellen per Anker usw. zu detektieren. Wenn ich die korrekte Regex Zeile dann im Parser einsetze kommen nie Ergebnisse, egal welches Beispiel ich bisher so probiert habe.

                                        Jetzt habe ich noch was von minified js gelesen. Wollte mein Seitenquellcode minimieren, aber auf allen Minimierseiten bekomme ich Fehlermeldungen, wenn ich den Seitenquelltext 1:1 rein kopiere.

                                        Nachdem ich jetzt schon 6 Stunden verbrannt habe hoffe ich auf einen klein Tipp von Dir.

                                        Anbei die Adaptereinstellung:
                                        Unbenannt.JPG

                                        und hier die funktionierende Regex Variante:
                                        Unbenannt_II.JPG

                                        und hier noch der Quellcode...

                                        code_text
                                        <!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>
                                        <form method="post" action="">
                                        <table cellspacing="0" cellpadding="0" width="770" nof="ly">
                                        <tr><td height="5"></td></tr>
                                        <tr><td width="190" height="55"></td>
                                        <td width="400">
                                          <font face="Arial,Helvetica,Geneva,Sans-serif,sans-serif" size="+3">
                                          PIKO 4.2
                                        <br><font size="+1">                 
                                          Namenlos (92)
                                        </font>
                                        </font>
                                        </td>
                                        <td><img alt="Logo" height="42" width="130" src="KSE.gif"></td>
                                        </tr>
                                        </table>
                                        
                                        <font face="Arial,Helvetica,Geneva,Sans-serif,sans-serif">
                                        <table Border="0" width="100%"><tr>
                                        <td width="150"></td>
                                        <td> <hr> </td>
                                        </tr></table>
                                        <table cellspacing="0" cellpadding="0" width="770">
                                        <tr><td></td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td colspan="2">
                                          <b>AC-Leistung</b></td>
                                        <td>&nbsp</td>
                                        <td>
                                          <b>Energie</b></td></tr>
                                        <tr><td height="10"></td></tr>
                                        
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                          aktuell</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="140">&nbsp W</td>
                                        <td width="100">
                                          Gesamtenergie</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          146</td>
                                        <td width="50">&nbsp kWh</td>
                                        <td>&nbsp</td></tr>
                                        <tr height="2"><td></td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                          &nbsp</td>
                                        <td width="70" align="right">
                                          &nbsp</td>
                                        <td width="140">&nbsp</td>
                                        <td width="100">
                                          Tagesenergie</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          13.91</td>
                                        <td width="50">&nbsp kWh</td>
                                        <td>&nbsp</td></tr>
                                        <tr height="5"><td></td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                          Status</td>
                                        <td colspan="4">
                                          Aus</td>
                                        <td>&nbsp</td></tr>
                                        <tr height="8"><td></td></tr>
                                        <tr><td colspan="7">
                                        <table align="top" width="100%"><tr>
                                        <td width="182"></td>
                                        <td><hr size="1"></font></td></tr>
                                        <tr><td height="5"></td></tr></table>
                                        </td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td colspan="2">
                                          <b>PV-Generator</b></td>
                                        <td width="140">&nbsp</td>
                                        <td colspan="2">
                                          <b>Ausgangsleistung</b></td>
                                        <td width="30">&nbsp</td>
                                        <td>&nbsp</td></tr>
                                        <tr><td height="10"></td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                          <u>String 1</u></td>
                                        <td width="70">&nbsp</td>
                                        <td width="140">&nbsp</td>
                                        <td width="95">
                                          <u>L1</u></td>
                                        <td width="70">&nbsp</td>
                                        <td width="30">&nbsp</td>
                                        <td>&nbsp</td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                          Spannung</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="140">&nbsp V</td>
                                        <td width="100">
                                          Spannung</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="30">&nbsp V</td>
                                        <td>&nbsp</td></tr>
                                        <tr height="2"><td></td></tr>
                                        <tr valign="top" align="left">
                                        <td width="190">&nbsp</td>
                                        <td width="100">
                                          Strom</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="140">&nbsp A</td>
                                        <td width="100">
                                          Leistung</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="30">&nbsp W</td>
                                        <td>&nbsp</td></tr>
                                        <tr height="22"><td></td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                          <u>String 2</u></td>
                                        <td width="70">&nbsp</td>
                                        <td width="140">&nbsp</td>
                                        <td width="100">
                                          <u>L2</u></td>
                                        <td width="70">&nbsp</td>
                                        <td width="30">&nbsp</td>
                                        <td>&nbsp</td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                          Spannung</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="140">&nbsp V</td>
                                        <td width="100">
                                          Spannung</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="30">&nbsp V</td>
                                        <td>&nbsp</td></tr>
                                        <tr height="2"><td></td></tr>
                                        <tr valign="top" align="left">
                                        <td width="190">&nbsp</td>
                                        <td width="100">
                                          Strom</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="140">&nbsp A</td>
                                        <td width="100">
                                          Leistung</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="30">&nbsp W</td>
                                        <td>&nbsp</td></tr>
                                        <tr height="22"><td></td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                          <u> </u></td>
                                        <td width="70">&nbsp</td>
                                        <td width="140">&nbsp</td>
                                        <td width="100">
                                          <u>L3</u></td>
                                        <td width="70">&nbsp</td>
                                        <td width="30">&nbsp</td>
                                        <td>&nbsp</td></tr>
                                        <tr>
                                        <td width="190"></td>
                                        <td width="100">
                                           </td>
                                        <td width="70" align="right" bgcolor="#EAF7F7">
                                           </td>
                                        <td width="140">&nbsp
                                           </td>
                                        <td width="95">
                                          Spannung</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="30">&nbsp V</td>
                                        <td>&nbsp</td></tr>
                                        <tr height="2"><td></td></tr>
                                        <tr valign="top" align="left">
                                        <td width="190">&nbsp</td>
                                        <td width="95">
                                           </td>
                                        <td width="70" align="right" bgcolor="#EAF7F7">
                                           </td>
                                        <td width="140">&nbsp
                                         </td>
                                        <td width="95">
                                          Leistung</td>
                                        <td width="70" align="right" bgcolor="#FFFFFF">
                                          x x x&nbsp</td>
                                        <td width="30">&nbsp W</td>
                                        <td>&nbsp</td></tr>
                                        
                                        <tr><td height="15"></td></tr>
                                        <tr><td colspan="7">
                                        <table align="top" width="100%">
                                        <tr><td width="182"></td>
                                        <td><hr size="1"></font></td>
                                        </tr><tr><td height="5"></td></tr></table>
                                        </td></tr></table>
                                        <table cellspacing="0" cellpadding="0" width="770">
                                        <tr><td width="190"></td>
                                        <td><font face="Arial,Helvetica,Geneva,Sans-serif">
                                        <b>RS485 Kommunikation</b></td></tr>
                                        <tr><td height="8"></td></tr>
                                        <tr><td width="190"></td>
                                        <td><font face="Arial,Helvetica,Geneva,Sans-serif">
                                        Wechselrichter&nbsp
                                        <input type="Text" name="edWrNr" value="92" size="3" maxlength="3">
                                        <input type="submit" value="Anzeigen/Aktualisieren">
                                        </td></tr><tr><td height="10"></td></tr>
                                        </table>
                                        </td></tr></table></font>
                                        
                                        <hr>
                                        <table cellspacing="0" cellpadding="0" width="770">
                                        <tr><td height="5"></td></tr>
                                        <tr><td width="190"></td>
                                        <td width="330">
                                        <font face="Arial,Helvetica,Geneva,Sans-serif,sans-serif">
                                        <a href="LogDaten.dat">Historie</a>
                                        &nbsp &nbsp &nbsp
                                        <a href="Info.fhtml">Infoseite</a></font></td>
                                        <td align="right">
                                        <font face="Arial,Helvetica,Geneva,Sans-serif,sans-serif">
                                        <a href="Solar2.fhtml">Einstellungen</a></font></td>
                                        <td width="50"></td>
                                        </tr></table></font>
                                        </form>
                                        </body>
                                        </html>
                                        
                                        

                                        Danke Euch vorab.
                                        Ich muss jetzt aufhören, sonst werde ich noch kirre...

                                        Gruss

                                        Atlantis

                                        wendy2702 Homoran 2 Replies Last reply Reply Quote 0
                                        • wendy2702
                                          wendy2702 @Atlantis last edited by

                                          @Atlantis sagte in Status vom Kostal Wechselrichter auslesen?:

                                          Da der Adapter bei mir nicht funktioniert

                                          Warum nicht?

                                          Was kommt im Debug log?

                                          A 1 Reply Last reply Reply Quote 0
                                          • Homoran
                                            Homoran Global Moderator Administrators @Atlantis last edited by

                                            @Atlantis sagte in Status vom Kostal Wechselrichter auslesen?:

                                            Wollte Kostal WR Picco auslesen

                                            Welche Firmwareversion hast du denn?

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate
                                            FAQ Cloud / IOT
                                            HowTo: Node.js-Update
                                            HowTo: Backup/Restore
                                            Downloads
                                            BLOG

                                            382
                                            Online

                                            31.9k
                                            Users

                                            80.3k
                                            Topics

                                            1.3m
                                            Posts

                                            35
                                            331
                                            59925
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo