From 92f193d66dc01257fbcb59f25242ea6f8d5aea47 Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Sun, 25 Jul 2010 16:28:30 +0000 Subject: [PATCH] Added comments to WebClient example --- libraries/Ethernet/examples/WebClient/WebClient.pde | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/libraries/Ethernet/examples/WebClient/WebClient.pde b/libraries/Ethernet/examples/WebClient/WebClient.pde index 9eba58ed2..3177b867a 100644 --- a/libraries/Ethernet/examples/WebClient/WebClient.pde +++ b/libraries/Ethernet/examples/WebClient/WebClient.pde @@ -1,5 +1,5 @@ /* - Web client + Web client This sketch connects to a website (http://www.google.com) using an Arduino Wiznet Ethernet shield. @@ -15,12 +15,9 @@ // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network: -byte mac[] = { - 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; -byte ip[] = { - 192,168,1,177 }; -byte server[] = { - 173,194,33,104 }; // Google +byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +byte ip[] = { 192,168,1,177 }; +byte server[] = { 173,194,33,104 }; // Google // Initialize the Ethernet client library // with the IP address and port of the server