From 2b6169e2a23e20d93f6531a053b3f9ba7b75729a Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Thu, 8 Mar 2012 12:10:50 -0500 Subject: [PATCH] Fixed variable error in WifiTwitterClient --- WiFi/examples/WifiTwitterClient/WifiTwitterClient.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WiFi/examples/WifiTwitterClient/WifiTwitterClient.ino b/WiFi/examples/WifiTwitterClient/WifiTwitterClient.ino index 7be583634..e0c2d9f9c 100644 --- a/WiFi/examples/WifiTwitterClient/WifiTwitterClient.ino +++ b/WiFi/examples/WifiTwitterClient/WifiTwitterClient.ino @@ -13,7 +13,7 @@ Circuit: * WiFi shield attached to pins 10, 11, 12, 13 - created 4 Mar 2012 + created 8 Mar 2012 by Tom Igoe This code is in the public domain. @@ -25,7 +25,7 @@ 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; // status of the wifi connection // initialize the library instance: WiFiClient client;