Before v1.5 we our 1watt solar panels were working great. When we updated, they stopped charging and the charge light just flashes fast.
We added config settings (not so familiar with these) to fix the solar charging, but now power from the usb port and pin, won’t charge the battery. What did I do wrong?
SystemPowerConfiguration conf;
PMIC pmic;
void setup_power_mode() {
conf.powerSourceMaxCurrent(900)
.powerSourceMinVoltage(5080)
.batteryChargeCurrent(1024)
.batteryChargeVoltage(4208)
.feature(SystemPowerFeature::PMIC_DETECTION) //Tried without this and the next line and I get the redlight fault
.feature(SystemPowerFeature::USE_VIN_SETTINGS_WITH_USB_HOST) ;
System.setPowerConfiguration(conf);
}
void setup(){
setup_power_mode();
A little upset, the update should not have messed with the default, previous working settings!