A smart remote using the sparkfun IR transmitter and receiver. The program also uses a web server to show the buttons on a mobile platform.

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

Fork of SmartRemoteClean by Sarvagya Vaish

Revision:
10:da52ff0b93c0
Parent:
3:a3b4d032f48f
Child:
14:2b63c0f795cb
--- a/db.h	Tue Dec 03 03:49:12 2013 +0000
+++ b/db.h	Tue Dec 03 04:04:04 2013 +0000
@@ -1,6 +1,6 @@
 #include "mbed.h"
 
-void db_get_tuple(FILE *fread, char *id_str, char *name_str, char *code_str);
+void db_get_tuple(FILE *fread, char *id_str, char *name_str, char *code_str, char *bitlength, char *format);
 void db_print_all(FILE *fread);
-void db_insert_tuple(char *new_name, char *new_code);
-void db_find_tuple(FILE *fread, int id, char *name, char *code);
+void db_insert_tuple(char *new_name, char *new_code, char *bitlength, char *format);
+void db_find_tuple(FILE *fread, int id, char *name, char *code, char *bitlength, char *format);