From 52f7bd18446834360e0d6953ba2bdf48b65638db Mon Sep 17 00:00:00 2001 From: richonguzman Date: Sun, 11 Jun 2023 19:55:43 -0400 Subject: [PATCH] final ota test --- src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.cpp b/src/utils.cpp index a087199..702d076 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -143,7 +143,7 @@ void typeOfPacket(String packet) { void startOTAServer() { if (stationMode==1 || stationMode==2) { server.on("/", HTTP_GET, [](AsyncWebServerRequest *request) { - request->send(200, "text/plain", "Hi, this is your (Richonguzman/CD2RXU) LoRa iGate.\nIf you want tu update your firmware please go to: http://" + getLocalIP().substring(getLocalIP().indexOf(":")+2) + "/update"); + request->send(200, "text/plain", "Hi " + Config.callsign + ", this is your (Richonguzman/CD2RXU) LoRa iGate.\n\nTo update your firmware or filesystem go to: http://" + getLocalIP().substring(getLocalIP().indexOf(":")+2) + "/update\n\n\n73!"); }); AsyncElegantOTA.begin(&server); server.begin();