Hi there,
I have an arduino uno and I have successfully collected the IR codes from my tv and controlled it with an IR LED according to my desire. I have not been able to do the same on my Pioneer receiver however. I have the codes and the proper formatting however i am not getting any action. I know that on the Sony Tv's they require 3 sends to register a signal to complete an action. Does anybody know what might be causing the issue? i am using the NEC formatting on a receiver (VSX 823K). Are there any quirks that i need to keep in mind when dealing with this different brand? The sony seemed to work just fine. I have posted the code below.
Thanks for your help,
John
#include <IRremote.h>
IRsend irsend;
void setup()
{
Serial.begin(9600);
}
void loop() {
if (Serial.read() != -1) {
for (int i = 0; i < 3; i++) {
irsend.sendSony(0xA55AD02F, 32); // Receiver Volume Down
delay(100);
}
}
}