Skip to content

Commit a4cf8bc

Browse files
authored
Merge pull request Arduino-IRremote#406 from z3t0/panasonic-jvc
IRrecord.ino typo
2 parents 96efb59 + 3b41130 commit a4cf8bc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2.2.2 - 2017/01/20
2+
- Fixed naming bug [PR #398](https://github.com/z3t0/Arduino-IRremote/pull/398)
3+
14
## 2.2.1 - 2016/07/27
25
- Added tests for Lego Power Functions Protocol [PR #336](https://github.com/z3t0/Arduino-IRremote/pull/336)
36

examples/IRrecord/IRrecord.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void sendCode(int repeat) {
126126
Serial.println(codeValue, HEX);
127127
}
128128
else if (codeType == JVC) {
129-
irsend.sendPanasonic(codeValue, codeLen);
129+
irsend.sendJVC(codeValue, codeLen, false);
130130
Serial.print("Sent JVC");
131131
Serial.println(codeValue, HEX);
132132
}

0 commit comments

Comments
 (0)