Matthias Akstaller
Matthias Akstaller
Hi, I already started working on it. There should be three different modes for the RFID panel by now: - RFID activated and working - RFID activated by build flag,...
Hi, the RemoteStartTransaction checks the charge plug before it tries to start a transaction. There are two possibilities: - An EV is plugged: the transaction starts immediately - No EV...
You give the library a callback function so that the library can use it to query if a connector is plugged. See this example: ```cpp //global definition bool connectorPlugged =...
Hi, The "core" OCPP library doesn't care about the underlying networking technology, as long as it gets an appropriate access to the networking stack. To make getting started with this...
Hi, thank you for the report. This error wasn't easy to reproduce, but I found a condition where it occurs and fixed it. Please check out this branch: [fix-87](https://github.com/matth-x/ArduinoOcpp/tree/fix-87)
Hi, thank you for the feedback! The TLS library complains that the credentials are not right yet. Can you check if: - The time on the ESP is set -...
Hi, sorry for the late response. You can customize the DataTransfer by adding your own message class which implements the desired behavior. #### 1. Define a new subclass of `OcppMessage`:...
Hi @Aylaa1, You need to set the MeterValueInput only once. The callback will be valid for the entire runtime of the library. When the MeterValueInput is set, then the library...
The "location" parameter should point to a HTTP URL, something starting with "http://...". Then, OpenEVSE will try to download the file at that location over its network connection.
I had the same issue but assumed that it was due to my local PIO installation (also Windows). As a workaround, I added the following line into platformio.ini (e.g. line...