Dennis Smith / Mbed 2 deprecated NixieClock800Max

Dependencies:   PCF8583_rtc mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers IRremote.h Source File

IRremote.h

00001 //#ifndef MBED_IRremote_H
00002 //#define MBED_IRremote_H
00003  
00004 #include <mbed.h>
00005  
00006 class IRremote {
00007 public:
00008     IRremote(PinName pin);
00009     char read(int ir_i);
00010     char readclear(int ir_i);
00011     void clear();
00012     
00013 private:
00014     InterruptIn _pin;
00015     Ticker IR_timer;
00016 };
00017  
00018 //#endif
00019 
00020