Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Alpha Testing: OCPP Wallbox Adapter

    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

    Alpha Testing: OCPP Wallbox Adapter

    This topic has been deleted. Only users with topic management privileges can see it.
    • F
      fL4sH 0 @foxriver76 last edited by fL4sH 0

      @schwimbi

      Bei der ABB Terra AC Wallbox verhält sich das so:

      Kein Auto ist an der Wallbox angeschlossen. Status = Available.
      Ein Auto ist an der Wallbox angeschlossem. Status = Preparing.
      Wenn der Ladevorgang abgeschlossen ist, dann wird der Status auf Finishing gesetzt.

      Im Status Preparing und Finishing kann jeweils der Ladevorgang über TransactionActive=true gestartet werden. Mit diesen beiden Werten kannst du über ein Script die PV-Überschussladung steuern.

      Hier ist mein aktueller Script für die PV-Überschussladung:

      var timeout;
      
      
      schedule("*/5 * * * *", async function () {
        if (getState("ocpp.0./ABB-Terra-AC.transactionActive").val == false && (getState("ocpp.0./ABB-Terra-AC.status").val == 'Preparing' || getState("ocpp.0./ABB-Terra-AC.status").val == 'Finishing') && getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val >= 5500) {
          setState("ocpp.0./ABB-Terra-AC.transactionActive"/*Transaction active*/, true);
          setState("0_userdata.0.Haushalt.PV_Status"/*PV_Status*/, 'PV');
          sendTo("telegram", "send", {
              text: (['⚡ PV-Überschuss: Aktiv','\n','Erzeugung > 5,5 kW:'].join(''))
          });
          (function () {if (timeout) {clearTimeout(timeout); timeout = null;}})();
        } else if (getState("modbus.0.inputRegisters.4.30845_Aktueller_Batteriestand (%)").val >= 50 && getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val >= 3000 && (getState("ocpp.0./ABB-Terra-AC.status").val == 'Preparing' || getState("ocpp.0./ABB-Terra-AC.status").val == 'Finishing') && getState("ocpp.0./ABB-Terra-AC.transactionActive").val == false) {
          setState("ocpp.0./ABB-Terra-AC.transactionActive"/*Transaction active*/, true);
          setState("0_userdata.0.Haushalt.PV_Status"/*PV_Status*/, 'PV');
          sendTo("telegram", "send", {
              text: (['⚡ PV-Überschuss: Aktiv','\n','Hausspeicher > 50%:'].join(''))
          });
          (function () {if (timeout) {clearTimeout(timeout); timeout = null;}})();
        } else if (getState("0_userdata.0.Haushalt.PV_Status").val == 'PV' && getState("ocpp.0./ABB-Terra-AC.transactionActive").val == true && getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val <= 2000) {
          timeout = setTimeout(async function () {
            setState("ocpp.0./ABB-Terra-AC.transactionActive"/*Transaction active*/, false);
            setState("0_userdata.0.Haushalt.PV_Status"/*PV_Status*/, 'Netz');
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 10);
            sendTo("telegram", "send", {
                text: ('⚡ PV-Überschuss: Inaktiv')
            });
          }, 60000);
        }
      });
      
      schedule("* * * * *", async function () {
        if (getState("0_userdata.0.Haushalt.PV_Status").val == 'PV') {
          if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 8000) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 16);
            // 2-Phasig 7360 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 7500) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 15);
            // 2-Phasig 6900 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 7000) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 14);
            // 2-Phasig 6440 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 6500) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 13);
            // 2-Phasig 5980 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 6000) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 12);
            // 2-Phasig 5520 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 5500) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 11);
            // 2-Phasig 5060 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 5000) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 10);
            // 2-Phasig 4600 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 4500) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 9);
            // 2-Phasig 4140 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 4000) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 8);
            // 2-Phasig 3680 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val > 3500) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 7);
            // 2-Phasig 3220 W Ladestrom
          } else if (getState("modbus.1.inputRegisters.3.30775_Wirkleistung_gesamt (W)").val <= 3500) {
            setState("ocpp.0./ABB-Terra-AC.chargeLimit"/*Limit Ampere of Charger*/, 6);
            // 2-Phasig 2760 W Ladestrom
          }
        }
      });
      
      H 1 Reply Last reply Reply Quote 0
      • H
        hardwarefreak @fL4sH 0 last edited by hardwarefreak

        @fl4sh-0

        würde auch gern mal den Adapter von foxriver76 ausprobieren.
        Habe ihn bereits installiert, bekomme aber in der Instanz immer:
        17a08160-5e1f-4181-a6a8-0d65d2dcac11-image.png
        angezeigt.

        Ist das ok?

        Vielen Dank

        H foxriver76 2 Replies Last reply Reply Quote 0
        • H
          hardwarefreak @hardwarefreak last edited by hardwarefreak

          @fl4sh-0

          habe die Integration meiner Terra Box gerade selbst hinbekommen, hatte übersehen, das der Typ auf "wss://" statt auf "ws://" stand.

          ich wundere mich noch über die Warnungen im LOG:

          41d91698-d3b4-491d-9da7-12dad3fad179-image.png

          und

          0a6a44f8-f892-403e-b41e-e54a41c07cec-image.png

          Habe ich etwas übersehen?

          Worüber bringe ich dein Script für die PV-Überschussladung zur Ausführung im iobroker?

          F 1 Reply Last reply Reply Quote 0
          • foxriver76
            foxriver76 Developer @hardwarefreak last edited by

            @hardwarefreak Hast du noch einen Admin < 5?

            Bzgl. der Warnung im Log die fixe ich.

            F H 3 Replies Last reply Reply Quote 0
            • F
              fL4sH 0 @foxriver76 last edited by fL4sH 0

              Moin,

              ich habe die Firmware meiner ABB Wallbox auf 1.5.2 geupdatet und jetzt kann die Transaction nicht mehr vom ioBroker gestartet werden.
              Ladevorgang beenden transaction=false und Charglimit=6A funktionieren noch.
              Den einzigen Unterschied den ich feststellen konnte, ist der idTag.
              Die idTags vom RFID-Chip und der App sind unterschiedlich. Ich habe auch die aktuelle OCPP Version von dir genommen v0.3.3.
              Kann es sein das ABB in dem Firmwareupdate die Autorisierung angepasst hat und man den Ladevorgang nur noch mit entsprechenden idTags starten kann?

              foxriver76 B 2 Replies Last reply Reply Quote 0
              • H
                hardwarefreak @foxriver76 last edited by

                @foxriver76 ich habe Admin 5.3.0 installiert.

                Danke, super Adapter!

                1 Reply Last reply Reply Quote 0
                • foxriver76
                  foxriver76 Developer @fL4sH 0 last edited by foxriver76

                  @fl4sh-0

                  Könnte man hier testweise die idtags eintragen ? Oder kann das damit nichts zutun haben ?

                  Kannst du bei dir lokal probieren in build/main.js ändern, adapter Neustarten und testen

                  1 Reply Last reply Reply Quote 0
                  • H
                    hardwarefreak @foxriver76 last edited by

                    @foxriver76 jetzt kommt nur noch eine Warnmeldung:

                    158df831-6961-4637-930f-57c5d84d3a25-image.png

                    habe bereits auch die ABB Wallbox Firmware 1.5.2 installiert.
                    Wenn ich "transactionActive" von "true" auf "false" setze, dann verliert der Adapter die Verbindung und die Instanz LED geht auf rot.

                    foxriver76 1 Reply Last reply Reply Quote 0
                    • foxriver76
                      foxriver76 Developer @hardwarefreak last edited by foxriver76

                      @hardwarefreak habe gerade mal frisch installiert, hast du lokal jetzt was modifiziert gehabt? ich bekomme diese meldung nicht und die validierung sollte nicht anders sein..

                      und wenn die led auf rot geht steht bestimmt auch was im log, damit könnte ich mehr anfangen.

                      H 2 Replies Last reply Reply Quote 0
                      • H
                        hardwarefreak @foxriver76 last edited by

                        @foxriver76 eigentlich nicht. Bringt es etwas den Adapter noch einmal zu deinstallieren und neu zu installieren?

                        1 Reply Last reply Reply Quote 0
                        • H
                          hardwarefreak @foxriver76 last edited by hardwarefreak

                          @foxriver76

                          wenn ich "transactionActive" von "true" auf "false" setze, dann kommt:

                          9ed01d27-6d17-4fc1-9cc4-be956f5dabc5-image.png

                          und anschließend ist die LED gelb:

                          ede8f299-ebef-4638-8281-3b7611f4c87d-image.png

                          und wenn ich dann wieder auf true setze kommt:

                          2d315b77-b144-481f-ae65-6047293a9a68-image.png

                          foxriver76 1 Reply Last reply Reply Quote 0
                          • foxriver76
                            foxriver76 Developer @hardwarefreak last edited by

                            @hardwarefreak Sehr komisch, dass da jegliche Validierungen fehlschlagen. Probier mal ne Neuinstallation des Adapters.

                            Ansonsten mal Ausgabe von npm ls joi in /opt/iobroker

                            H 2 Replies Last reply Reply Quote 0
                            • H
                              hardwarefreak @foxriver76 last edited by

                              @foxriver76

                              root@iobroker:~# cd /opt/iobroker/
                              root@iobroker:/opt/iobroker# npm ls joi
                              iobroker.inst@2.0.3 /opt/iobroker
                              ├─┬ iobroker.go-e@1.0.18
                              │ └── joi@17.6.0
                              └─┬ iobroker.ocpp@0.3.3
                              └─┬ @ampeco/ocpp-eliftech@1.0.6
                              ├─┬ enjoi@3.2.5
                              │ └── joi@13.7.0
                              └── joi@13.7.0

                              ok ich mache mal eine Neuinstallation.

                              F 1 Reply Last reply Reply Quote 0
                              • H
                                hardwarefreak @foxriver76 last edited by

                                @foxriver76 habe leider immer noch die gleichen Probleme auf meinem Gigabyte Brix unter Proxmox.

                                Jetzt habe ich das ganze mal auf meinem Tinkerboard installiert und nun bricht die Verbindung nicht mehr ab, wenn ich
                                "transactionActive" von "true" auf "false" setze und umgekehrt. Parallel läuft auch die piVCCU3 auf dem Tinkerboard.

                                Die Warnungen bei der Installation sind auf beiden Plattformen identisch.

                                1 Reply Last reply Reply Quote 0
                                • F
                                  fL4sH 0 @hardwarefreak last edited by

                                  @foxriver76 am idTag lag es nicht! Anscheind liegt das Problem beim Chargelimit in der RemoteStartTransaction. Wenn das Limit auf 0 gesetzt wird, beginnt er die RemoteStartTransaction mit folgendem Befehl Sending RemoteStartTransaction for /TACW1142021G1020: {"connectorId":1,"idTag":"1"} (ohne das ChargingProfil) und anschließend kann das Ladelimit wieder variabel eingestellt werden. Wird das LadeLimit vor dem Start gesetzt passiert nichts und dieser Befehl wird abgeschickt:
                                  Sending RemoteStartTransaction for /TACW1142021G1020: {"connectorId":1,"idTag":"1","chargingProfile":{"chargingProfileId":1,"stackLevel":0,"chargingProfilePurpose":"TxDefaultProfile","chargingProfileKind":"Recurring","recurrencyKind":"Daily","chargingSchedule":{"duration":86400,"startSchedule":"2013-01-01T00:00Z","chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":6}]}}}

                                  @hardwarefreak
                                  Ich habe auch Probleme mit der Firmware 1.5.2.
                                  Versuch mal dein Chargelimit auf 0 zu setzen und anschließend mit transactionActive=true.
                                  Bei mir sieht das dann so aus und der Ladevorgang kann über umwegen gestartet werden.

                                  ocpp.0 2022-02-14 21:37:41.814	debug	Sending RemoteStopTransaction for /TACW1142021G1020
                                  ocpp.0 2022-02-14 21:37:28.354	info	Received Status Notification from "/TACW1142021G1020": Charging
                                  ocpp.0 2022-02-14 21:37:28.353	debug	{"connectorId":1,"errorCode":"NoError","info":"null","status":"Charging","vendorErrorCode":"0x00","commandOcpp":"StatusNotification"}
                                  ocpp.0 2022-02-14 21:37:27.854	info	Received Status Notification from "/TACW1142021G1020": SuspendedEV
                                  ocpp.0 2022-02-14 21:37:27.854	debug	{"connectorId":1,"errorCode":"NoError","info":"null","status":"SuspendedEV","vendorErrorCode":"0x00","commandOcpp":"StatusNotification"}
                                  ocpp.0 2022-02-14 21:37:18.513	debug	Sending SetChargingProfile for /TACW1142021G1020
                                  ocpp.0 2022-02-14 21:37:17.917	info	Received MeterValues from "/TACW1142021G1020"
                                  ocpp.0 2022-02-14 21:37:17.916	debug	{"connectorId":1,"transactionId":1,"meterValue":[{"timestamp":"2022-02-14T20:37:17.000Z","sampledValue":[{"value":"233.90","context":"Transaction.Begin","format":"Raw","measurand":"Voltage","phase":"L1-N","unit":"V"},{"value":"0.0","context":"Transaction.Begin","format":"Raw","measurand":"Current.Import","phase":"L1","unit":"A"},{"value":"0","context":"Transaction.Begin","format":"Raw","measurand":"Power.Active.Import","phase":"L1","unit":"W"},{"value":"234.20","context":"Transaction.Begin","format":"Raw","measurand":"Voltage","phase":"L2-N","unit":"V"},{"value":"0.0","context":"Transaction.Begin","format":"Raw","measurand":"Current.Import","phase":"L2","unit":"A"},{"value":"0","context":"Transaction.Begin","format":"Raw","measurand":"Power.Active.Import","phase":"L2","unit":"W"},{"value":"234.00","context":"Transaction.Begin","format":"Raw","measurand":"Voltage","phase":"L3-N","unit":"V"},{"value":"0.0","context":"Transaction.Begin","format":"Raw","measurand":"Current.Import","phase":"L3","unit":"A"},{"value":"0","context":"Transaction.Begin","format":"Raw","measurand":"Power.Active.Import","phase":"L3","unit":"W"},{"value":"0","context":"Transaction.Begin","format":"Raw","measurand":"Energy.Active.Import.Register","unit":"Wh"},{"value":"10","context":"Transaction.Begin","format":"Raw","measurand":"Current.Offered","unit":"A"}]}],"commandOcpp":"MeterValues"}
                                  ocpp.0 2022-02-14 21:37:09.510	info	Received Status Notification from "/TACW1142021G1020": SuspendedEVSE
                                  ocpp.0 2022-02-14 21:37:09.509	debug	{"connectorId":1,"errorCode":"NoError","info":"null","status":"SuspendedEVSE","vendorErrorCode":"0x00","commandOcpp":"StatusNotification"}
                                  ocpp.0 2022-02-14 21:37:09.011	info	Received Start transaction from "/TACW1142021G1020"
                                  ocpp.0 2022-02-14 21:37:09.010	debug	{"connectorId":1,"idTag":"1","meterStart":0,"timestamp":"2022-02-14T20:37:07.000Z","commandOcpp":"StartTransaction"}
                                  ocpp.0 2022-02-14 21:37:08.510	info	Received Status Notification from "/TACW1142021G1020": Charging
                                  ocpp.0 2022-02-14 21:37:08.510	debug	{"connectorId":1,"errorCode":"NoError","info":"null","status":"Charging","vendorErrorCode":"0x00","commandOcpp":"StatusNotification"}
                                  ocpp.0 2022-02-14 21:37:08.010	info	Received Status Notification from "/TACW1142021G1020": SuspendedEV
                                  ocpp.0 2022-02-14 21:37:08.010	debug	{"connectorId":1,"errorCode":"NoError","info":"null","status":"SuspendedEV","vendorErrorCode":"0x00","commandOcpp":"StatusNotification"}
                                  ocpp.0 2022-02-14 21:37:07.500	debug	Sending RemoteStartTransaction for /TACW1142021G1020: {"connectorId":1,"idTag":"1"}
                                  
                                  1 Reply Last reply Reply Quote 0
                                  • F
                                    fL4sH 0 @hardwarefreak last edited by

                                    @hardwarefreak said in Alpha Testing: OCPP Wallbox Adapter:

                                    @fl4sh-0
                                    Worüber bringe ich dein Script für die PV-Überschussladung zur Ausführung im iobroker?

                                    Das kannst du über Javascript im iobroker ausführen. Du musst dann nur deine Variablen hinterlegen.
                                    Ich kann dir das sonst auch als Blockly-Script zur Verfügung stellen.

                                    1 Reply Last reply Reply Quote 0
                                    • Y
                                      yymsc last edited by yymsc

                                      Hallo,
                                      bin gerade auch am testen der OCPP Funktionen meiner Wallbox. Es handelt sich um eine M3W von Wallbox24.de welche OCPP 1.6 unterstützt.
                                      Leider funktioniert das setzen des Ladestroms mittels chargeLimit bei mir nicht. Weder zu Begin der Transaktion noch während des Ladens.
                                      Hab dazu mal ein Debug-Log angehängt, wäre echt prima wenn das funktionieren würde dann könnte ich nämlich das PV-Überschussladen angehen.
                                      Das Log zeigt den Start des Ladevorgangs durch Setzen von transactionActive=true mit chargeLimit=6. Wie man in den folgenden Zeilen sieht steigt der Ladestrom dennoch auf über 16A an.
                                      Wenn ich danach das chargeLimit ändere steht im Log nur 'Sending SetChargingProfile for /61689674063277'

                                      2022-03-21 16:42:57.217  - debug: ocpp.0 (12131) Sending RemoteStartTransaction for /61689674063277: {"connectorId":1,"idTag":"1","chargingProfile":{"chargingProfileId":1,"stackLevel":0,"chargingProfilePurpose":"TxDefaultProfile","chargingProfileKind":"Recurring","recurrencyKind":"Daily","chargingSchedule":{"duration":86400,"startSchedule":"2013-01-01T00:00Z","chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":7}]}}}
                                      2022-03-21 16:42:57.945  - debug: ocpp.0 (12131) {"connectorId":1,"idTag":"1","meterStart":2103200,"timestamp":"2022-03-21T15:42:56.333Z","reservationId":0,"commandOcpp":"StartTransaction"}
                                      2022-03-21 16:42:57.946  - info: ocpp.0 (12131) Received Start transaction from "/61689674063277"
                                      2022-03-21 16:42:58.393  - debug: ocpp.0 (12131) {"connectorId":1,"errorCode":"NoError","status":"Preparing","commandOcpp":"StatusNotification"}
                                      2022-03-21 16:42:58.394  - info: ocpp.0 (12131) Received Status Notification from "/61689674063277": Preparing
                                      2022-03-21 16:42:59.088  - debug: ocpp.0 (12131) {"connectorId":1,"errorCode":"NoError","status":"Charging","commandOcpp":"StatusNotification"}
                                      2022-03-21 16:42:59.089  - info: ocpp.0 (12131) Received Status Notification from "/61689674063277": Charging
                                      2022-03-21 16:43:08.729  - debug: ocpp.0 (12131) {"connectorId":1,"transactionId":1,"meterValue":[{"timestamp":"2022-03-21T15:43:07.333Z","sampledValue":[{"measurand":"Energy.Active.Import.Register","unit":"Wh","value":"2103200"},{"measurand":"Power.Active.Import","unit":"kW","value":"0.1"},{"measurand":"Temperature","unit":"Celsius","value":"35"},{"measurand":"Voltage","phase":"L1-N","unit":"V","value":"238.2"},{"measurand":"Voltage","phase":"L2-N","unit":"V","value":"238.0"},{"measurand":"Voltage","phase":"L3-N","unit":"V","value":"238.4"},{"measurand":"Current.Import","phase":"L1","unit":"A","value":"0.8"},{"measurand":"Current.Import","phase":"L2","unit":"A","value":"0.2"},{"measurand":"Current.Import","phase":"L3","unit":"A","value":"0.2"}]}],"commandOcpp":"MeterValues"}
                                      2022-03-21 16:43:08.730  - info: ocpp.0 (12131) Received MeterValues from "/61689674063277"
                                      2022-03-21 16:43:18.513  - debug: ocpp.0 (12131) {"connectorId":1,"transactionId":1,"meterValue":[{"timestamp":"2022-03-21T15:43:18.333Z","sampledValue":[{"measurand":"Energy.Active.Import.Register","unit":"Wh","value":"2103200"},{"measurand":"Power.Active.Import","unit":"kW","value":"2.4"},{"measurand":"Temperature","unit":"Celsius","value":"35"},{"measurand":"Voltage","phase":"L1-N","unit":"V","value":"236.8"},{"measurand":"Voltage","phase":"L2-N","unit":"V","value":"236.6"},{"measurand":"Voltage","phase":"L3-N","unit":"V","value":"238.7"},{"measurand":"Current.Import","phase":"L1","unit":"A","value":"5.3"},{"measurand":"Current.Import","phase":"L2","unit":"A","value":"5.3"},{"measurand":"Current.Import","phase":"L3","unit":"A","value":"0.2"}]}],"commandOcpp":"MeterValues"}
                                      2022-03-21 16:43:18.514  - info: ocpp.0 (12131) Received MeterValues from "/61689674063277"
                                      2022-03-21 16:43:25.355  - debug: ocpp.0 (12131) {"commandOcpp":"Heartbeat"}
                                      2022-03-21 16:43:25.356  - debug: ocpp.0 (12131) Received heartbeat from "/61689674063277"
                                      2022-03-21 16:43:28.575  - debug: ocpp.0 (12131) {"connectorId":1,"transactionId":1,"meterValue":[{"timestamp":"2022-03-21T15:43:27.333Z","sampledValue":[{"measurand":"Energy.Active.Import.Register","unit":"Wh","value":"2103200"},{"measurand":"Power.Active.Import","unit":"kW","value":"9.1"},{"measurand":"Temperature","unit":"Celsius","value":"35"},{"measurand":"Voltage","phase":"L1-N","unit":"V","value":"236.2"},{"measurand":"Voltage","phase":"L2-N","unit":"V","value":"235.8"},{"measurand":"Voltage","phase":"L3-N","unit":"V","value":"236.0"},{"measurand":"Current.Import","phase":"L1","unit":"A","value":"12.8"},{"measurand":"Current.Import","phase":"L2","unit":"A","value":"12.9"},{"measurand":"Current.Import","phase":"L3","unit":"A","value":"12.9"}]}],"commandOcpp":"MeterValues"}
                                      2022-03-21 16:43:28.577  - info: ocpp.0 (12131) Received MeterValues from "/61689674063277"
                                      2022-03-21 16:43:38.564  - debug: ocpp.0 (12131) {"connectorId":1,"transactionId":1,"meterValue":[{"timestamp":"2022-03-21T15:43:38.333Z","sampledValue":[{"measurand":"Energy.Active.Import.Register","unit":"Wh","value":"2103300"},{"measurand":"Power.Active.Import","unit":"kW","value":"11.4"},{"measurand":"Temperature","unit":"Celsius","value":"35"},{"measurand":"Voltage","phase":"L1-N","unit":"V","value":"235.6"},{"measurand":"Voltage","phase":"L2-N","unit":"V","value":"235.1"},{"measurand":"Voltage","phase":"L3-N","unit":"V","value":"235.8"},{"measurand":"Current.Import","phase":"L1","unit":"A","value":"16.1"},{"measurand":"Current.Import","phase":"L2","unit":"A","value":"16.2"},{"measurand":"Current.Import","phase":"L3","unit":"A","value":"16.2"}]}],"commandOcpp":"MeterValues"}
                                      2022-03-21 16:43:38.565  - info: ocpp.0 (12131) Received MeterValues from "/61689674063277"
                                      2022-03-21 16:43:44.563  - debug: ocpp.0 (12131) Sending SetChargingProfile for /61689674063277
                                      2022-03-21 16:43:48.532  - debug: ocpp.0 (12131) {"connectorId":1,"transactionId":1,"meterValue":[{"timestamp":"2022-03-21T15:43:48.333Z","sampledValue":[{"measurand":"Energy.Active.Import.Register","unit":"Wh","value":"2103300"},{"measurand":"Power.Active.Import","unit":"kW","value":"11.4"},{"measurand":"Temperature","unit":"Celsius","value":"35"},{"measurand":"Voltage","phase":"L1-N","unit":"V","value":"234.7"},{"measurand":"Voltage","phase":"L2-N","unit":"V","value":"235.4"},{"measurand":"Voltage","phase":"L3-N","unit":"V","value":"235.8"},{"measurand":"Current.Import","phase":"L1","unit":"A","value":"16.2"},{"measurand":"Current.Import","phase":"L2","unit":"A","value":"16.3"},{"measurand":"Current.Import","phase":"L3","unit":"A","value":"16.2"}]}],"commandOcpp":"MeterValues"}
                                      
                                      
                                      foxriver76 1 Reply Last reply Reply Quote 0
                                      • foxriver76
                                        foxriver76 Developer @yymsc last edited by

                                        @yymsc finde für die leider kein Dokument welches den Umfang der ocpp Implementierung beschreibt.

                                        Y 1 Reply Last reply Reply Quote 0
                                        • Y
                                          yymsc @foxriver76 last edited by

                                          @foxriver76 said in Alpha Testing: OCPP Wallbox Adapter:

                                          @yymsc finde für die leider kein Dokument welches den Umfang der ocpp Implementierung beschreibt.

                                          alles klar, sowas hatte ich fast befürchtet... Trotzdem vielen Dank für die schnelle Antwort !!!

                                          1 Reply Last reply Reply Quote 0
                                          • foxriver76
                                            foxriver76 Developer last edited by

                                            Ich habe eben eine 0.4.0 veröffentlicht, diese unterstützt nun Authentifizierung. Sprich wenn in den Adapteroptionen Auth aktiviert wird und ein Passwort/Username vergeben wird und ein Client abweichende Credentials bereitstellt, wird die Verbindung abgelehnt.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            756
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            adapter ocpp wallbox
                                            48
                                            440
                                            78390
                                            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