Is there an option on the BMS configuration utility to set what voltage to stop charging the battery? If not can I write a script to implement that function?
This is the current script that I have loaded on my BMS:
top:
battery = getvalue(_VOLTS,1)
if (battery < 2220) then 'when 6 cell battery is below 22.2v
setcommand(_DSET,1) 'sets voltage to 5v
wait(1000)
setcommand(_DRES,1)
wait(1000)
else
setcommand(_DRES,1) 'sets voltage to 0v
end if
goto top
Thanks.