5 Mistakes That Burn Out Your LEDs (And How to Avoid Them)

I killed my first LED in about four seconds. I was in high school, I had a 9V battery, a red LED, and exactly zero understanding of current limiting. There was a brief, heroic flash — then nothing. The LED was dead. I thought I'd gotten a bad one and moved on. I killed three more before I figured out what was actually happening.

If you're here, you've probably had a similar moment — or you're trying to avoid one. Either way, let's go through the five most common mistakes that destroy LEDs, why each one kills the component, and exactly what to do instead. This is practical circuit stuff, not a lecture.


Mistake #1: No Current-Limiting Resistor at All

This is the classic beginner error — and honestly, it makes intuitive sense at first. You have a 3V LED. You have a 3.3V microcontroller pin. Close enough, right?

Wrong. The problem isn't voltage — it's current. LEDs are what's called a non-ohmic device. Unlike a plain resistor, an LED doesn't politely increase its resistance as more current flows through it. Instead, once the forward voltage threshold is crossed, the LED becomes almost a short circuit. Current floods through it, the junction heats up almost instantly, and the LED burns out from the inside.

Even a small voltage overage — say, 3.3V across an LED rated for 3.0V forward voltage — can push ten or twenty times the rated current. The LED doesn't care about your intentions.

The fix: Always use a current-limiting resistor in series. The formula is simple:

R = (V_supply - V_forward) / I_led

For a standard red LED on a 5V supply: V_forward is roughly 2.0V, and most small indicator LEDs run well at 10–20mA. Let's say 15mA:

R = (5V - 2.0V) / 0.015A = 200 ohms

Round up to the nearest standard value — 220 ohms works great. The LED will be slightly dimmer than its theoretical maximum, and it will last for years instead of seconds.


Mistake #2: Using the Wrong Resistor Value

You know you need a resistor. You grab one from your parts bin. Problem solved? Not necessarily.

There are two failure modes here. The first is using a resistor that's too small — say, 10 ohms instead of 200 ohms. You'll still send way too much current through the LED. It'll glow brilliantly for a few minutes, then fade to nothing as the junction degrades.

The second failure mode is subtler: using a resistor that's too large, which won't destroy the LED but will make it dim to the point of uselessness — and you'll spend an hour wondering why your circuit "isn't working."

The other tricky part? Resistor color codes. A lot of people misread them under poor lighting or when they're in a hurry. That 220-ohm resistor (red-red-brown) can get confused with a 22-ohm (red-red-black) or a 2.2k (red-red-red). The difference between 22 ohms and 220 ohms on a 5V supply is the difference between 136mA and 13.6mA through your LED. One kills it, one doesn't.

The fix: Use a multimeter to verify the resistor before you solder it in. Set it to resistance mode, clip the probes to each lead, confirm the value. Takes three seconds. Also, when in doubt, go slightly higher — a 270-ohm resistor instead of 220-ohm just makes the LED marginally dimmer. A 47-ohm resistor instead of 220-ohm blows it up.

If you're doing this math frequently, an LED resistor calculator is worth bookmarking. You input supply voltage, LED forward voltage, and desired current, and it spits out the exact resistor value plus the closest standard E24 series value.


Mistake #3: Reversed Polarity

LEDs are diodes — that's literally what the "D" stands for — which means they only conduct current in one direction. Connect them backwards and one of two things happens: nothing (the LED blocks the current entirely) or, with high enough reverse voltage, the LED gets destroyed at its internal junction.

Most standard indicator LEDs have a reverse breakdown voltage somewhere around 5V. On a 3.3V system, plugging in an LED backwards usually just means it won't light up — annoying, but harmless. On a 12V rail? You can silently damage the LED in a way that's hard to diagnose. It might still light up at lower efficiency, or it might just fail intermittently.

