MicroOcpp
MicroOcpp copied to clipboard
Two connections
How can you initialize two connections on different ports, something like this: #define OCPP_HOST "192.168.1.72" #define OCPP_PORT 9000 #define OCPP_HOST2 "192.168.1.72" #define OCPP_PORT2 8000 #define OCPP_URL "CP_2"
OCPP_initialize(OCPP_HOST, OCPP_PORT, OCPP_URL);
OCPP_initialize(OCPP_HOST2, OCPP_PORT2, OCPP_URL);
Unfortunately, that's not possible at the moment. I'm working on it though as I clearly see interesting use cases of it.
What are you trying to achieve? Maybe there is a workaround which works for you.
Closing this due to inactivity