diff --git a/WiFi/examples/WebClientWPA/WebClientWPA.ino b/WiFi/examples/WebClientWPA/WebClientWPA.ino index 4bfca16b8..519ea0d67 100644 --- a/WiFi/examples/WebClientWPA/WebClientWPA.ino +++ b/WiFi/examples/WebClientWPA/WebClientWPA.ino @@ -10,7 +10,7 @@ created 13 July 2010 by dlf (Metodo2 srl) - modified 15 Sep 2011 + modified 10 Jan 2012 by Tom Igoe */ @@ -18,8 +18,8 @@ #include #include -char ssid[] = "lamaison"; // your network SSID (name) -char pass[] = "tenantaccess247"; // your network password +char ssid[] = "networkName"; // your network SSID (name) +char pass[] = "yourPassword"; // your network password int status = WL_IDLE_STATUS; IPAddress server(74,125,115,105); // Google diff --git a/WiFi/examples/WebServerWPA/WebServerWPA.ino b/WiFi/examples/WebServerWPA/WebServerWPA.ino index 6dd3138d8..f89ba8445 100644 --- a/WiFi/examples/WebServerWPA/WebServerWPA.ino +++ b/WiFi/examples/WebServerWPA/WebServerWPA.ino @@ -10,7 +10,7 @@ created 13 July 2010 by dlf (Metodo2 srl) - modified 15 Sep 2011 + modified 10 Jan 2012 by Tom Igoe */ @@ -18,8 +18,8 @@ #include #include -char ssid[] = "lamaison"; // your network SSID (name) -char pass[] = "tenantaccess247"; // your network password +char ssid[] = "networkName"; // your network SSID (name) +char pass[] = "yourPassword"; // your network password int status = WL_IDLE_STATUS; WiFiServer server(80);