I am new to both Arduino and this forum. I have some background in hardware and programming in other environments. I am using the Elegoo Super Starter Kit.
My first project is to try and simulate some of the IR commands generated by an xfinity XR11 remote control. The remote control is set to send IR commands, instead of RF, and is also set to control the power and volume of a Samsung TV.
My breadboard has an IR receiver and transmitter. I have been using the SimpleReceiver example program to collect the IR codes for a few of the remote control buttons that I would like to simulate. The power, and volume keys on the remote control send standard Samsung commands and I have made them work using the IrSender.sendSamsung method. However, the other buttons are more of a challenge. Those buttons all come back as either noise or an unknown protocol. I'm sure that they are not noise. The raw data looks like this.
Received noise or an unknown (or not yet enabled) protocol
rawIRTimings[18]:
-13650
- 250,- 850
- 250,-1000 + 250,- 700 + 250,- 700 + 250,-2600
- 250,-2750 + 200,- 750 + 200,- 750 + 250
Duration=12250us
I found a few posts that talk about just putting this data into an unsigned int array and then using the IrSender.sendRaw method with the array as a parameter. However, I'm still confused about what I'm being told to do.
I would like to come up with a IrSender.sendRaw that will result in the IrReceiver generating the exact same output shown above.
Any help or a link to an article or post that I have not yet found would be appreciated.
Thanks in advance.

