diff --git a/esp32cam-demo.ino b/esp32cam-demo.ino index ec243c7..3ca1116 100644 --- a/esp32cam-demo.ino +++ b/esp32cam-demo.ino @@ -397,7 +397,7 @@ void handleRoot() { if (debugInfo) Serial.println("Root page requested from: " + String(cip[0]) +"." + String(cip[1]) + "." + String(cip[2]) + "." + String(cip[3])); // html header - client.write(" \n"); // basic html header + client.write(" root \n"); // basic html header client.write("
\n"); // used by the buttons in the html (action = the web page to send it to) // if button1 was pressed @@ -456,7 +456,7 @@ void handleRoot() { // end html - client.write("\n"); + client.write("
\n"); delay(3); client.stop();