File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,12 @@ void storeCode(decode_results *results) {
8080 else if (codeType == SONY) {
8181 Serial.print (" Received SONY: " );
8282 }
83+ else if (codeType == PANASONIC) {
84+ Serial.print (" Received PANASONIC: " );
85+ }
86+ else if (codeType == JVC) {
87+ Serial.print (" Received JVC: " );
88+ }
8389 else if (codeType == RC5) {
8490 Serial.print (" Received RC5: " );
8591 }
@@ -114,6 +120,16 @@ void sendCode(int repeat) {
114120 Serial.print (" Sent Sony " );
115121 Serial.println (codeValue, HEX);
116122 }
123+ else if (codeType == PANASONIC) {
124+ irsend.sendPanasonic (codeValue, codeLen);
125+ Serial.print (" Sent Panasonic" );
126+ Serial.println (codeValue, HEX);
127+ }
128+ else if (codeType == JVC) {
129+ irsend.sendPanasonic (codeValue, codeLen);
130+ Serial.print (" Sent JVC" );
131+ Serial.println (codeValue, HEX);
132+ }
117133 else if (codeType == RC5 || codeType == RC6) {
118134 if (!repeat) {
119135 // Flip the toggle bit for a new button press
You can’t perform that action at this time.
0 commit comments