From 712e0b3e8cddca5b14cb30490e0da6e77df21f0a Mon Sep 17 00:00:00 2001 From: Vuego123 Date: Thu, 27 Jun 2019 23:26:02 +0200 Subject: [PATCH] FixedSpacingForSolarPumpTime fixed spacing --- src/ems-esp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ems-esp.cpp b/src/ems-esp.cpp index 1f045485a..427025dfc 100644 --- a/src/ems-esp.cpp +++ b/src/ems-esp.cpp @@ -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);