From d4e565665622c366a7d0d294c2b4fc29783cdbe3 Mon Sep 17 00:00:00 2001 From: DeltaLima <dontsendmespam@deltalima.org> Date: Wed, 11 Dec 2024 23:38:25 +0100 Subject: [PATCH] firmware - new emoji when maintenance dimm is on --- Arduino/CanGrow/CanGrow_WebFunctions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Arduino/CanGrow/CanGrow_WebFunctions.h b/Arduino/CanGrow/CanGrow_WebFunctions.h index 5ab8b07..c725923 100644 --- a/Arduino/CanGrow/CanGrow_WebFunctions.h +++ b/Arduino/CanGrow/CanGrow_WebFunctions.h @@ -78,7 +78,7 @@ String returnHTMLheader(String MenuEntry = "") { // status icons and info if(MaintenanceMode == true) { // status icons - header += " | ⏸️ "; + header += " | ⛅ "; header += MaintenanceDuration - ((millis() - MaintenanceStarted) / 1000); header += "s"; }