mirror of
https://github.com/Theaninova/Arduino-IRremote.git
synced 2025-12-12 17:36:15 +00:00
Removed explicit values in enumeration
This commit is contained in:
30
IRremote.h
30
IRremote.h
@@ -73,20 +73,20 @@ typedef
|
|||||||
enum {
|
enum {
|
||||||
UNKNOWN = -1,
|
UNKNOWN = -1,
|
||||||
UNUSED = 0,
|
UNUSED = 0,
|
||||||
RC5 = 1,
|
RC5,
|
||||||
RC6 = 2,
|
RC6
|
||||||
NEC = 3,
|
NEC,
|
||||||
SONY = 4,
|
SONY,
|
||||||
PANASONIC = 5,
|
PANASONIC,
|
||||||
JVC = 6,
|
JVC,
|
||||||
SAMSUNG = 7,
|
SAMSUNG,
|
||||||
WHYNTER = 8,
|
WHYNTER,
|
||||||
AIWA_RC_T501 = 9,
|
AIWA_RC_T501,
|
||||||
LG = 10,
|
LG,
|
||||||
SANYO = 11,
|
SANYO,
|
||||||
MITSUBISHI = 12,
|
MITSUBISHI,
|
||||||
DISH = 13,
|
DISH,
|
||||||
SHARP = 14,
|
SHARP,
|
||||||
}
|
}
|
||||||
decode_type_t;
|
decode_type_t;
|
||||||
|
|
||||||
@@ -212,6 +212,8 @@ class IRrecv
|
|||||||
} ;
|
} ;
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
// Main class for sending IR
|
||||||
|
//
|
||||||
class IRsend
|
class IRsend
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|||||||
Reference in New Issue
Block a user