Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: PCF8583_rtc mbed
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
Generated on Sat Jul 23 2022 14:16:51 by
