You can change the battery charge current on the cerbo gx or the vrm, the only way I found was using the ve configure
I managed to use node red to create a slider to enable me to set any charge current. I also use the same node red to enable me to use the relay toggles within the VRM to change the charge current to different fixed numbers for any time i dont want to login to node red dashboard to access my slider. If your interested to know more let me know and ill post how i did it.
It’s interesting, I’ll be looking forward to your post as you did.
Here is what i did:
- Esnure MQTT broker is turned on in Cerbo GX
- Ensure you have node-red image loaded on your cerbo gx ie large image os
- Create a slider node and set the min and max rage as per your Max Charge rate already set using the configuration file from VE Config.
- Add a function node after the slider to format the slider msg.payload to send “value: msg.payload”
- Add an MQTT out node to receive the formatted msg.payload to the correct topic ie for me it was W/put your VRM portal ID here/vebus/276/Dc/0/MaxChargeCurrent (note the W at the begining of the topic and not the usual N. W is needed for write permissions N give read only.
- Deploy and Test
1 Like
Thank you