Matthias Akstaller

Results 136 comments of Matthias Akstaller

One possibility is to read the OCPP ChargePointStatus and check if it is in state Finished: https://github.com/matth-x/MicroOcpp/blob/af66b0a5ca2ec2eee2316993eb22f7e2c0d26a6d/src/MicroOcpp.h#L251 ```cpp if (getChargePointStatus() == ChargePointStatus_Finished) { // The transaction has stopped, but the...

Hi @luca-eidos, currently I have no plans to implement it, but would be happy about a PR! Some time ago I took a deeper look and it didn't seem complicated...

Some information on how to get started with writing a GSM integration can be found here: https://github.com/matth-x/MicroOcpp/issues/90#issuecomment-1247181869 My advise is to break this project down a little and focus on...

If the modem already provides you with WebSocket connectivity, it's even better. The central concept of the OCPP lib for integrating external WebSocket clients is the [Connection](https://github.com/matth-x/MicroOcpp/blob/master/src/MicroOcpp/Core/Connection.h) interface. A Connection...

Hi @GanesanGuru, Yes, I must admit that the documentation of this open source project is by far not as extensive as it should be. But there is some material. A...

Hi @GanesanGuru, The timer should return the milliseconds. Sometimes the host system timers have a different resolution, for example 10ms, or even 1µs. A conversion to milliseconds is necessary then....