Merge branch 'crash7-master' into experimental

Conflicts:
	IRremote.h
This commit is contained in:
Rafi Khan
2015-03-08 21:12:08 -06:00
8 changed files with 195 additions and 1 deletions

View File

@@ -53,7 +53,9 @@ public:
#define SAMSUNG 11
#define LG 12
#define WHYNTER 13
#define SHARP 14
#define Sharp 14
#define AIWA_RC_T501 15
>>>>>>> crash7-master
#define UNKNOWN -1
// Decoded value for NEC when a repeat code is received
@@ -83,6 +85,7 @@ private:
long decodeJVC(decode_results *results);
long decodeSAMSUNG(decode_results *results);
long decodeWhynter(decode_results *results);
long decodeAiwaRCT501(decode_results *results);
long decodeHash(decode_results *results);
int compare(unsigned int oldval, unsigned int newval);
@@ -113,6 +116,7 @@ public:
void sendSharpRaw(unsigned long data, int nbits);
void sendPanasonic(unsigned int address, unsigned long data);
void sendJVC(unsigned long data, int nbits, int repeat); // *Note instead of sending the REPEAT constant if you want the JVC repeat signal sent, send the original code value and change the repeat argument from 0 to 1. JVC protocol repeats by skipping the header NOT by sending a separate code value like NEC does.
void sendAiwaRCT501(int code);
// private:
void sendSAMSUNG(unsigned long data, int nbits);
void enableIROut(int khz);