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

Committer:
dennyem
Date:
Tue Feb 25 23:42:26 2014 +0000
Revision:
3:07c00c82338c
Parent:
2:4184f92440a1
Added configureControlReg() to main()

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dennyem 2:4184f92440a1 1 //#ifndef MBED_IRremote_H
dennyem 2:4184f92440a1 2 //#define MBED_IRremote_H
dennyem 2:4184f92440a1 3
dennyem 2:4184f92440a1 4 #include <mbed.h>
dennyem 2:4184f92440a1 5
dennyem 2:4184f92440a1 6 class IRremote {
dennyem 2:4184f92440a1 7 public:
dennyem 2:4184f92440a1 8 IRremote(PinName pin);
dennyem 2:4184f92440a1 9 char read(int ir_i);
dennyem 2:4184f92440a1 10 char readclear(int ir_i);
dennyem 2:4184f92440a1 11 void clear();
dennyem 2:4184f92440a1 12
dennyem 2:4184f92440a1 13 private:
dennyem 2:4184f92440a1 14 InterruptIn _pin;
dennyem 2:4184f92440a1 15 Ticker IR_timer;
dennyem 2:4184f92440a1 16 };
dennyem 2:4184f92440a1 17
dennyem 2:4184f92440a1 18 //#endif
dennyem 2:4184f92440a1 19
dennyem 2:4184f92440a1 20