VictronVEDirectArduino
VictronVEDirectArduino copied to clipboard
Additional options for MPTT charge controller
I tried to create a branch so I could push this directly. If you want to add it these are confirmed to pull the additional values from an MPPT charger.
enum VE_DIRECT_DATA {
VE_DUMP = 0,
VE_SOC,
VE_VOLTAGE,
VE_POWER,
VE_CURRENT,
VE_ALARM,
VE_VPV,
VE_PPV,
VE_LAST_LABEL,
};
const char ved_labels[VE_LAST_LABEL][VED_MAX_LEBEL_SIZE] PROGMEM = {
"Dump", // a string that won't match any label
"SOC",
"V",
"P",
"I",
"VPV",
"PPV",
"Alarm",
};
Hey @teamkde i dont see your branch or pull request. Im thinking of doing the same thing for my smartsolar values
@teamkde see this repo for complete mppt use https://github.com/RickardPettersson/VictronVEDirectArduino
I ended up creating my own code which works wonders for me https://github.com/metrafonic/arduino-vedirect
I ended up creating my own code which works wonders for me https://github.com/metrafonic/arduino-vedirect
Does this work with SoftwareSerial or only hardware?
@davidrfloydii I will update it to support softwareserial