From 2cae0d96d3b1e7846c5a5222de1758de8b29a2a5 Mon Sep 17 00:00:00 2001 From: Alan <60433566+alanesq@users.noreply.github.com> Date: Tue, 18 Jan 2022 10:16:04 +0000 Subject: [PATCH] Update esp32cam-demo.ino --- esp32cam-demo.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esp32cam-demo.ino b/esp32cam-demo.ino index 2fea915..923d27f 100644 --- a/esp32cam-demo.ino +++ b/esp32cam-demo.ino @@ -788,8 +788,8 @@ void handleRoot() { else client.write("

No SD Card detected

\n"); // io pin details - if (digitalRead(iopinA) == LOW) client.write("

Output Pin 13 is Low

\n"); - else client.write("

Output Pin 13 is High

\n"); + if (digitalRead(iopinA) == LOW) client.write("

Input Pin 13 is Low

\n"); + else client.write("

Input Pin 13 is High

\n"); if (digitalRead(iopinB) == LOW) client.write("

Output Pin 12 is Low

\n"); else client.write("

Output Pin 12 is High

\n");