Skip to content

JK BMS cell voltage difference alarm #1050

Answered by mr-manuel
squowse asked this question in Q&A
Discussion options

You must be logged in to vote

It's definded in the driver. You can change it manually:

# trigger cell imbalance warning when delta is to great
if st["cell_info"]["delta_cell_voltage"] > min(
st["settings"]["cell_ovp"] * 0.05, 0.200
):
self.protection.cell_imbalance = 2
elif st["cell_info"]["delta_cell_voltage"] > min(
st["settings"]["cell_ovp"] * 0.03, 0.120
):
self.protection.cell_imbalance = 1
else:
self.protection.cell_imbalance = 0

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@squowse
Comment options

Answer selected by squowse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants