From bd4a9a68166937728865e2e37c81c59125df0ffe Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Fri, 9 Mar 2012 21:44:35 -0500 Subject: [PATCH] Updated Google numeric address in WifiWebClient --- WiFi/examples/WifiWebClient/WifiWebClient.ino | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/WiFi/examples/WifiWebClient/WifiWebClient.ino b/WiFi/examples/WifiWebClient/WifiWebClient.ino index 7f9297a9d..913442496 100644 --- a/WiFi/examples/WifiWebClient/WifiWebClient.ino +++ b/WiFi/examples/WifiWebClient/WifiWebClient.ino @@ -26,10 +26,12 @@ char ssid[] = "YourNetwork"; // your network SSID (name) char pass[] = "password"; // your network password (use for WPA, or use as key for WEP) + int keyIndex = 0; // your network key Index number (needed only for WEP) int status = WL_IDLE_STATUS; -IPAddress server(173,194,43,18); // Google +IPAddress server(173,194,73,105); // Google +//char server[] = "www.google.com"; // Initialize the Ethernet client library // with the IP address and port of the server