From b3388fbd450cceeab1d24130c5ef1f392b5062fa Mon Sep 17 00:00:00 2001 From: dj2ls Date: Sat, 27 Jun 2026 16:40:58 +0200 Subject: [PATCH] small cleanup --- src/config/UserConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/UserConfig.cpp b/src/config/UserConfig.cpp index 09601a8..285d4e5 100644 --- a/src/config/UserConfig.cpp +++ b/src/config/UserConfig.cpp @@ -109,7 +109,7 @@ bool UserConfig::parseJson(const String& json) { // battery settings _settings.batteryDisplay = doc["batt_display"] | 0; _settings.batteryModel = doc["batt_model"] | 0; - _settings.chargeThresholdV = doc["charge_thresh_v"] | 4.1f; + _settings.chargeThresholdV = doc["charge_thresh_v"] | 4.0f; _settings.fullBatteryV = doc["full_battery_v"] | 3.8f; _settings.gpsTimeEnabled = doc["gps_time"] | true;