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

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Alpha Testing: OCPP Wallbox Adapter

    This topic has been deleted. Only users with topic management privileges can see it.
    • foxriver76
      foxriver76 Developer @Meister Mopper last edited by foxriver76

      @meister-mopper falls du es dir zutraust ändere mal lokal die build/main.js) https://github.com/foxriver76/ioBroker.ocpp/blob/48303d5b08f18682ed681038d614133990a50c1e/build/main.js#L397 diese Zeile hier zu

      if (false) {

      Evtl gefällt ihm das profile nicht.

      Meister Mopper 1 Reply Last reply Reply Quote 0
      • Meister Mopper
        Meister Mopper @foxriver76 last edited by

        @foxriver76

        Du meinst

                        if ((limitState === null || limitState === void 0 ? void 0 : limitState.val) && typeof limitState.val === 'number') {
        

        in

        if (false) {((limitState === null || limitState === void 0 ? void 0 : limitState.val) && typeof limitState.val === 'number') {
        

        Aber wo setze ich dann das erforderliche }?

        Sorry, ich bin kein Programmierer.

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

          Mach vor die existente Zeile einfach // und mach darunter das was ich geschrieben habe, ich kann es dir morgen am pc nochmal genauer schreiben.

          Meister Mopper 1 Reply Last reply Reply Quote 0
          • Meister Mopper
            Meister Mopper @foxriver76 last edited by

            @foxriver76
            Sehr gut, das funktioniert. Ich kann jetzt das Laden starten und beenden.

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

              @meister-mopper Interessant, was hast du denn in dem chargeLimit State drin stehen unter Objekte?

              Meister Mopper 2 Replies Last reply Reply Quote 0
              • Meister Mopper
                Meister Mopper @foxriver76 last edited by

                @foxriver76
                Da habe ich 16 A eingetragen, weiß aber nicht, ob das Ladelimit tatsächlich mit diesem Datenpunkt umzustellen ist.
                Das ist der Wert, der auch im Standard Backend der evBox definiert war. Es wird auch mit 16 A geladen.

                foxriver76 1 Reply Last reply Reply Quote 0
                • Meister Mopper
                  Meister Mopper @foxriver76 last edited by Meister Mopper

                  @foxriver76
                  Eben wollte ich das Laden transActive false beenden. Es funktionierte jedoch nicht wegen eines timeout.
                  Nachdem ich availability auf false und wieder true gesetzt hatte, schaltete das System nach erneutem transActive false von Charging auf Finishing.

                  Hier das log:

                  ocpp.0	2022-09-19 18:01:35.690	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Timeout for message 1472e968-074e-452a-8e15-6220076eeb36
                  ocpp.0	2022-09-19 18:02:07.174	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Charging
                  ocpp.0	2022-09-19 18:02:07.221	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6028,12128},0,0,350,2022-09-19T16:02:06Z,1,3,{0,0,0,0,0,0,0,0,0},280,14,3,112,0,350,160,0
                  ocpp.0	2022-09-19 18:02:21.206	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Charging
                  ocpp.0	2022-09-19 18:02:21.397	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6033,12128},0,0,350,2022-09-19T16:02:20Z,1,3,{0,0,0,0,0,0,0,0,0},280,14,3,112,0,350,160,0
                  ocpp.0	2022-09-19 18:02:39.406	info	Received stop transaction from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                  ocpp.0	2022-09-19 18:02:40.122	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Finishing
                  ocpp.0	2022-09-19 18:02:43.947	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Finishing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{C,11926,6155,61600},0,0,350,2022-09-19T16:02:39Z,0,3,{0,0,0,0,0,0,0,0,0},280,13,3,112,0,350,900,0
                  
                  1 Reply Last reply Reply Quote 0
                  • foxriver76
                    foxriver76 Developer @Meister Mopper last edited by

                    @meister-mopper kannst du den Change mal rückgängig machen, hier https://github.com/foxriver76/ioBroker.ocpp/blob/48303d5b08f18682ed681038d614133990a50c1e/src/main.ts#L520 ein W statt einem A rein schreibe, den chargeLimit state unter Objekte mit einer sinnvollen Wattbegrenzung beschreiben und dann nochmal starten. Evtl. benötigt die WB die Begrenzung in Watt, ich finde leider keine Spezifikation. Falls es das ist, kann ich es einbauen.

                    Meister Mopper G 2 Replies Last reply Reply Quote 0
                    • Meister Mopper
                      Meister Mopper @foxriver76 last edited by

                      @foxriver76 sagte in Alpha Testing: OCPP Wallbox Adapter:

                      kannst du den Change mal rückgängig machen

                      Was meinst Du damit "den Change mal rückgängig machen"?

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

                        @meister-mopper die Zeilen die wird bei dir abgeändert haben, wieder in den Urzustand versetzen 😉

                        Meister Mopper 1 Reply Last reply Reply Quote 0
                        • Meister Mopper
                          Meister Mopper @foxriver76 last edited by

                          @foxriver76

                          Nein, leider hat die Rücknahme des Change und der Austausch 'W' gegen 'A' nicht funktioniert. Ich erhalte wieder:

                          ocpp.0	2022-09-20 16:39:30.406	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                          
                          foxriver76 1 Reply Last reply Reply Quote 0
                          • foxriver76
                            foxriver76 Developer @Meister Mopper last edited by

                            @meister-mopper kannst du davon mal debug log zeigen?

                            Meister Mopper 1 Reply Last reply Reply Quote 0
                            • Meister Mopper
                              Meister Mopper @foxriver76 last edited by

                              @foxriver76

                              ocpp.0	2022-09-20 16:30:27.465	info	Received stop transaction from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                              ocpp.0	2022-09-20 16:30:28.133	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Finishing
                              ocpp.0	2022-09-20 16:30:32.213	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Finishing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{C,11936,6151,61594},0,0,320,2022-09-20T14:30:27Z,0,3,{0,0,0,0,0,0,0,0,0},260,9,4,112,0,300,900,0
                              ocpp.0	2022-09-20 16:30:53.680	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                              ocpp.0	2022-09-20 16:31:20.824	error	Cannot execute command "chargeLimit" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                              ocpp.0	2022-09-20 16:31:52.059	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                              
                              foxriver76 1 Reply Last reply Reply Quote 0
                              • foxriver76
                                foxriver76 Developer @Meister Mopper last edited by

                                @meister-mopper steht dir Instanz auf loglevel debug? gg

                                Da scheint was zu fehlen

                                Meister Mopper 1 Reply Last reply Reply Quote 0
                                • Meister Mopper
                                  Meister Mopper @foxriver76 last edited by

                                  @foxriver76

                                  Das ist das debug log. Hier mal alles, was ausgeworfen wurde:

                                  ocpp.0	2022-09-20 15:27:01.250	info	New valid connection from "http://192.168.178.80:9220/EVB-XXXXXXXXX" (http/ocpp1.6)
                                  ocpp.0	2022-09-20 15:36:08.075	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                  ocpp.0	2022-09-20 15:36:08.125	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{B,11940,9973,61568},0,0,290,2022-09-20T13:36:07Z,0,3,{0,0,0,0,0,0,0,0,0},200,1,0,112,0,210,900,0
                                  ocpp.0	2022-09-20 15:43:12.140	info	Loglevel changed from "info" to "debug"
                                  ocpp.0	2022-09-20 15:43:54.143	debug	Sending RemoteStartTransaction for http://192_168_178_80:9220/EVB-XXXXXXXXX: {"connectorId":1,"idTag":"XXXXXXXXX"}
                                  ocpp.0	2022-09-20 15:43:54.307	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:43:54.308	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:43:54.942	debug	{"idTag":"XXXXXXXXX","commandOcpp":"Authorize"}
                                  ocpp.0	2022-09-20 15:43:54.943	info	Received Authorization Request from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:43:56.889	debug	{"connectorId":1,"status":"Preparing","errorCode":"NoError","timestamp":"2022-09-20T13:43:56Z","commandOcpp":"StatusNotification"}
                                  ocpp.0	2022-09-20 15:43:56.891	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                  ocpp.0	2022-09-20 15:43:56.967	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Preparing,NoError,No error.,0,Off,0,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,290,2022-09-20T13:43:56Z,0,3,{0,0,0,0,0,0,0,0,0},200,0,0,125,0,210,900,0","commandOcpp":"DataTransfer"}
                                  ocpp.0	2022-09-20 15:43:56.968	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Off,0,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,290,2022-09-20T13:43:56Z,0,3,{0,0,0,0,0,0,0,0,0},200,0,0,125,0,210,900,0
                                  ocpp.0	2022-09-20 15:43:58.796	debug	{"connectorId":1,"status":"SuspendedEVSE","errorCode":"NoError","info":"B;290","timestamp":"2022-09-20T13:43:58Z","commandOcpp":"StatusNotification"}
                                  ocpp.0	2022-09-20 15:43:58.798	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": SuspendedEVSE
                                  ocpp.0	2022-09-20 15:43:59.504	debug	{"connectorId":1,"status":"SuspendedEV","errorCode":"NoError","info":"B;290","timestamp":"2022-09-20T13:43:59Z","commandOcpp":"StatusNotification"}
                                  ocpp.0	2022-09-20 15:43:59.504	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": SuspendedEV
                                  ocpp.0	2022-09-20 15:44:01.250	debug	{"connectorId":1,"idTag":"XXXXXXXXX","timestamp":"2022-09-20T13:43:57Z","meterStart":0,"commandOcpp":"StartTransaction"}
                                  ocpp.0	2022-09-20 15:44:01.251	info	Received Start transaction from "http://192.168.178.80:9220/XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:44:04.015	debug	{"connectorId":1,"status":"Charging","errorCode":"NoError","info":"C;290","timestamp":"2022-09-20T13:44:03Z","commandOcpp":"StatusNotification"}
                                  ocpp.0	2022-09-20 15:44:04.016	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Charging
                                  ocpp.0	2022-09-20 15:44:06.405	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,SuspendedEVSE,NoError,No error.,0,Yellow,1,{20,7984,0},{0,0},{B,11936,9132,61568},0,0,290,2022-09-20T13:43:58Z,1,3,{0,0,0,0,0,0,0,0,0},200,0,0,125,0,210,0,0","commandOcpp":"DataTransfer"}
                                  ocpp.0	2022-09-20 15:44:06.406	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,SuspendedEVSE,NoError,No error.,0,Yellow,1,{20,7984,0},{0,0},{B,11936,9132,61568},0,0,290,2022-09-20T13:43:58Z,1,3,{0,0,0,0,0,0,0,0,0},200,0,0,125,0,210,0,0
                                  ocpp.0	2022-09-20 15:44:11.254	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,SuspendedEV,NoError,No error.,0,Yellow,1,{20,7984,10},{0,0},{B,11952,8652,12112},0,0,290,2022-09-20T13:43:59Z,1,3,{0,0,0,0,0,0,0,0,0},200,0,0,125,0,210,60,0","commandOcpp":"DataTransfer"}
                                  ocpp.0	2022-09-20 15:44:11.255	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,SuspendedEV,NoError,No error.,0,Yellow,1,{20,7984,10},{0,0},{B,11952,8652,12112},0,0,290,2022-09-20T13:43:59Z,1,3,{0,0,0,0,0,0,0,0,0},200,0,0,125,0,210,60,0
                                  ocpp.0	2022-09-20 15:44:16.392	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Charging,NoError,No error.,1,Blue,1,{20,7984,10},{0,0},{C,11944,5868,12128},0,0,290,2022-09-20T13:44:03Z,1,3,{0,0,0,0,0,0,0,0,0},200,0,0,112,0,210,60,0","commandOcpp":"DataTransfer"}
                                  ocpp.0	2022-09-20 15:44:16.393	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,10},{0,0},{C,11944,5868,12128},0,0,290,2022-09-20T13:44:03Z,1,3,{0,0,0,0,0,0,0,0,0},200,0,0,112,0,210,60,0
                                  ocpp.0	2022-09-20 15:44:49.230	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:44:49.231	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:45:44.299	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:45:44.300	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:46:39.228	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:46:39.228	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:47:34.302	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:47:34.303	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:48:29.228	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:48:29.228	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:49:24.237	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:49:24.238	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:50:19.226	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:50:19.226	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:51:14.231	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:51:14.232	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:52:09.243	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:52:09.245	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:53:04.226	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:53:04.227	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:53:59.225	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:53:59.226	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:54:54.223	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:54:54.224	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:55:49.223	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:55:49.224	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:56:44.227	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:56:44.229	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:57:39.212	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:57:39.213	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:58:34.212	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:58:34.213	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:59:05.570	debug	{"connectorId":1,"transactionId":1,"meterValue":[{"timestamp":"2022-09-20T13:59:05Z","sampledValue":[{"value":"0","measurand":"Energy.Active.Import.Register","unit":"Wh"}]}],"commandOcpp":"MeterValues"}
                                  ocpp.0	2022-09-20 15:59:05.571	info	Received MeterValues from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 15:59:10.234	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11942,6042,12096},0,0,290,2022-09-20T13:59:05Z,1,3,{0,0,0,0,0,0,0,0,0},220,15,5,111,0,250,160,0","commandOcpp":"DataTransfer"}
                                  ocpp.0	2022-09-20 15:59:10.234	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11942,6042,12096},0,0,290,2022-09-20T13:59:05Z,1,3,{0,0,0,0,0,0,0,0,0},220,15,5,111,0,250,160,0
                                  ocpp.0	2022-09-20 15:59:29.221	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 15:59:29.222	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:00:24.218	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:00:24.219	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:01:19.219	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:01:19.220	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:02:14.219	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:02:14.220	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:03:09.218	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:03:09.218	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:04:04.218	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:04:04.219	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:04:59.208	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:04:59.209	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:05:54.207	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:05:54.208	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:06:49.215	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:06:49.216	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:07:44.252	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:07:44.253	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:08:39.207	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:08:39.208	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:09:34.215	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:09:34.216	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:10:29.217	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:10:29.218	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:11:24.203	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:11:24.204	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:12:19.374	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:12:19.375	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:13:14.211	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:13:14.212	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:14:07.894	debug	{"connectorId":1,"transactionId":1,"meterValue":[{"timestamp":"2022-09-20T14:14:07Z","sampledValue":[{"value":"0","measurand":"Energy.Active.Import.Register","unit":"Wh"}]}],"commandOcpp":"MeterValues"}
                                  ocpp.0	2022-09-20 16:14:07.895	info	Received MeterValues from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:14:09.211	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:14:09.212	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:14:12.224	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6041,12096},0,0,310,2022-09-20T14:14:07Z,1,3,{0,0,0,0,0,0,0,0,0},240,15,5,112,0,280,160,0","commandOcpp":"DataTransfer"}
                                  ocpp.0	2022-09-20 16:14:12.225	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6041,12096},0,0,310,2022-09-20T14:14:07Z,1,3,{0,0,0,0,0,0,0,0,0},240,15,5,112,0,280,160,0
                                  ocpp.0	2022-09-20 16:15:04.200	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:15:04.200	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:15:59.210	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:15:59.210	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:16:54.208	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:16:54.209	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:17:49.212	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:17:49.213	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:18:44.207	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:18:44.208	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:19:39.207	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:19:39.208	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:20:34.206	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:20:34.206	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:21:29.196	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:21:29.197	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:22:24.196	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:22:24.197	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:23:19.204	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:23:19.205	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:24:14.220	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:24:14.221	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:25:09.203	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:25:09.204	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:26:04.202	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:26:04.203	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:26:59.203	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:26:59.204	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:27:54.331	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:27:54.332	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:28:49.191	debug	{"commandOcpp":"Heartbeat"}
                                  ocpp.0	2022-09-20 16:28:49.192	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:29:09.364	info	Got terminate signal TERMINATE_YOURSELF
                                  ocpp.0	2022-09-20 16:29:09.381	info	terminating
                                  ocpp.0	2022-09-20 16:29:09.383	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                  ocpp.0	2022-09-20 16:29:15.031	info	starting. Version 0.6.0 in /opt/iobroker/node_modules/iobroker.ocpp, node: v16.17.0, js-controller: 4.0.23
                                  ocpp.0	2022-09-20 16:29:15.073	info	Starting OCPP Server
                                  ocpp.0	2022-09-20 16:29:15.112	info	Server listening on port 9220
                                  ocpp.0	2022-09-20 16:29:49.241	info	New valid connection from "http://192.168.178.80:9220/EVB-XXXXXXXXX" (http/ocpp1.6)
                                  ocpp.0	2022-09-20 16:29:49.296	info	New device connected: "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:29:49.298	info	Requesting BootNotification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:29:50.336	info	Requesting StatusNotification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:29:54.295	info	Received boot notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:29:54.550	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Charging
                                  ocpp.0	2022-09-20 16:29:59.218	info	Received MeterValues from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:30:04.335	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6028,12112},0,0,320,2022-09-20T14:29:10Z,1,3,{0,0,0,0,0,0,0,0,0},250,15,5,112,0,300,160,0
                                  ocpp.0	2022-09-20 16:30:09.215	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6028,12112},0,0,320,2022-09-20T14:29:54Z,1,3,{0,0,0,0,0,0,0,0,0},250,15,5,112,0,300,160,0
                                  ocpp.0	2022-09-20 16:30:20.343	warn	Could not request states of "http://192.168.178.80:9220/EVB-XXXXXXXXX": Timeout for message 062d14a2-1029-4f6b-b35b-5f30427e56cb
                                  ocpp.0	2022-09-20 16:30:27.465	info	Received stop transaction from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:30:28.133	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Finishing
                                  ocpp.0	2022-09-20 16:30:32.213	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Finishing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{C,11936,6151,61594},0,0,320,2022-09-20T14:30:27Z,0,3,{0,0,0,0,0,0,0,0,0},260,9,4,112,0,300,900,0
                                  ocpp.0	2022-09-20 16:30:53.680	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                  ocpp.0	2022-09-20 16:31:20.824	error	Cannot execute command "chargeLimit" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                  ocpp.0	2022-09-20 16:31:52.059	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                  ocpp.0	2022-09-20 16:36:40.723	info	Got terminate signal TERMINATE_YOURSELF
                                  ocpp.0	2022-09-20 16:36:40.732	info	terminating
                                  ocpp.0	2022-09-20 16:36:40.734	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                  ocpp.0	2022-09-20 16:36:51.314	info	starting. Version 0.6.0 in /opt/iobroker/node_modules/iobroker.ocpp, node: v16.17.0, js-controller: 4.0.23
                                  ocpp.0	2022-09-20 16:36:51.361	info	Starting OCPP Server
                                  ocpp.0	2022-09-20 16:36:51.403	info	Server listening on port 9220
                                  ocpp.0	2022-09-20 16:37:20.269	info	New valid connection from "http://192.168.178.80:9220/EVB-XXXXXXXXX" (http/ocpp1.6)
                                  ocpp.0	2022-09-20 16:37:20.320	info	New device connected: "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:37:20.322	info	Requesting BootNotification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:37:21.359	info	Requesting StatusNotification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:37:25.213	info	Received boot notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:37:25.541	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                  ocpp.0	2022-09-20 16:37:30.243	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,330,2022-09-20T14:37:25Z,0,3,{0,0,0,0,0,0,0,0,0},250,1,4,113,0,290,900,0
                                  ocpp.0	2022-09-20 16:37:51.367	warn	Could not request states of "http://192.168.178.80:9220/EVB-XXXXXXXXX": Timeout for message a016bbd2-6f88-4ed1-a0a5-e0e8098f2919
                                  ocpp.0	2022-09-20 16:38:09.419	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                  ocpp.0	2022-09-20 16:38:35.293	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Unavailable
                                  ocpp.0	2022-09-20 16:38:35.468	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Unavailable,NoError,No error.,0,Red,0,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,330,2022-09-20T14:38:35Z,0,3,{0,0,0,0,0,0,0,0,0},250,1,4,113,0,290,900,0
                                  ocpp.0	2022-09-20 16:38:46.892	error	Cannot execute command "chargeLimit" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                  ocpp.0	2022-09-20 16:38:55.894	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                  ocpp.0	2022-09-20 16:38:56.086	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,330,2022-09-20T14:38:55Z,0,3,{0,0,0,0,0,0,0,0,0},250,1,4,113,0,290,900,0
                                  ocpp.0	2022-09-20 16:39:30.406	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                  ocpp.0	2022-09-20 16:42:33.342	info	Got terminate signal TERMINATE_YOURSELF
                                  ocpp.0	2022-09-20 16:42:33.360	info	terminating
                                  ocpp.0	2022-09-20 16:42:33.363	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                  ocpp.0	2022-09-20 16:42:39.050	info	starting. Version 0.6.0 in /opt/iobroker/node_modules/iobroker.ocpp, node: v16.17.0, js-controller: 4.0.23
                                  ocpp.0	2022-09-20 16:42:39.092	info	Starting OCPP Server
                                  ocpp.0	2022-09-20 16:42:39.131	info	Server listening on port 9220
                                  ocpp.0	2022-09-20 16:43:13.240	info	New valid connection from "http://192.168.178.80:9220/EVB-XXXXXXXXX" (http/ocpp1.6)
                                  ocpp.0	2022-09-20 16:43:13.295	info	New device connected: "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:43:13.298	info	Requesting BootNotification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:43:14.339	info	Requesting StatusNotification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:43:18.199	info	Received boot notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:43:18.420	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                  ocpp.0	2022-09-20 16:43:23.214	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,330,2022-09-20T14:43:18Z,0,3,{0,0,0,0,0,0,0,0,0},250,1,4,113,0,280,900,0
                                  ocpp.0	2022-09-20 16:43:38.782	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Unavailable
                                  ocpp.0	2022-09-20 16:43:38.833	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Unavailable,NoError,No error.,0,Red,0,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,330,2022-09-20T14:43:38Z,0,3,{0,0,0,0,0,0,0,0,0},250,1,4,113,0,280,900,0
                                  ocpp.0	2022-09-20 16:43:44.347	warn	Could not request states of "http://192.168.178.80:9220/EVB-XXXXXXXXX": Timeout for message f3819643-d0ce-46ff-8554-02bb546ab406
                                  ocpp.0	2022-09-20 16:43:55.528	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                  ocpp.0	2022-09-20 16:43:55.576	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{B,11935,9132,61568},0,0,330,2022-09-20T14:43:55Z,0,3,{0,0,0,0,0,0,0,0,0},250,1,4,113,0,280,900,0
                                  ocpp.0	2022-09-20 16:44:04.590	info	Received Authorization Request from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                  ocpp.0	2022-09-20 16:44:06.952	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                  ocpp.0	2022-09-20 16:44:06.994	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Off,1,{20,7984,100},{0,0},{B,11934,9132,61568},0,0,330,2022-09-20T14:44:06Z,0,3,{0,0,0,0,0,0,0,0,0},250,0,0,125,0,280,900,0
                                  
                                  

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

                                    @meister-mopper So einen Start benötige ich auf debug wie

                                    ocpp.0	2022-09-20 15:43:54.143	debug	Sending RemoteStartTransaction for http://192_168_178_80:9220/EVB-XXXXXXXXX: {"connectorId":1,"idTag":"XXXXXXXXX"}
                                    

                                    Die Zeile nur wenn es fehlschlägt, sprich Adapter auf Loglevel Debug stellen und dann eine Transaktion starten. Was ja nicht gehen sollte.

                                    Meister Mopper 1 Reply Last reply Reply Quote 0
                                    • Meister Mopper
                                      Meister Mopper @foxriver76 last edited by

                                      @foxriver76

                                      Ich habe die Instanz so eingestellt:

                                      205bff3c-9ebc-4c7f-ae20-d902bf8e9b08-grafik.png

                                      Es kommt aber nicht mehr als:

                                      ocpp.0	2022-09-20 16:30:53.680	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                      

                                      Woran liegt das?

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

                                        @meister-mopper hm komisch, da sollte auf jeden fall ein debug log kommen.

                                        Kannst du mal bitte auf 0.7.0 updaten, es sollte ein State erstellt werden chargeLimitType da solltest du zwischen A und W wählen können. Bitte mal prüfen, dass bei Änderung sich die Einheit vom chargeLimit State ändert.

                                        Falls das tut mal z. B. auf W stellen und 8000 in den chargeLimit State schreiben und dann nochmal transactionActive triggern. Und bitte alles auf debug nach Möglichkeit.

                                        Meister Mopper 1 Reply Last reply Reply Quote 0
                                        • Meister Mopper
                                          Meister Mopper @foxriver76 last edited by Meister Mopper

                                          @foxriver76

                                          Update auf 0.7.0:

                                          $ iobroker url https://github.com/foxriver76/ioBroker.ocpp.git --host rpizigbee --debug
                                          install foxriver76/ioBroker.ocpp#a7c06c513c0e8c6272a10deddd07152bc6efbed7
                                          NPM version: 8.15.0
                                          Installing foxriver76/ioBroker.ocpp#a7c06c513c0e8c6272a10deddd07152bc6efbed7... (System call)
                                          npm WARN skipping integrity check for git dependency ssh://git@github.com/foxriver76/ioBroker.ocpp.git
                                          npm WARN deprecated joi-date-extensions@1.2.0: This module has moved and is now available at @hapi/joi-date. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues.
                                          npm WARN deprecated hoek@5.0.4: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
                                          npm WARN deprecated hoek@6.1.3: This module has moved and is now available at @hapi/hoek. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues.
                                          npm WARN deprecated joi@13.7.0: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
                                          added 8 packages, and changed 51 packages in 2m88 packages are looking for funding run `npm fund` for details
                                          upload [1] ocpp.admin /opt/iobroker/node_modules/iobroker.ocpp/admin/jsonConfig.json jsonConfig.json application/json
                                          upload [0] ocpp.admin /opt/iobroker/node_modules/iobroker.ocpp/admin/ocpp.png ocpp.png image/png
                                          Update "system.adapter.ocpp.0"
                                          Process exited with code 0
                                          

                                          Ich kann auf Watt umstellen, die Einheit ändert sich auch. Allerdings beginnt der Ladevorgang nach transactionActive nicht und ich musste mit dem rfid chip direkt an der Wallbox das Laden starten.
                                          00f9dfec-ebff-4192-b22d-bef32259cf48-grafik.png

                                          Hier Energy_Active_Import_Register
                                          ffa7ce40-55d1-44ee-b0ec-5028ee474167-grafik.png

                                          So sieht es dann aus (das Haus benötigt ca. 500 W):

                                          Verbrauch.gif

                                          Hier noch das log:

                                          ocpp.0	2022-09-21 15:26:58.566	info	New valid connection from "http://192.168.178.80:9220/EVB-XXXXXXXXX" (http/ocpp1.6)
                                          ocpp.0	2022-09-21 15:41:35.643	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                          ocpp.0	2022-09-21 15:41:35.727	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{B,11940,10012,61568},0,0,300,2022-09-21T13:41:35Z,0,3,{0,0,0,0,0,0,0,0,0},220,1,1,112,0,230,900,0
                                          ocpp.0	2022-09-21 15:41:42.522	info	Received Authorization Request from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 15:41:44.670	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                          ocpp.0	2022-09-21 15:41:44.716	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Off,1,{20,7984,100},{0,0},{B,11936,9146,61568},0,0,300,2022-09-21T13:41:44Z,0,3,{0,0,0,0,0,0,0,0,0},220,0,0,125,0,230,900,0
                                          ocpp.0	2022-09-21 15:41:46.974	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": SuspendedEVSE
                                          ocpp.0	2022-09-21 15:41:47.178	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": SuspendedEV
                                          ocpp.0	2022-09-21 15:41:49.463	info	Received Start transaction from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 15:41:50.480	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Charging
                                          ocpp.0	2022-09-21 15:41:54.388	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,SuspendedEVSE,NoError,No error.,0,Yellow,1,{20,7984,10},{0,0},{B,11937,8736,9416},0,0,300,2022-09-21T13:41:46Z,1,3,{0,0,0,0,0,0,0,0,0},220,0,0,125,0,230,60,0
                                          ocpp.0	2022-09-21 15:41:59.374	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,SuspendedEV,NoError,No error.,0,Yellow,1,{20,7984,10},{0,0},{B,11938,8652,12128},0,0,300,2022-09-21T13:41:46Z,1,3,{0,0,0,0,0,0,0,0,0},220,0,0,125,0,230,60,0
                                          ocpp.0	2022-09-21 15:42:04.372	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,5868,12131},0,0,300,2022-09-21T13:41:50Z,1,3,{0,0,0,0,0,0,0,0,0},220,2,0,114,0,230,160,0
                                          ocpp.0	2022-09-21 15:56:51.319	info	Received MeterValues from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 15:56:56.363	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6044,12112},0,0,310,2022-09-21T13:56:50Z,1,3,{0,0,0,0,0,0,0,0,0},240,16,4,112,0,260,160,0
                                          ocpp.0	2022-09-21 16:11:53.660	info	Received MeterValues from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:11:58.377	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6043,12112},0,0,330,2022-09-21T14:11:53Z,1,3,{0,0,0,0,0,0,0,0,0},260,15,4,112,0,290,160,0
                                          ocpp.0	2022-09-21 16:12:43.852	info	Got terminate signal TERMINATE_YOURSELF
                                          ocpp.0	2022-09-21 16:12:43.861	info	terminating
                                          ocpp.0	2022-09-21 16:12:43.862	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                          ocpp.0	2022-09-21 16:12:49.701	info	starting. Version 0.7.0 (non-npm: foxriver76/ioBroker.ocpp#a7c06c513c0e8c6272a10deddd07152bc6efbed7) in /opt/iobroker/node_modules/iobroker.ocpp, node: v16.17.0, js-controller: 4.0.23
                                          ocpp.0	2022-09-21 16:12:49.743	info	Starting OCPP Server
                                          ocpp.0	2022-09-21 16:12:49.815	info	Server listening on port 9220
                                          ocpp.0	2022-09-21 16:13:23.494	info	New valid connection from "http://192.168.178.80:9220/EVB-XXXXXXXXX" (http/ocpp1.6)
                                          ocpp.0	2022-09-21 16:13:23.551	info	New device connected: "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:13:23.555	info	Requesting BootNotification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:13:24.595	info	Requesting StatusNotification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:13:28.345	info	Received boot notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:13:28.600	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Charging
                                          ocpp.0	2022-09-21 16:13:33.486	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,26},{0,0},{C,11936,6041,12112},0,0,330,2022-09-21T14:13:28Z,1,3,{0,0,0,0,0,0,0,0,0},260,15,4,112,0,290,160,0
                                          ocpp.0	2022-09-21 16:13:54.604	warn	Could not request states of "http://192.168.178.80:9220/EVB-XXXXXXXXX": Timeout for message 17557d23-e18f-4a14-89f4-3147f46615ff
                                          ocpp.0	2022-09-21 16:14:32.775	info	Loglevel changed from "info" to "silly"
                                          ocpp.0	2022-09-21 16:15:18.339	debug	{"commandOcpp":"Heartbeat"}
                                          ocpp.0	2022-09-21 16:15:18.341	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:15:59.639	debug	Sending RemoteStopTransaction for http://192_168_178_80:9220/EVB-XXXXXXXXX
                                          ocpp.0	2022-09-21 16:16:05.078	debug	{"transactionId":1,"idTag":"048EAB728E6781","timestamp":"2022-09-21T14:16:04Z","meterStop":0,"reason":"Remote","commandOcpp":"StopTransaction"}
                                          ocpp.0	2022-09-21 16:16:05.079	info	Received stop transaction from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:16:05.695	debug	{"connectorId":1,"status":"Finishing","errorCode":"NoError","timestamp":"2022-09-21T14:16:05Z","commandOcpp":"StatusNotification"}
                                          ocpp.0	2022-09-21 16:16:05.696	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Finishing
                                          ocpp.0	2022-09-21 16:16:09.338	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Finishing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{C,11936,6156,61596},0,0,330,2022-09-21T14:16:05Z,0,3,{0,0,0,0,0,0,0,0,0},260,9,3,112,0,300,900,0","commandOcpp":"DataTransfer"}
                                          ocpp.0	2022-09-21 16:16:09.339	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Finishing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{C,11936,6156,61596},0,0,330,2022-09-21T14:16:05Z,0,3,{0,0,0,0,0,0,0,0,0},260,9,3,112,0,300,900,0
                                          ocpp.0	2022-09-21 16:16:13.327	debug	{"commandOcpp":"Heartbeat"}
                                          ocpp.0	2022-09-21 16:16:13.327	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:16:29.359	debug	Sending SetChargingProfile for http://192_168_178_80:9220/EVB-XXXXXXXXX
                                          ocpp.0	2022-09-21 16:16:29.518	error	Cannot execute command "chargeLimit" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                          ocpp.0	2022-09-21 16:16:40.054	debug	Sending RemoteStartTransaction for http://192_168_178_80:9220/EVB-XXXXXXXXX: {"connectorId":1,"idTag":"048BEAB728E6781","chargingProfile":{"chargingProfileId":1,"stackLevel":0,"chargingProfilePurpose":"TxDefaultProfile","chargingProfileKind":"Recurring","recurrencyKind":"Daily","chargingSchedule":{"duration":86400,"startSchedule":"2013-01-01T00:00Z","chargingRateUnit":"W","chargingSchedulePeriod":[{"startPeriod":0,"limit":8000}]}}}
                                          ocpp.0	2022-09-21 16:16:40.436	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                          ocpp.0	2022-09-21 16:17:01.444	debug	Sending RemoteStopTransaction for http://192_168_178_80:9220/EVB-XXXXXXXXX
                                          ocpp.0	2022-09-21 16:17:05.951	debug	Sending ChangeAvailability for http://192_168_178_80:9220/EVB-XXXXXXXXX: Inoperative
                                          ocpp.0	2022-09-21 16:17:06.349	debug	{"connectorId":1,"status":"Unavailable","errorCode":"NoError","timestamp":"2022-09-21T14:17:06Z","commandOcpp":"StatusNotification"}
                                          ocpp.0	2022-09-21 16:17:06.350	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Unavailable
                                          ocpp.0	2022-09-21 16:17:06.398	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Unavailable,NoError,No error.,0,Red,0,{20,7984,100},{0,0},{B,11934,9132,61568},0,0,330,2022-09-21T14:17:06Z,0,3,{0,0,0,0,0,0,0,0,0},260,1,1,112,0,300,900,0","commandOcpp":"DataTransfer"}
                                          ocpp.0	2022-09-21 16:17:06.400	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Unavailable,NoError,No error.,0,Red,0,{20,7984,100},{0,0},{B,11934,9132,61568},0,0,330,2022-09-21T14:17:06Z,0,3,{0,0,0,0,0,0,0,0,0},260,1,1,112,0,300,900,0
                                          ocpp.0	2022-09-21 16:17:08.314	debug	{"commandOcpp":"Heartbeat"}
                                          ocpp.0	2022-09-21 16:17:08.315	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:17:12.444	debug	Sending ChangeAvailability for http://192_168_178_80:9220/EVB-XXXXXXXXX: Operative
                                          ocpp.0	2022-09-21 16:17:12.772	debug	{"connectorId":1,"status":"Finishing","errorCode":"NoError","timestamp":"2022-09-21T14:17:12Z","commandOcpp":"StatusNotification"}
                                          ocpp.0	2022-09-21 16:17:12.773	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Finishing
                                          ocpp.0	2022-09-21 16:17:12.890	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Finishing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{B,11935,9132,61568},0,0,330,2022-09-21T14:17:12Z,0,3,{0,0,0,0,0,0,0,0,0},260,1,2,112,0,300,900,0","commandOcpp":"DataTransfer"}
                                          ocpp.0	2022-09-21 16:17:12.891	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Finishing,NoError,No error.,0,Green,0,{20,7984,100},{0,0},{B,11935,9132,61568},0,0,330,2022-09-21T14:17:12Z,0,3,{0,0,0,0,0,0,0,0,0},260,1,2,112,0,300,900,0
                                          ocpp.0	2022-09-21 16:17:20.473	debug	Sending RemoteStartTransaction for http://192_168_178_80:9220/EVB-XXXXXXXXX: {"connectorId":1,"idTag":"048BEAB728E6781","chargingProfile":{"chargingProfileId":1,"stackLevel":0,"chargingProfilePurpose":"TxDefaultProfile","chargingProfileKind":"Recurring","recurrencyKind":"Daily","chargingSchedule":{"duration":86400,"startSchedule":"2013-01-01T00:00Z","chargingRateUnit":"W","chargingSchedulePeriod":[{"startPeriod":0,"limit":8000}]}}}
                                          ocpp.0	2022-09-21 16:17:20.616	error	Cannot execute command "transactionActive" for "http://192_168_178_80:9220/EVB-XXXXXXXXX": Sender's message does not comply with protocol specification.
                                          ocpp.0	2022-09-21 16:18:03.322	debug	{"commandOcpp":"Heartbeat"}
                                          ocpp.0	2022-09-21 16:18:03.322	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:18:33.622	debug	{"idTag":"048EAB728E6781","commandOcpp":"Authorize"}
                                          ocpp.0	2022-09-21 16:18:33.623	info	Received Authorization Request from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:18:36.216	debug	{"connectorId":1,"status":"Preparing","errorCode":"NoError","timestamp":"2022-09-21T14:18:35Z","commandOcpp":"StatusNotification"}
                                          ocpp.0	2022-09-21 16:18:36.217	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Preparing
                                          ocpp.0	2022-09-21 16:18:36.273	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Preparing,NoError,No error.,0,Off,1,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,330,2022-09-21T14:18:35Z,0,3,{0,0,0,0,0,0,0,0,0},260,0,0,125,0,300,900,0","commandOcpp":"DataTransfer"}
                                          ocpp.0	2022-09-21 16:18:36.274	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Preparing,NoError,No error.,0,Off,1,{20,7984,100},{0,0},{B,11936,9132,61568},0,0,330,2022-09-21T14:18:35Z,0,3,{0,0,0,0,0,0,0,0,0},260,0,0,125,0,300,900,0
                                          ocpp.0	2022-09-21 16:18:37.696	debug	{"connectorId":1,"status":"SuspendedEVSE","errorCode":"NoError","info":"B;330","timestamp":"2022-09-21T14:18:37Z","commandOcpp":"StatusNotification"}
                                          ocpp.0	2022-09-21 16:18:37.697	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": SuspendedEVSE
                                          ocpp.0	2022-09-21 16:18:37.887	debug	{"connectorId":1,"status":"SuspendedEV","errorCode":"NoError","info":"B;330","timestamp":"2022-09-21T14:18:37Z","commandOcpp":"StatusNotification"}
                                          ocpp.0	2022-09-21 16:18:37.888	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": SuspendedEV
                                          ocpp.0	2022-09-21 16:18:40.327	debug	{"connectorId":1,"idTag":"048EAB728E6781","timestamp":"2022-09-21T14:18:36Z","meterStart":0,"commandOcpp":"StartTransaction"}
                                          ocpp.0	2022-09-21 16:18:40.328	info	Received Start transaction from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          ocpp.0	2022-09-21 16:18:42.407	debug	{"connectorId":1,"status":"Charging","errorCode":"NoError","info":"C;330","timestamp":"2022-09-21T14:18:42Z","commandOcpp":"StatusNotification"}
                                          ocpp.0	2022-09-21 16:18:42.408	info	Received Status Notification from "http://192.168.178.80:9220/EVB-XXXXXXXXX": Charging
                                          ocpp.0	2022-09-21 16:18:45.345	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,SuspendedEVSE,NoError,No error.,0,Yellow,1,{20,7983,10},{0,0},{B,11936,8752,8393},0,0,330,2022-09-21T14:18:37Z,1,3,{0,0,0,0,0,0,0,0,0},260,0,0,125,0,300,60,0","commandOcpp":"DataTransfer"}
                                          ocpp.0	2022-09-21 16:18:45.346	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,SuspendedEVSE,NoError,No error.,0,Yellow,1,{20,7983,10},{0,0},{B,11936,8752,8393},0,0,330,2022-09-21T14:18:37Z,1,3,{0,0,0,0,0,0,0,0,0},260,0,0,125,0,300,60,0
                                          ocpp.0	2022-09-21 16:18:50.344	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,SuspendedEV,NoError,No error.,0,Yellow,1,{20,7984,10},{0,0},{B,11936,8639,12153},0,0,330,2022-09-21T14:18:37Z,1,3,{0,0,0,0,0,0,0,0,0},260,0,0,125,0,300,60,0","commandOcpp":"DataTransfer"}
                                          ocpp.0	2022-09-21 16:18:50.345	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,SuspendedEV,NoError,No error.,0,Yellow,1,{20,7984,10},{0,0},{B,11936,8639,12153},0,0,330,2022-09-21T14:18:37Z,1,3,{0,0,0,0,0,0,0,0,0},260,0,0,125,0,300,60,0
                                          ocpp.0	2022-09-21 16:18:55.345	debug	{"vendorId":"EV-BOX","messageId":"evbStatusNotification","data":"1,Charging,NoError,No error.,1,Blue,1,{20,7984,10},{0,0},{C,11936,5852,12160},0,0,330,2022-09-21T14:18:42Z,1,3,{0,0,0,0,0,0,0,0,0},260,1,0,117,0,300,60,0","commandOcpp":"DataTransfer"}
                                          ocpp.0	2022-09-21 16:18:55.346	info	Received DataTransfer from "http://192.168.178.80:9220/EVB-XXXXXXXXX" with id "evbStatusNotification": 1,Charging,NoError,No error.,1,Blue,1,{20,7984,10},{0,0},{C,11936,5852,12160},0,0,330,2022-09-21T14:18:42Z,1,3,{0,0,0,0,0,0,0,0,0},260,1,0,117,0,300,60,0
                                          ocpp.0	2022-09-21 16:18:58.336	debug	{"commandOcpp":"Heartbeat"}
                                          ocpp.0	2022-09-21 16:18:58.338	debug	Received heartbeat from "http://192.168.178.80:9220/EVB-XXXXXXXXX"
                                          

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

                                            @meister-mopper hm Schade, dann scheint die WB kein Anpassung der Ladeleistung zu unterstützen, schreib einfach mal in den State für chargeLimit ein String oder null rein, dann sollte er es gehen natürlich nach wie vor ohne Ladeleistungsanpassung.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            812
                                            Online

                                            31.7k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

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