Using BLE to control WIFI configuration as SSID and PW.
Dependencies: BLE_API WIFI_API_32kRAM mbed nRF51822
Fork of NNN40_WiFi by
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
main.cpp
- Committer:
- Marcomissyou
- Date:
- 2015-03-03
- Revision:
- 1:f8f52bde7864
- Parent:
- 0:25ffe5869e35
- Child:
- 3:65c5fce3a471
File content as of revision 1:f8f52bde7864:
#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(p19);
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();
}
