Dennis Smith / Mbed 2 deprecated NixieClock800Max

Dependencies:   PCF8583_rtc mbed

Revision:
2:4184f92440a1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/IRremote.h	Sun Feb 23 21:28:26 2014 +0000
@@ -0,0 +1,20 @@
+//#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
+
+ 
\ No newline at end of file