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.
Fork of RemoteIR by
RemoteIR.h@13:ddc6f7c92583, 2015-04-27 (annotated)
- Committer:
- mskamoona
- Date:
- Mon Apr 27 01:47:26 2015 +0000
- Revision:
- 13:ddc6f7c92583
- Parent:
- 12:0651f02169ee
wara menachat o5ta
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
shintamainjp | 0:ec264f4ce158 | 1 | /** |
shintamainjp | 9:dcfdac59ef74 | 2 | * IR remote common class (Version 0.0.4) |
shintamainjp | 0:ec264f4ce158 | 3 | * |
shintamainjp | 0:ec264f4ce158 | 4 | * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems) |
shintamainjp | 0:ec264f4ce158 | 5 | * http://shinta.main.jp/ |
shintamainjp | 0:ec264f4ce158 | 6 | */ |
shintamainjp | 0:ec264f4ce158 | 7 | |
shintamainjp | 0:ec264f4ce158 | 8 | #ifndef _REMOTE_IR_H_ |
shintamainjp | 0:ec264f4ce158 | 9 | #define _REMOTE_IR_H_ |
shintamainjp | 0:ec264f4ce158 | 10 | |
shintamainjp | 0:ec264f4ce158 | 11 | class RemoteIR { |
shintamainjp | 0:ec264f4ce158 | 12 | public: |
shintamainjp | 0:ec264f4ce158 | 13 | |
shintamainjp | 0:ec264f4ce158 | 14 | typedef enum { |
shintamainjp | 0:ec264f4ce158 | 15 | UNKNOWN, |
mskamoona | 13:ddc6f7c92583 | 16 | WifiGetUsers, |
mskamoona | 13:ddc6f7c92583 | 17 | WifiGetPassword, |
mskamoona | 13:ddc6f7c92583 | 18 | WifiChangePassword, |
mskamoona | 13:ddc6f7c92583 | 19 | |
mskamoona | 13:ddc6f7c92583 | 20 | /* NEC_REPEAT, |
shintamainjp | 0:ec264f4ce158 | 21 | AEHA, |
shintamainjp | 3:dfed23b157e6 | 22 | AEHA_REPEAT, |
mskamoona | 12:0651f02169ee | 23 | SONY, |
mskamoona | 12:0651f02169ee | 24 | Samsung, |
mskamoona | 12:0651f02169ee | 25 | Samsung_REPEAT, |
mskamoona | 13:ddc6f7c92583 | 26 | Nikon, */ |
shintamainjp | 0:ec264f4ce158 | 27 | } Format; |
shintamainjp | 0:ec264f4ce158 | 28 | |
mskamoona | 13:ddc6f7c92583 | 29 | static const int TUS_Wifi = 562; |
mskamoona | 13:ddc6f7c92583 | 30 | /* static const int TUS_AEHA = 425; |
shintamainjp | 11:268cc2ab63bd | 31 | static const int TUS_SONY = 600; |
mskamoona | 12:0651f02169ee | 32 | static const int TUS_Samsung = 546; |
mskamoona | 13:ddc6f7c92583 | 33 | static const int TUS_Nikon = 25; */ |
shintamainjp | 11:268cc2ab63bd | 34 | |
shintamainjp | 0:ec264f4ce158 | 35 | private: |
shintamainjp | 0:ec264f4ce158 | 36 | RemoteIR(); |
shintamainjp | 0:ec264f4ce158 | 37 | }; |
shintamainjp | 0:ec264f4ce158 | 38 | |
shintamainjp | 0:ec264f4ce158 | 39 | #endif |