fixed charging heuristic threshold

This commit is contained in:
Mikkeli Matlock
2026-02-16 16:17:26 +09:00
parent b0a5e05e4a
commit 8ffe8cdffb

View File

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