Merge pull request #406 from z3t0/panasonic-jvc

IRrecord.ino typo
This commit is contained in:
Rafi Khan
2017-01-26 21:11:10 -06:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -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)

View File

@@ -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);
}