From 97177fe51a44038d41308ad05d990cdd987a86ca Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Tue, 10 Jan 2012 08:46:58 -0500 Subject: [PATCH] Deleted old passwords --- WiFi/examples/WebClientWPA/WebClientWPA.ino | 6 +++--- WiFi/examples/WebServerWPA/WebServerWPA.ino | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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);