diff --git a/WifiControlSensor/WebServer.ino b/WifiControlSensor/WebServer.ino
index 1068291..c8ae975 100644
--- a/WifiControlSensor/WebServer.ino
+++ b/WifiControlSensor/WebServer.ino
@@ -1,17 +1,26 @@
void WebHandleRoot() {
server.send(200, "text/html",
"
"
- "You are connected on " + String(hostName) +"
"
- "Current temperature " + String(temp, 2) + "C
"
- "Current pressure " + String(pressure, 2) + "mB
"
+ "You are connected to " + String(hostName) + "
"
+ ""
+ ""
+ ""
);
}
@@ -30,16 +39,16 @@ void WebHandleSetup() {
server.send(200, "text/html", "");
@@ -81,7 +90,8 @@ void WebHandleOTA() {
Serial.println("Boot mode Set to OTA");
EepromSaveBootMode(BOOTMODE_OTA);
server.send(200, "text/html", "OTA Mode set
"
- "You can reboot now");
+ "You can reboot now"
+ "Reboot
");
}
void WebHandleNotFound() {