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-19
Revision:
12:0651f02169ee
Parent:
11:268cc2ab63bd
Child:
13:ddc6f7c92583
Child:
14:257b2f794dc4

File content as of revision 12:0651f02169ee:

/**
 * 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,
        Samsung,
        Samsung_REPEAT,
        Nikon,
    } Format;

    static const int TUS_NEC = 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