ocpp
ocpp copied to clipboard
Python implementation of the Open Charge Point Protocol (OCPP).
added configuration keys (for v16 only)
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...
Shouldn't enum types for component and variable names also be added? Cf. **2. Referenced Components and Variables**, https://raw.githubusercontent.com/mobilityhouse/ocpp/master/docs/v201/OCPP-2.0.1_part2_specification.pdf from page 420 onwards
MeterValueType was implemented correctly in the JSON schema but the dataclass is implemented incorrectly. current (wrong): ``` python @dataclass class MeterValueType: """ Collection of one or more sampled values in...
Adds functionality to the basic v16 central system example so that core OCPP functions work with a charger, including start and stop transaction. Implement a Command Line Interface (CLI) to...
The example you gave me has a response to the action sent by the charge point, but not the part that receives and processes the action sent by the central...
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...
We have an edge case when using a ChargePoint instance with Home Assistant (https://github.com/lbbrhzn/ocpp/) where the Charger does not close its websocket properly and keeps sending messages. In the integration...
I wanted to handle the case when the CP is booted and the first message it sends is not a `BootNotification` request. So the procedure from the CSMS side should...
Good morning, I've been sucessfully implementing an ocpp-backend in v2.0.1 and I also need v2.0. But it seems that datatypes.py and enums.py files are missing in v2.0. Is this to...