From 3b41130ff916f03e46e8e45d5c54a0f02124ae0f Mon Sep 17 00:00:00 2001 From: Rafi Khan Date: Fri, 20 Jan 2017 23:59:24 -0600 Subject: [PATCH] Manual merge of #398 --- changelog.md | 3 +++ examples/IRrecord/IRrecord.ino | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index fbe70b4..cb2b7e2 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,6 @@ +## 2.2.2 - 2017/01/20 +- Fixed naming bug [PR #398](https://github.com/z3t0/Arduino-IRremote/pull/398) + ## 2.2.1 - 2016/07/27 - Added tests for Lego Power Functions Protocol [PR #336](https://github.com/z3t0/Arduino-IRremote/pull/336) diff --git a/examples/IRrecord/IRrecord.ino b/examples/IRrecord/IRrecord.ino index bf290fa..7fc5cfd 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); }