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 ac84329 commit abda3d9Copy full SHA for abda3d9
examples/DhcpChatServer/DhcpChatServer.ino
@@ -64,16 +64,10 @@ void setup() {
64
}
65
// print your local IP address:
66
Serial.print("My IP address: ");
67
- ip = Ethernet.localIP();
68
- for (byte thisByte = 0; thisByte < 4; thisByte++) {
69
- // print the value of each byte of the IP address:
70
- Serial.print(ip[thisByte], DEC);
71
- Serial.print(".");
72
- }
73
- Serial.println();
+ Serial.println(Ethernet.localIP());
+
74
// start listening for clients
75
server.begin();
76
-
77
78
79
void loop() {
0 commit comments