smart remote team 2

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

Committer:
TheSkyBreaker
Date:
Thu Jan 24 14:30:39 2019 +0000
Revision:
17:654aff3d811a
Parent:
4:36e0aa194b45
smart remote team 2;

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);