Skip to content

Commit 7ce1019

Browse files
author
Tom Igoe
committed
Removed estraneous lines from Web examples
1 parent 78b5e3c commit 7ce1019

File tree

7 files changed

+1
-20
lines changed

7 files changed

+1
-20
lines changed

WiFi/examples/WifiChatServer/WifiChatServer.ino

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ void setup() {
4949
server.begin();
5050
// you're connected now, so print out the status:
5151
printWifiStatus();
52-
// print the Wifi board/shield's IP address:
53-
Serial.print("My IP address: ");
54-
Serial.println(WiFi.localIP());
55-
}
52+
}
5653

5754

5855
void loop() {

WiFi/examples/WifiPachubeClient/WifiPachubeClient.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ void setup() {
5959
}
6060
// you're connected now, so print out the status:
6161
printWifiStatus();
62-
// print the Wifi board/shield's IP address:
63-
Serial.print("My IP address: ");
64-
Serial.println(WiFi.localIP());
6562
}
6663

6764

WiFi/examples/WifiPachubeClientString/WifiPachubeClientString.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ void setup() {
6464
}
6565
// you're connected now, so print out the status:
6666
printWifiStatus();
67-
// print the Wifi board/shield's IP address:
68-
Serial.print("My IP address: ");
69-
Serial.println(WiFi.localIP());
7067
}
7168

7269
void loop() {

WiFi/examples/WifiTwitterClient/WifiTwitterClient.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ void setup() {
6262
}
6363
// you're connected now, so print out the status:
6464
printWifiStatus();
65-
// print the Wifi board/shield's IP address:
66-
Serial.print("My IP address: ");
67-
Serial.println(WiFi.localIP());
6865
connectToServer();
6966
}
7067

WiFi/examples/WifiWebClient/WifiWebClient.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ void setup() {
6262
client.println("Host:www.google.com");
6363
client.println("Connection: close");
6464
client.println();
65-
6665
}
6766
}
6867

WiFi/examples/WifiWebClientRepeating/WifiWebClientRepeating.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ void setup() {
4848
}
4949
// you're connected now, so print out the status:
5050
printWifiStatus();
51-
// print the Wifi board/shield's IP address:
52-
Serial.print("My IP address: ");
53-
Serial.println(WiFi.localIP());
5451
}
5552

5653
void loop() {

WiFi/examples/WifiWebServer/WifiWebServer.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ void setup() {
4343
server.begin();
4444
// you're connected now, so print out the status:
4545
printWifiStatus();
46-
// print the Wifi board/shield's IP address:
47-
Serial.print("My IP address: ");
48-
Serial.println(WiFi.localIP());
4946
}
5047

5148

0 commit comments

Comments
 (0)