1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Removed estraneous lines from Web examples

This commit is contained in:
Tom Igoe 2012-04-23 11:33:42 -04:00
parent 78b5e3cba5
commit 7ce1019dd0
7 changed files with 1 additions and 20 deletions

View File

@ -49,10 +49,7 @@ void setup() {
server.begin();
// you're connected now, so print out the status:
printWifiStatus();
// print the Wifi board/shield's IP address:
Serial.print("My IP address: ");
Serial.println(WiFi.localIP());
}
}
void loop() {

View File

@ -59,9 +59,6 @@ void setup() {
}
// you're connected now, so print out the status:
printWifiStatus();
// print the Wifi board/shield's IP address:
Serial.print("My IP address: ");
Serial.println(WiFi.localIP());
}

View File

@ -64,9 +64,6 @@ void setup() {
}
// you're connected now, so print out the status:
printWifiStatus();
// print the Wifi board/shield's IP address:
Serial.print("My IP address: ");
Serial.println(WiFi.localIP());
}
void loop() {

View File

@ -62,9 +62,6 @@ void setup() {
}
// you're connected now, so print out the status:
printWifiStatus();
// print the Wifi board/shield's IP address:
Serial.print("My IP address: ");
Serial.println(WiFi.localIP());
connectToServer();
}

View File

@ -62,7 +62,6 @@ void setup() {
client.println("Host:www.google.com");
client.println("Connection: close");
client.println();
}
}

View File

@ -48,9 +48,6 @@ void setup() {
}
// you're connected now, so print out the status:
printWifiStatus();
// print the Wifi board/shield's IP address:
Serial.print("My IP address: ");
Serial.println(WiFi.localIP());
}
void loop() {

View File

@ -43,9 +43,6 @@ void setup() {
server.begin();
// you're connected now, so print out the status:
printWifiStatus();
// print the Wifi board/shield's IP address:
Serial.print("My IP address: ");
Serial.println(WiFi.localIP());
}