blah

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

Fork of HTTPServerHelloWorld by Donatien Garnier

Committer:
sammacjunkie
Date:
Wed Dec 04 17:44:29 2013 +0000
Revision:
16:2d23297857bc
Parent:
4:36e0aa194b45
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
sammacjunkie 4:36e0aa194b45 1 //PROTOTYPES
sammacjunkie 4:36e0aa194b45 2 #include "mbed.h"
sammacjunkie 4:36e0aa194b45 3 #include "ReceiverIR.h"
sammacjunkie 4:36e0aa194b45 4 #include "TransmitterIR.h"
sammacjunkie 4:36e0aa194b45 5
sammacjunkie 4:36e0aa194b45 6 int receive(RemoteIR::Format *format, uint8_t *buf, int bufsiz, int timeout = 100);
sammacjunkie 4:36e0aa194b45 7 int transmit(RemoteIR::Format format, uint8_t *buf, int bitlength, int timeout = 100);
sammacjunkie 4:36e0aa194b45 8 void display_status(char *status, int bitlength);
sammacjunkie 4:36e0aa194b45 9 void display_format(RemoteIR::Format format);
sammacjunkie 4:36e0aa194b45 10 void display_data(uint8_t *buf, int bitlength);