From f02c8c560c9b46f4e162d2e3ac7438eb94a8295c Mon Sep 17 00:00:00 2001 From: Alan <60433566+alanesq@users.noreply.github.com> Date: Sun, 27 Sep 2020 15:14:03 +0100 Subject: [PATCH] Add files via upload --- esp32cam-demo.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();