We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d88236a commit 0e7a434Copy full SHA for 0e7a434
libraries/WiFi/examples/WifiWebServer/WifiWebServer.ino
@@ -1,5 +1,5 @@
1
/*
2
- Web Server
+ WiFi Web Server
3
4
A simple web server that shows the value of the analog input pins.
5
using a WiFi shield.
@@ -15,7 +15,9 @@
15
by dlf (Metodo2 srl)
16
modified 31 May 2012
17
by Tom Igoe
18
+
19
*/
20
21
#include <SPI.h>
22
#include <WiFi.h>
23
@@ -76,7 +78,7 @@ void loop() {
76
78
// send a standard http response header
77
79
client.println("HTTP/1.1 200 OK");
80
client.println("Content-Type: text/html");
- client.println("Connnection: close");
81
+ client.println("Connection: close");
82
client.println();
83
client.println("<!DOCTYPE HTML>");
84
client.println("<html>");
0 commit comments