Woud different type of IR transmitter affect the sent raw data ? #1948
Unanswered
twinsenfan
asked this question in
Q&A
Replies: 1 comment 9 replies
-
Follow the troubleshooting guide https://github.com/crankyoldgit/IRremoteESP8266/wiki/Troubleshooting-Guide#basic TL;DR sounds like you have only connected a resistor, and not the required transistor? |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to decode an IR remote for a ceiling light. Managed to decode with the IRrecvDumpV3, here is what I got
Code : 0xFE6D6BB6 (38 Bits)
uint16_t rawData[75] = {3398, 1716, 398, 1300, 398, 1300, 398, 428, 396, 428, 416, 1280, 398, 428, 418, 404, 396, 430, 396, 1300, 398, 1300, 398, 1300, 398, 428, 396, 1300, 420, 404, 398, 426, 396, 428, 418, 406, 398, 426, 396, 1300, 400, 428, 396, 426, 418, 404, 396, 428, 396, 426, 396, 426, 420, 1278, 418, 404, 398, 428, 396, 1302, 398, 1300, 398, 1300, 398, 1302, 398, 1300, 398, 426, 418, 1280, 420, 1280, 444}; // UNKNOWN FE6D6BB6
I was able to send it with sendRaw(rawDataOff,75, 38) using an IR transmitter like below and the light responded to the code sent.
https://europe1.discourse-cdn.com/arduino/original/4X/1/3/3/1336d7c9b35c7eee07957c9b8064b9f647b00dec.jpeg
However, the same code does not work if I use an IR Led connected to the same pin together with a 200ohm resister. I dumped the IR signal and it was completely different. I've also tried other IR Led. Here is the datasheet for one of them
https://www.marutsu.co.jp/contents/shop/marutsu/datasheet/503HIRT2V-1CD.pdf
Any suggestions about how to debug the issue ? Thank you
Beta Was this translation helpful? Give feedback.
All reactions