Closed ArminJo closed 1 year ago
What resistors (values) are needed and where? The circuit diagrams are from before I inherited the project. I am not an electrical engineer. I'm a software engineer. Plenty of people have used those circuits successfully, including myself. I've had it working in my living room ever since I started contributing to the project.
Per the Troubleshooting guide:
Things we are unlikely to help you with
- Designing your circuits. Designing circuits is really out of scope for us, and is really up to you to solve.
In the meantime, I've updated the wiki page to ensure that people don't treat those circuits as reference designs.
See: https://github.com/crankyoldgit/IRremoteESP8266/wiki#warning-warning-warning
Oh sorry, the resistors required are 270 Ohm for the diode to VCC and 10 kOhm for the transistor base to D2.
Here is a working schematic
I agree that there probably should be a resistor on the base, however with the 3.3v on ESP the resistor for diode is not required, and if it has a to high value it might not even work. 270Ohm is on the high end, but this also depends on the specification of the diode.
For the short pulses used with IR transmission the overdriving is early an issue, and might even be required to get proper signal.
What is said on the forum is correct for a normal LED which lights for longer periods of time >50ms, however IR LEDs is used differently. And again you need to check the specific IR LEDs specification. (I think the incorrect assumptions in that thread is quite common and understandable if you haven't worked with "high frequency" LED usage)
With 3.3V you get 2.6 V / 10 k = .26 mA base current. Times hfe of 100, which is very conservative, you get maximum 26 mA collector current. At 5 V -1.2 for IR diode and transistor = 3.8 V and 270 Ohm you get 14 mA, which is not much, but good for programming errors, when D2 is always high.
You have 3.3V and a LED at 1.4-1.8V that should be driven at 100-120mA (burst). I would recommend 2 LEDs in series, and no resistor.
If it stays high due to errors it is good to test with more concervative values. But for working IR transmission you need these higher values, which is different from LEDs for visual indication which stays on for much longer.
while you are at it, add a cap in GND and 5V
A good description and circuit design is here https://www.analysir.com/blog/2013/11/22/constant-current-infrared-led-circuit/
What is the exact reason for keeping the wrong (missing resistors) version, thus fooling all newbies?
The above circuit uses a 2.5ohm resistor. As already stated, this actually isn't necessarily wrong when dealing with IR diodes which only is on in bursts.
And I can say for sure that the 270ohm suggestion will not give you any good results.
This is an example, with warnings, you need to design your circuit with the values for you IR diode. Not random posts on the internet ;)
Please update the schematic on the page https://github.com/crankyoldgit/IRremoteESP8266/wiki#ir-sending with two resitors to avoid such problems.