









The White LED 3W typically has two terminals: Anode and Cathode. These are usually soldered onto a star-shaped aluminum PCB for heat dissipation.
| Pin Name | Description | Symbol |
|---|---|---|
| Anode | Positive terminal (connect to +V) | (+) |
| Cathode | Negative terminal (connect to GND) | (-) |
The White LED 3W can be controlled using an Arduino UNO with a MOSFET for current handling. Below is an example circuit and code:
// Define the MOSFET gate pin connected to the Arduino
const int ledPin = 9; // PWM pin to control brightness
void setup() {
pinMode(ledPin, OUTPUT); // Set the pin as output
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(ledPin, brightness); // Set PWM duty cycle
delay(10); // Small delay for smooth transition
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(ledPin, brightness); // Set PWM duty cycle
delay(10); // Small delay for smooth transition
}
}
LED Does Not Light Up:
LED Flickers:
LED Overheats:
LED Burns Out Quickly:
Q: Can I connect the White LED 3W directly to a 5V or 12V power supply?
A: No, you must use a current-limiting resistor or a constant current driver to prevent overdriving the LED.
Q: How do I calculate the value of the current-limiting resistor?
A: Use Ohm's Law: ( R = \frac{V_{supply} - V_{forward}}{I_{forward}} ). For example, with a 12V supply, 3.2V forward voltage, and 700mA current:
( R = \frac{12 - 3.2}{0.7} = 12.57 , \Omega ). Use the nearest standard resistor value (e.g., 12Ω).
Q: Can I dim the White LED 3W?
A: Yes, you can dim the LED using PWM (Pulse Width Modulation) from a microcontroller like Arduino or a compatible LED driver.
Q: What happens if I exceed the maximum current rating?
A: Exceeding the current rating can cause the LED to overheat, degrade, or fail permanently.
By following these guidelines and best practices, you can effectively use the White LED 3W in your projects and applications.