Skip to content

Commit 2b6169e

Browse files
committed
Fixed variable error in WifiTwitterClient
1 parent cd0c0f2 commit 2b6169e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WiFi/examples/WifiTwitterClient/WifiTwitterClient.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Circuit:
1414
* WiFi shield attached to pins 10, 11, 12, 13
1515
16-
created 4 Mar 2012
16+
created 8 Mar 2012
1717
by Tom Igoe
1818
1919
This code is in the public domain.
@@ -25,7 +25,7 @@
2525
char ssid[] = "YourNetwork"; // your network SSID (name)
2626
char pass[] = "password"; // your network password (use for WPA, or use as key for WEP)
2727
int keyIndex = 0; // your network key Index number (needed only for WEP)
28-
28+
int status = WL_IDLE_STATUS; // status of the wifi connection
2929

3030
// initialize the library instance:
3131
WiFiClient client;

0 commit comments

Comments
 (0)