Open aoirint opened 3 years ago
Deferences between 2.8.0 and 2.8.1: https://github.com/Arduino-IRremote/Arduino-IRremote/compare/2.8.0...2.8.1
https://github.com/Arduino-IRremote/Arduino-IRremote/compare/2.8.0...2.8.1
void sendRaw(const unsigned int buf[], unsigned int len, unsigned int hz);
void sendRaw(const uint8_t aBufferWithTicks[], uint8_t aLengthOfBuffer, uint8_t aIRFrequencyKilohertz);
function sendRaw 2nd argument (length of IR data) type changed from unsigned int
to uint8_t
. max buffer size limited to 255?
The length of the current IR data is 440.
Solution A: Split IR data into windows with a size of 100.
IRremote: https://github.com/Arduino-IRremote/Arduino-IRremote