Added a new Brand "Kamoona" to be used for other applications that are not a known brand.

Fork of RemoteIR by Shinichiro Nakamura

RemoteIR.h

Committer:
mskamoona
Date:
2015-04-27
Revision:
13:ddc6f7c92583
Parent:
12:0651f02169ee

File content as of revision 13:ddc6f7c92583:

/**
 * 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,
        WifiGetUsers,
        WifiGetPassword,
        WifiChangePassword,
        
   /*   NEC_REPEAT,
        AEHA,
        AEHA_REPEAT,
        SONY,
        Samsung,
        Samsung_REPEAT,
        Nikon,  */
    } Format;

    static const int TUS_Wifi = 562;
 /*   static const int TUS_AEHA = 425;
    static const int TUS_SONY = 600;
    static const int TUS_Samsung = 546;
    static const int TUS_Nikon = 25;  */

private:
    RemoteIR();
};

#endif