FixedSpacingForSolarPumpTime

fixed spacing
This commit is contained in:
Vuego123
2019-06-27 23:26:02 +02:00
parent 55ff267828
commit 712e0b3e8c

View File

@@ -461,7 +461,7 @@ void showInfo() {
_renderShortValue("Bottom temperature", "C", EMS_SolarModule.bottomTemp);
_renderIntValue("Pump modulation", "%", EMS_SolarModule.pumpModulation);
_renderBoolValue("Pump active", EMS_SolarModule.pump);
myDebug_P(PSTR("Pump working time: %d days %d hours %d minutes"),
myDebug_P(PSTR(" Pump working time: %d days %d hours %d minutes"),
EMS_SolarModule.pumpWorkMin / 1440,
(EMS_SolarModule.pumpWorkMin % 1440) / 60,
EMS_SolarModule.pumpWorkMin % 60);