Skip to content

Commit

Permalink
Merge pull request #8992 from s-hadinger/ir_pioneer_samsung
Browse files Browse the repository at this point in the history
Change IRRemoteESP8266 IR lib to pre-2.7.9, fixing Samsung and Pioneer protocols (#8938)
  • Loading branch information
arendst authored Jul 29, 2020
2 parents 25a1874 + e833518 commit d9427c5
Show file tree
Hide file tree
Showing 48 changed files with 2,991 additions and 862 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void printState() {
// Display the encoded IR sequence.
unsigned char* ir_code = ac.getRaw();
Serial.print("IR Code: 0x");
for (uint8_t i = 0; i < kToshibaACStateLength; i++)
for (uint8_t i = 0; i < ac.getStateLength(); i++)
Serial.printf("%02X", ir_code[i]);
Serial.println();
}
Expand Down
Loading

0 comments on commit d9427c5

Please sign in to comment.