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.
RemoteIR.h
- Committer:
- shintamainjp
- Date:
- 2010-09-17
- Revision:
- 9:dcfdac59ef74
- Parent:
- 3:dfed23b157e6
- Child:
- 11:268cc2ab63bd
File content as of revision 9:dcfdac59ef74:
/** * IR remote common class (Version 0.0.4) * * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems) * http://shinta.main.jp/ */ #ifndef _REMOTE_IR_H_ #define _REMOTE_IR_H_ class RemoteIR { public: typedef enum { UNKNOWN, NEC, NEC_REPEAT, AEHA, AEHA_REPEAT, SONY } Format; private: RemoteIR(); }; #endif