A Real Time Clock program using the PCF8583_rtc library with IRremote control. The output is to my 4 digit Nixie display which uses a simple I2c BCD interface

Dependencies:   PCF8583_rtc mbed

IRremote.h

Committer:
dennyem
Date:
2014-02-25
Revision:
3:07c00c82338c
Parent:
2:4184f92440a1

File content as of revision 3:07c00c82338c:

//#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