Updates for LG Air Conditioner Remote

This commit is contained in:
Darryl Smith
2014-07-10 08:27:36 +10:00
parent 0af9c5a9e9
commit 66c3b1f47c
4 changed files with 67 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
* Copyright 2009 Ken Shirriff
* http://arcfn.com
* JVC and Panasonic protocol added by Kristian Lauszus (Thanks to zenwheel and other people at the original blog post)
* LG added by Darryl Smith (based on the JVC protocol)
*/
#include <IRremote.h>
@@ -48,6 +49,9 @@ void dump(decode_results *results) {
Serial.print(results->panasonicAddress,HEX);
Serial.print(" Value: ");
}
else if (results->decode_type == LG) {
Serial.print("Decoded LG: ");
}
else if (results->decode_type == JVC) {
Serial.print("Decoded JVC: ");
}