File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Ethernet/examples/WebServer
WiFi/examples/WifiWebServer Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ void loop() {
6363 // send a standard http response header
6464 client.println (" HTTP/1.1 200 OK" );
6565 client.println (" Content-Type: text/html" );
66- client.println (" Connnection : close" );
66+ client.println (" Connection : close" );
6767 client.println ();
6868 client.println (" <!DOCTYPE HTML>" );
6969 client.println (" <html>" );
Original file line number Diff line number Diff line change 11/*
2- Web Server
2+ WiFi Web Server
33
44 A simple web server that shows the value of the analog input pins.
55 using a WiFi shield.
1515 by dlf (Metodo2 srl)
1616 modified 31 May 2012
1717 by Tom Igoe
18+
1819 */
20+
1921#include < SPI.h>
2022#include < WiFi.h>
2123
@@ -76,7 +78,7 @@ void loop() {
7678 // send a standard http response header
7779 client.println (" HTTP/1.1 200 OK" );
7880 client.println (" Content-Type: text/html" );
79- client.println (" Connnection : close" );
81+ client.println (" Connection : close" );
8082 client.println ();
8183 client.println (" <!DOCTYPE HTML>" );
8284 client.println (" <html>" );
You can’t perform that action at this time.
0 commit comments