-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Description
Originally posted by kopi23 March 22, 2023
Hi all,
Using library version 4.1.0
I recently got myself two AZDelivery ESP32 Dev Kit C V4 and wanted to use one as a wifi remote.
First I set one of them up as receiver, uploaded the SimpleReceiver example and was very happy getting output like
Protocol=Sony Address=0x54 Command=0x29 Raw-Data=0x2A29 15 bits LSB first
Send with: IrSender.sendSony(0x54, 0x29, 2, 15);
Protocol=Sony Address=0x54 Command=0x29 Repeat gap=21000us Raw-Data=0x2A29 15 bits LSB first
Protocol=Sony Address=0x54 Command=0x29 Repeat gap=21000us Raw-Data=0x2A29 15 bits LSB first
The second one I set up as transmitter and added that sendSony(...) command.
But when transmitting, the device didn't respond :(
So I placed the transmitter and receiver boards next to each other.
Using the hinted Send with: IrSender.sendSony(0x54, 0x29, 2, 15);
, the SimpleReceiver outputs
Protocol=Sony Address=0x50 Command=0x29 Raw-Data=0x2829 15 bits LSB first
Send with: IrSender.sendSony(0x50, 0x29, 2, 15);
Protocol=Sony Address=0x50 Command=0x8 Repeat gap=21650us Raw-Data=0x2808 15 bits LSB first
Protocol=Sony Address=0x50 Command=0x29 Repeat gap=21650us Raw-Data=0x2829 15 bits LSB first
I guess the two outputs should match?
I also tried another one.
Transmitter code: IrSender.sendNEC(0xA002, 0xAA, sRepeats);
Receiver output:
Protocol=Onkyo Address=0x8002 Command=0x45AA Raw-Data=0x45AA8002 32 bits LSB first
Send with: IrSender.sendOnkyo(0x8002, 0x45AA, <numberOfRepeats>);
Can please somebody help me on what I'm doing wrong here?
Thank you very much, kopi