Skip to content

Commit

Permalink
Lower Voltage B warning level
Browse files Browse the repository at this point in the history
  • Loading branch information
Navid200 committed Oct 27, 2024
1 parent 9f769df commit 5cefa3b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ public boolean voltageAWarning() {
}

public boolean voltageBWarning() {
if (shortTxId()) { // G7 only
return voltageB() < (G5BaseService.LOW_BATTERY_WARNING_LEVEL - 25);
if (shortTxId()) {
return voltageB() < (G5BaseService.LOW_BATTERY_WARNING_LEVEL - 60);
}
return voltageB() < (G5BaseService.LOW_BATTERY_WARNING_LEVEL - 10);
};
Expand Down

0 comments on commit 5cefa3b

Please sign in to comment.