From eae3105c6a8310bdc6a8e4d8991c182f2438b15c Mon Sep 17 00:00:00 2001 From: Gal Golan Date: Mon, 12 Dec 2016 23:48:33 +0200 Subject: [PATCH] Update IRrecord.ino fixed IRRecord example for JVC --- examples/IRrecord/IRrecord.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/IRrecord/IRrecord.ino b/examples/IRrecord/IRrecord.ino index bf290fa39..7fc5cfd39 100644 --- a/examples/IRrecord/IRrecord.ino +++ b/examples/IRrecord/IRrecord.ino @@ -126,7 +126,7 @@ void sendCode(int repeat) { Serial.println(codeValue, HEX); } else if (codeType == JVC) { - irsend.sendPanasonic(codeValue, codeLen); + irsend.sendJVC(codeValue, codeLen, false); Serial.print("Sent JVC"); Serial.println(codeValue, HEX); }