Current limiting resistor?

Get help and show off your TV-B-Gone kit!

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
hberg32
 
Posts: 52
Joined: Mon Apr 07, 2014 2:38 pm

Current limiting resistor?

Post by hberg32 »

Are the IR LEDs able to survive without current limiting resistors because there are 4 of them? I'm putting together a smaller version with just 1 IR LED but the LED overheated and cooked almost immediately. Having only 1 LED, I omitted the PNP transistor and just have the output from the ATTiny85 go to the base pin of a 2N3904 via a 120 ohm resistor (a setup I swiped from the the diagram here: https://learn.adafruit.com/tv-b-gone-ki ... -1094910-1)

Henry

User avatar
adafruit_support_bill
 
Posts: 88038
Joined: Sat Feb 07, 2009 10:11 am

Re: Current limiting resistor?

Post by adafruit_support_bill »

The 4 LEDs each have their own drive transistor, and the battery pack can source well over 1A in short bursts.
The LEDs are pulling more than 100mA each when on - but don't overheat because they are only driven in short pulses.

User avatar
hberg32
 
Posts: 52
Joined: Mon Apr 07, 2014 2:38 pm

Re: Current limiting resistor?

Post by hberg32 »

Would you expect the IR LEDs with this hardware design to melt if they were being kept on for too long?

I'm wondering now if I have a timing problem. If I put in a rando green LED from the box o' bits in place of the IR LED everything is fine and I can see it flicker (so the MCU is at least doing something). Swapping the green LED for IR leads to melted LED in seconds. So perhaps this means I have a problem with the clock setup which is causing the whole program to run slowly and leave the LEDs on for too long?

Do you by any chance have the command line params you use to flash the .hex file onto the ATTiny when you make the kits? After reading up on how to set the fuses I came up with the following but maybe I'm wrong: -Uefuse:w:0xff:m -Uhfuse:w:0xdf:m -Ulfuse:w:0xe2:m

User avatar
hberg32
 
Posts: 52
Joined: Mon Apr 07, 2014 2:38 pm

Re: Current limiting resistor?

Post by hberg32 »

Oh, wait, nevermind, the fuse settings are in the makefile. Nice.

burn-fuse:
$(AVRDUDE) $(AVRDUDE_FLAGS) -B 250 -u -U lfuse:w:0xfd:m -U hfuse:w:0xdf:m

User avatar
adafruit_support_bill
 
Posts: 88038
Joined: Sat Feb 07, 2009 10:11 am

Re: Current limiting resistor?

Post by adafruit_support_bill »

The specs allow for a continuous forward current of 20mA - with peaks of up to 1A (<= 1% duty cycle) https://cdn-shop.adafruit.com/datasheet ... asheet.pdf

Since the forward voltage considerably lower than that of a green LED, the current will be considerably higher. With a 3v source voltage, you are going to see quite a bit more than 100mA.

User avatar
hberg32
 
Posts: 52
Joined: Mon Apr 07, 2014 2:38 pm

Re: Current limiting resistor?

Post by hberg32 »

Ah, the penny dropped when you mentioned 3v, thanks. I'm powering the circuit on the breadboard from a USB programmer which must be feeding it 5 volts, not 3. And as it clearly states all over the project documentation 5v = bad things.

Thanks.

User avatar
hberg32
 
Posts: 52
Joined: Mon Apr 07, 2014 2:38 pm

Re: Current limiting resistor?

Post by hberg32 »

I like to learn from my dumbidity so could you tell me if I'm on the right track with using a 3.6 ohm resistor in this case? I just read the page on KVL. So if the forward voltage drop of the IR LED is 1.4 and I want to allow the current to peak to 1 amp and my supply voltage is 5v, then the resistor needs to account for 3.6v. 3.6v * 1 amp = 3.6 ohm. Right?

Thanks,
Henry

User avatar
adafruit_support_bill
 
Posts: 88038
Joined: Sat Feb 07, 2009 10:11 am

Re: Current limiting resistor?

Post by adafruit_support_bill »

Have another look at the table on page 3. Forward voltage is not a constant. It changes with the current. The Vf for those LEDs is 1.4v @ 100mA. At 1A, the Vf is 2.6v.

Also read the fine print regarding pulse width and duty cycle at those currents: "Pulse Width≦100μs ,Duty≦1%"

Locked
Please be positive and constructive with your questions and comments.

Return to “TV-B-Gone Kit”