IRremote

IRremote.h

Committer:
leejong87
Date:
2013-12-31
Revision:
4:10a04fa41876
Parent:
0:fe20e27c6295

File content as of revision 4:10a04fa41876:

#ifndef MBED_IRremote_H
#define MBED_IRremote_H
 
#include "mbed.h"
 
class IRremote {
public:
    IRremote(PinName pin);
    char read(int ir_i);
    char readclear(int ir_i);
    void clear();
    
private:
    InterruptIn _pin;
    Ticker IR_timer;
};
 
#endif