Matthias Akstaller

Results 129 comments of Matthias Akstaller

Hi @Wert137-dsp, there is no method to read back those values. When I work on firmware and need the connector status somewhere else, I usually store the status in a...

Hi @imanolmc, The relevant point in the code is here: https://github.com/matth-x/MicroOcpp/blob/8b1f0fdbae8785c49453f0b2d54a1a8db2fbe3ed/src/MicroOcpp/Operations/RemoteStartTransaction.cpp#L100 `beginTransaction_authorized` assumes that the given idTag is already successfully authorized. In constrast, `beginTransaction` would try authorizing it again, including...

I believe this is due to a regression bug which has already been resolved. Did you already upgrade to v1.1? Nevertheless, the connector would still report to be Available in...

Hi @Kundanjhakj, There is no systematic approach of making MicroOcpp send all operations one by another. For example, MicroOcpp will send the FirmwareStatusNotification only as part of a firmware update...

You can replace the built-in WebSocket client by your own WebSocket client which you have full control of. Then you can instruct the WebSocket client to route all traffic over...

Hi, I assume you downloaded ArduinoJson v7? Unfortunately, MicroOcpp hasn't been upgraded to support v7 yet. You need to downgrade to v6. Do you think there is a place in...

Hi @meylence, The StopTransaction operation fails and MicroOcpp drops it, so the corresponding data is likely lost. The server reports the error message "Invalid ID Tag" so my first guesses...

Hi @pamukcu09, the best start is `MOCPP_PLATFORM=MOCPP_PLATFORM_UNIX`. Probably you also need to add `MOCPP_CUSTOM_TIMER` which removes the dependency on the `` library. Feedback about further compilation issues is highly appreciated.

Thanks for sharing your results and congrats on the successful build! Would be curious about what's finally necessary for the full port. Can you imagine to add an MOCPP_PLATFORM_STM32 section...

The Mongoose v7 API got a lot cleaner and I appreciate that the Mongoose developers actively refactor their project to keep it easy to use. When I migrated my stuff...