Hello World with a wifly module (RN 131 C/G - RN-XV)

Dependencies:   mbed WiflyInterface

Revision:
5:867d16e948eb
Parent:
4:fd030db1a6f4
--- a/main.cpp	Fri Aug 17 11:31:32 2012 +0000
+++ b/main.cpp	Fri Aug 24 13:52:40 2012 +0000
@@ -9,12 +9,13 @@
 *     - p26 is for the connection status
 *     - "mbed" is the ssid of the network
 *     - "password" is the password
-*     - true means that the security of the network is WPA
+*     - WPA is the security
 */
-WiflyInterface wifly(p9, p10, p25, p26, "mbed", "password", true);
+WiflyInterface wifly(p9, p10, p25, p26, "mbed", "password", WPA);
 
 int main() {
     wifly.init(); // use DHCP
     while (!wifly.connect()); // join the network
     printf("IP Address is %s\n\r", wifly.getIPAddress());
+    wifly.disconnect();
 }
\ No newline at end of file