changed charging heuristic voltage threshold

This commit is contained in:
Mikkeli Matlock
2026-02-16 15:34:26 +09:00
parent 4e2c714e1f
commit b0a5e05e4a

View File

@@ -50,5 +50,5 @@ uint8_t Adc_GetBatteryLevel() {
} }
bool Adc_IsCharging() { bool Adc_IsCharging() {
return Adc_GetBatteryVoltage() > 4.10f; return Adc_GetBatteryVoltage() > 4.08f;
} }