keuzeproject mdev 1ITF groep: E3

Fork of RemoteIR by Shinichiro Nakamura

RemoteIR.h

Committer:
1ITF3
Date:
2016-02-01
Revision:
12:0767bcde0d32
Parent:
11:268cc2ab63bd

File content as of revision 12:0767bcde0d32:

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

    static const int TUS_NEC = 562;
    static const int TUS_AEHA = 425;
    static const int TUS_SONY = 600;
    static const int TUS_RC6 = 444;
   
private:
    RemoteIR();
};

#endif