For Wifi personal security mode. It is always cumbersome to change the password whenever there is a breach in the network. and even more annoying is to distribute the passwords to the clients/guests. WifiFlexManager is a project that can change the password (with a random predefined length string) whenever the admin sends a specific IR code (through android app) and can retrieve the current password or the connected users (Through Bluetooth screen). So as a client who wants to get connected to the router, you only need to point your phone's IR towards the mbed and press a button, and the current password will be shown at your phone's screen.

Dependencies:   EthernetInterface HTTPServer RemoteIR SDFileSystem mbed-rpc mbed-rtos mbed

Committer:
mskamoona
Date:
Mon May 04 03:41:46 2015 +0000
Revision:
5:e4c3ce3f66a2
Parent:
0:c08dc0b2963b
IR, Bluetooth, Telnet are working!

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mskamoona 0:c08dc0b2963b 1 #include "mbed.h"
mskamoona 0:c08dc0b2963b 2
mskamoona 0:c08dc0b2963b 3 void db_get_tuple(FILE *fread, char *id_str, char *name_str, char *code_str, char *bitlength, char *format);
mskamoona 0:c08dc0b2963b 4 void db_print_all(FILE *fread);
mskamoona 0:c08dc0b2963b 5 void db_insert_tuple(char *new_name, char *new_code, char *bitlength, char *format);
mskamoona 0:c08dc0b2963b 6 void db_find_tuple(int id, char *name, char *code, char *bitlength, char *format);