Emdev project smart remote E2

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

Fork of SmartRemote by Sam Kirsch

Committer:
emdeve2
Date:
Mon Jan 30 10:55:15 2017 +0000
Revision:
17:933f7c0c69c0
Parent:
4:36e0aa194b45
Smart-remote E2

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