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-28
Revision:
15:793c2aa484b1
Parent:
14:257b2f794dc4

File content as of revision 15:793c2aa484b1:

/**
 * 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,
        KAMOONA,
        
    } Format;

    static const int TUS_NEC = 562;
    static const int TUS_AEHA = 425;
    static const int TUS_SONY = 600;
    static const int TUS_KAMOONA = 600;
    
   

private:
    RemoteIR();
};

#endif