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

Committer:
sammacjunkie
Date:
Wed Dec 04 17:44:29 2013 +0000
Revision:
16:2d23297857bc
Parent:
14:2b63c0f795cb
MY HANDS ARE TYPING WORDS!; ; -also we fixed the transmit function from database; -in SupportingFiles folder is the HTML file and its javascript library for the webserver side

Who changed what in which revision?

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