Rename battery temperature log to gauge temperature

Signed-off-by: Niel Nielsen <nieldk@gmail.com>
This commit is contained in:
Niel Nielsen
2026-08-25 12:43:53 +02:00
committed by Philippe Teuwen
parent ed06150edc
commit 8d6cccd4ca
+1 -1
View File
@@ -242,7 +242,7 @@ static void print_pm5_battery_status(void) {
(cur > 5) ? _GREEN_("(charging)") :
(cur < -5) ? _YELLOW_("(discharging)") : "(idle)");
Dbprintf(" Remaining capacity.. %u mAh", rem);
Dbprintf(" Battery temp........ %d.%d C", tempC10 / 10, tabs % 10);
Dbprintf(" Temp (gauge)........ %d.%d C", tempC10 / 10, tabs % 10);
} else {
Dbprintf(" Fuel gauge.......... " _YELLOW_("not responding") " (BQ27427 absent or I2C down)");
}