betovaca
betovaca
Hi, I'm a newbie in the OCPP and after reading the documents for the 2.0.1 version, I don't finish to understand what are the referenced components and variables. Are they...
Hello, Just like when I send a message from my cp to my server: ``` async def send_heartbeat(self, cp, interval=3600): request = call.HeartbeatPayload() while True: await cp.call(request) await asyncio.sleep(interval) ```...
Hi, I'm implementing OCPP 2.0.1 with Quart API. On server side, when a client is connected I create a global ChargePoint object so I can use it in other functions...
Hi, This question is only about python and not the protocol. How do you send periodically the transacion_event_request once a transaction started? I'm actually implementing the use case E02 from...
Hi, I'm implementing OCPP but I have a little issue. How can you implement the smart charging block? If you have a Charging Profile with a Charging Schedule from 16h00...
Hello I'm a newbie in OCPP protocol. I already read all the protocol but there are some (maybe dumb) questions I was wondering: - How do you know how many...