Identifying polarity on a bare LED is easy once you know what to look for: the longer lead is the anode (positive side), and the shorter lead is the cathode. On the LED body itself, there's usually a flat edge on the rim of the plastic dome — that flat is on the cathode side. Inside the LED, the larger internal piece is the cathode.

The fix: Before soldering or inserting into a breadboard, hold the LED up to the light and look for the flat edge or the lead length difference. If you're working with surface-mount LEDs where you can't tell at a glance, check the datasheet. The marking convention varies by manufacturer but is always documented.

If you're building a circuit that might see reverse voltage from other components — like when an inductive load collapses — consider a protection diode in parallel with the LED, or a series diode, depending on your topology.


Mistake #4: Ignoring Power Dissipation in the Resistor

People think about the resistor value, but they often forget to think about how much power that resistor has to handle. This doesn't kill the LED directly — it kills the resistor, and then the dead resistor can kill the LED by suddenly removing current limiting.

The math here is just as simple as the resistor formula:

P = I² × R

Or equivalently:

P = (V_supply - V_forward)² / R

For our 5V example with a 220-ohm resistor and 15mA: P = (0.015)² × 220 = about 50mW. A standard 1/4W (250mW) resistor handles that with room to spare.

Now imagine you're driving a high-power LED — say, a 1W LED on a 12V rail. The forward voltage is around 3.4V. If someone naively uses a resistor to limit current to 350mA:

R = (12 - 3.4) / 0.35 = ~24.5 ohms
P = (0.35)² × 24.5 = ~3 watts

A 3-watt resistor is a chunky component. Using a 1/4W resistor here means the resistor burns out within seconds. For high-power LEDs, a proper LED driver IC is almost always the right answer — resistor limiting is really just for low-power indicator LEDs.

The fix: Always calculate both the resistor value AND the power dissipation. Use a resistor rated for at least twice the calculated wattage. For anything over about 100mW total, consider switching to a constant-current LED driver.


Mistake #5: Assuming All LEDs Are the Same

Here's one that trips up people who've been doing this for a while. You get comfortable with red LEDs — forward voltage 1.8–2.2V, current around 20mA — and you apply the same resistor values to every LED color you encounter. Then your blue LEDs die mysteriously, or your white LEDs barely glow.

Forward voltage varies significantly by color, because it corresponds to the photon energy being emitted — and photon energy is tied to wavelength, which is what we perceive as color. Rough values:

  • Infrared: ~1.2–1.6V
  • Red: ~1.8–2.2V
  • Yellow/Orange: ~2.0–2.4V
  • Green: ~2.0–3.5V (varies widely by type)
  • Blue: ~3.0–3.5V
  • White: ~3.0–3.5V (white LEDs are blue LEDs with phosphor)
  • UV: ~3.5–4.0V

If you use a red-LED resistor with a blue LED on a 3.3V supply, you're doing something like: (3.3 - 3.2) / 220 = 0.45mA. The LED barely glows and you think it's broken. Recalculate for the actual forward voltage and it comes alive.

Going the other direction — using a blue LED resistor with a red LED on a higher voltage rail — means you're pushing too much current through the red LED.

The fix: Check the datasheet for the specific LED you're using. Forward voltage varies not just by color but by manufacturer and even by the specific product line. It takes 30 seconds to look up, and it means your resistor calculation is actually accurate.


One More Thing Worth Knowing

LEDs generally don't degrade from use — they degrade from heat and overcurrent. An LED run at 80% of its rated current, in a circuit with proper current limiting and adequate power dissipation, will outlast almost any other component in your design. The "50,000-hour lifetime" figures you see on datasheets assume proper operating conditions.

Most LED failures I've seen in hobbyist and small-scale professional projects come down to these five mistakes. Nail the current-limiting resistor calculation, verify polarity before power-up, don't assume identical forward voltages across colors, and check your resistor's wattage rating — and your LEDs will almost never let you down.

The four-second death of that first red LED in my high school bedroom taught me more about Ohm's Law than any textbook chapter. Some lessons really do have to be learned the bright, brief way.