demo of the murata wifi chip. This demo tries to connect to an open wifi access point and prints out all the relevant information about the connection. It then scans all wifi access points nearby and reports their information.

Dependencies:   SNICInterface mbed-rtos mbed

Fork of SNIC-xively-jumpstart-demo by muRata

Files at this revision

API Documentation at this revision

Comitter:
kishino
Date:
Fri Sep 12 00:28:16 2014 +0000
Parent:
23:39cf9f03b076
Child:
25:39099b3b173f
Commit message:
Default value of SSID and PassPhrase in source code was changed.

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Tue Jul 15 10:13:57 2014 +0000
+++ b/main.cpp	Fri Sep 12 00:28:16 2014 +0000
@@ -44,10 +44,10 @@
 
 #include "logo.h"
 
-#define DEMO_AP_SSID                  "E2N1-Lab-Buffalo-D302"
+#define DEMO_AP_SSID                  "AP_SSID"
 #define DEMO_AP_SECURITY_TYPE         e_SEC_WPA2_AES
-#define DEMO_AP_SECUTIRY_KEY          "12345678"
-#define DEMO_AP_SECUTIRY_KEY_LEN      8
+#define DEMO_AP_SECUTIRY_KEY          "WPA2_PASSPHRASE"
+#define DEMO_AP_SECUTIRY_KEY_LEN      15
 
 /** Wi-Fi SNIC UART Interface*/
 #if defined(TARGET_LPC1768)