Hello there could you clarify?The board’s nomenclature was somewhat confusing to me.
Typically a circuit using an LED requires a resistor to control the amount of current going to it..usually around 370 ohms depending on the voltage and what the LED requires. I’ll be setting up several LEDS to flash on and off using an Arduino board. Just wondering if the board already has an internal resistor so I won’t need to add one in series with the LED..Hello there could you clarify?![]()
There is no internal resistor.Typically a circuit using an LED requires a resistor to control the amount of current going to it..usually around 370 ohms depending on the voltage and what the LED requires. I’ll be setting up several LEDS to flash on and off using an Arduino board. Just wondering if the board already has an internal resistor so I won’t need to add one in series with the LED..
thank you
Whether you actually need a resistor depends on the internal construction of the microcontroller. I have driven LED's directly from port pins on PIC's, especially when multiplexing, because I have found that the internal FET resistance on that particular PIC has been enough to limit current. BUT...it's always safest to use a resistor.
You can calculate the current through the LED:
( Vdd - Vf ) / R = I
Vdd = power supply
Vf = forward voltage drop of the LED
R = resistance
I = current
With the LED's that I use, a 1K resistor limits current enough and still gives a good brightness. I haven't used 330 or 470 ohms in a long time...modern LED's are way more efficient and need less current.
https://www.arduino.cc/en/uploads/Main/Arduino_Uno_Rev3-schematic.pdf
As noted, the ports are connected directly to the headers with no resistors. You will need one for the LED. 1K would be a safe value to start.
Ok. That definitely narrows it down and nails it. Thanks. I’m still a noobie.There is no internal resistor.