Using BLE to control WIFI configuration as SSID and PW.

Dependencies:   BLE_API WIFI_API_32kRAM mbed nRF51822

Fork of NNN40_WiFi by Delta

BLE_WIFIControl enables user to setup Wifi connection via BLE link. Here is iPhone app that teaches you how to use this BLE_WIFIControl example. /media/uploads/Marcomissyou/ios_app_for_wifi_configure.pdf

Revision:
0:25ffe5869e35
Child:
1:f8f52bde7864
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Feb 05 07:55:58 2015 +0000
@@ -0,0 +1,37 @@
+#include "mbed.h"
+#include "WIFIDevice.h"
+
+
+WIFIDevice wifi;
+
+uint8_t ap_ssid[20] = {'H','T','C','S','V','\0'};
+uint8_t ap_pw[11] = {'1','1','1','1','1','1','1','1','\0'};
+
+const char* PC_SERVER_ADDRESS = "192.168.1.234";
+uint16_t PC_PORT = 5222;
+DigitalOut SW(SWIO);
+
+int main(void)
+{
+    EthernetInterface eth;
+    eth.init(); //Use DHCP
+    SW = 1;
+    wifi.setNetwork(ap_ssid, ap_pw, 0); // set given SSID and PW as the highest priority  
+    
+    eth.connect(40000);
+    DPRINT(N_ERR, "IP Address: %s\n",eth.getIPAddress());       
+    DPRINT(N_ERR, "MAC Address: %s\n",eth.getMACAddress());  
+    
+  
+    TCPSocketConnection socket;
+    DPRINT(N_ERR, "is_connected: %i\n",socket.is_connected());       
+    socket.connect(PC_SERVER_ADDRESS,PC_PORT);
+    DPRINT(N_ERR, "is_connected: %i\n",socket.is_connected());    
+    char msg[] = "Hello World";
+    socket.send(msg, sizeof(msg));
+
+    socket.close();
+    eth.disconnect();
+    wifi.sleep();
+}
+