We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5df7d6 commit 17f6ff2Copy full SHA for 17f6ff2
ardupilot_methodic_configurator/battery_cell_voltages.py
@@ -12,7 +12,7 @@
12
13
battery_cell_voltages = {
14
"LiIon": {
15
- "absolute_max": 4.1,
+ "absolute_max": 4.2,
16
"absolute_min": 2.5,
17
"recommended_max": 4.1,
18
"recommended_low": 3.1,
tests/test_battery_cell_voltages.py
@@ -23,7 +23,7 @@ def test_chemistries(self) -> None:
23
assert chemistries == expected_chemistries
24
25
def test_limit_max_voltage(self) -> None:
26
- assert BatteryCell.limit_max_voltage("LiIon") == 4.1
+ assert BatteryCell.limit_max_voltage("LiIon") == 4.2
27
assert BatteryCell.limit_max_voltage("LipoHV") == 4.35
28
assert BatteryCell.limit_max_voltage("NonExistentChemistry") == 4.45
29
0 commit comments