VictronVEDirectArduino icon indicating copy to clipboard operation
VictronVEDirectArduino copied to clipboard

Additional options for MPTT charge controller

Open teamkde opened this issue 2 years ago • 5 comments

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",
};

teamkde avatar Feb 13 '23 15:02 teamkde

Hey @teamkde i dont see your branch or pull request. Im thinking of doing the same thing for my smartsolar values

metrafonic avatar Feb 19 '23 22:02 metrafonic

@teamkde see this repo for complete mppt use https://github.com/RickardPettersson/VictronVEDirectArduino

metrafonic avatar Feb 19 '23 23:02 metrafonic

I ended up creating my own code which works wonders for me https://github.com/metrafonic/arduino-vedirect

metrafonic avatar Feb 27 '23 15:02 metrafonic

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 avatar Mar 02 '23 16:03 davidrfloydii

@davidrfloydii I will update it to support softwareserial

metrafonic avatar Mar 02 '23 18:03 metrafonic