IR Library question:

In the TinySender.cpp, what does sRepeats do? Note I keep it at zero.

sendNEC(IR_SEND_PIN, sAddress, sCommand, sRepeats);

In order to know, I would have to examine the library, but which on?. You can do that too. If you can't figure it out from there, post ALL the code in code tags after Tools/Auto Format in the IDE.

This parameter specifies how many times the signal should be repeated after the initial transmission. The default value is 0, meaning the signal will be sent only once. If you set it to a positive number, the signal will be repeated that many times

Got it.
Thanks