Fix pre-commit error

This commit is contained in:
Daniel 2023-11-21 20:18:59 +02:00
parent 3545c3d8ba
commit e89717f167

View file

@ -242,7 +242,8 @@ void update_values_leaf_battery() { /* This function maps all the values fetched
}
//Check if SOC% is plausible
if (battery_voltage > (ABSOLUTE_MAX_VOLTAGE - 100)) { // When pack voltage is close to max, and SOC% is still low, raise FAULT
if (battery_voltage >
(ABSOLUTE_MAX_VOLTAGE - 100)) { // When pack voltage is close to max, and SOC% is still low, raise FAULT
if (LB_SOC < 650) {
bms_status = FAULT;
Serial.println("ERROR: SOC% reported by battery not plausible. Restart battery!");