ocpp
ocpp copied to clipboard
Python implementation of the Open Charge Point Protocol (OCPP).
I am trying to use the Charge Point in conjunction with STEVE as the central server. Can anyone point me in the right direction on getting the charge point running?...
Are there any examples on integrating this library with Django Channels ? I see examples on how to integrate with WebSockets library, but Django Channels and it's "Consumers" would be...
Hello, We have modified and implemented the below code to accomodate remote start transaction and we are able to control the start and stop the charger quite well. However, we...
Why do I get a validation error if the protocol allows me to accept data of type Float? Why is 21.4 a valid value but 0.0 is invalid value. log...
Good morning, I am currently working on the reservation of a loading session using Ocpp1.6. Now I have the problem that call(request) returns a nonetype and unfortunately I can't explain...
Sometimes charger is sending heart bean but gets response timeout whenever do remote transaction like RemoteStartTransaction,RemoteStopTransaction,ClearCache,Reset etc. Every call is getting response timeout but heartbeat is coming from charger ,...
#81 I'm trying to setup an application using remote_start_transaction msg. I followed the code from the above mentioned issue and it seem to work for me in a charge_point.py script....
Good morning, I need to implement the MeterValueSampleInterval option, but I am not very clear about the format and when I should send it. does it have to be at...
I need help please, I was trying to implement a call from central_system to charge_point for reset.req and got this error. *** AttributeError: 'ChargePoint' object has no attribute '_call_result' This...
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) ```...