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() {
63
63
// send a standard http response header
64
64
client.println (" HTTP/1.1 200 OK" );
65
65
client.println (" Content-Type: text/html" );
66
- client.println (" Connnection : close" );
66
+ client.println (" Connection : close" );
67
67
client.println ();
68
68
client.println (" <!DOCTYPE HTML>" );
69
69
client.println (" <html>" );
Original file line number Diff line number Diff line change 1
1
/*
2
- Web Server
2
+ WiFi Web Server
3
3
4
4
A simple web server that shows the value of the analog input pins.
5
5
using a WiFi shield.
15
15
by dlf (Metodo2 srl)
16
16
modified 31 May 2012
17
17
by Tom Igoe
18
+
18
19
*/
20
+
19
21
#include < SPI.h>
20
22
#include < WiFi.h>
21
23
@@ -76,7 +78,7 @@ void loop() {
76
78
// send a standard http response header
77
79
client.println (" HTTP/1.1 200 OK" );
78
80
client.println (" Content-Type: text/html" );
79
- client.println (" Connnection : close" );
81
+ client.println (" Connection : close" );
80
82
client.println ();
81
83
client.println (" <!DOCTYPE HTML>" );
82
84
client.println (" <html>" );
You can’t perform that action at this time.
0 commit comments