From b1da64502762623f3d84a37a0772bc516ad817b6 Mon Sep 17 00:00:00 2001 From: Marcus Date: Sat, 15 Jun 2024 03:47:18 +0200 Subject: [PATCH] firmware wip - wipe eeprom message --- Arduino/CanGrow/CanGrow_Version.h | 2 +- Arduino/CanGrow/CanGrow_WebFunctions.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Arduino/CanGrow/CanGrow_Version.h b/Arduino/CanGrow/CanGrow_Version.h index 6d4a0cb..e01a88d 100644 --- a/Arduino/CanGrow/CanGrow_Version.h +++ b/Arduino/CanGrow/CanGrow_Version.h @@ -1,5 +1,5 @@ /* CanGrow_Version.h gets generated from cangrow.sh */ const char* CanGrowVer = "0.1-dev"; -const char* CanGrowBuild = "52a55c8"; +const char* CanGrowBuild = "728489a"; diff --git a/Arduino/CanGrow/CanGrow_WebFunctions.h b/Arduino/CanGrow/CanGrow_WebFunctions.h index b5024fc..7fa3808 100644 --- a/Arduino/CanGrow/CanGrow_WebFunctions.h +++ b/Arduino/CanGrow/CanGrow_WebFunctions.h @@ -182,7 +182,7 @@ void SysWipe() { String body = returnHTMLheader(); // TODO only debug and development solution, remove this later if(webserver.hasArg("confirmed")) { - body += "

!! Wiping CanGrow's EEPROM !!


Device will restart in a few seconds.
"; + body += "

!! Wiping CanGrow's EEPROM !!


Device will restart in a few seconds.
After restart a new WiFi 'CanGrow-unconfigured' will be created. To access the WebUI visit http://192.168.4.20
"; body += FPSTR(HTMLfooter); webserver.send(200, "text/html", body); wipeEEPROM();