The CREE CREEXML2-W318 is a high-performance 3-watt LED designed for energy-efficient and high-brightness lighting applications. This LED is built using advanced semiconductor technology, ensuring long life, excellent thermal management, and consistent performance. It is widely used in applications such as flashlights, automotive lighting, architectural lighting, and general-purpose illumination.
The following table outlines the key technical specifications of the CREE CREEXML2-W318 3-watt LED:
Parameter | Value |
---|---|
Manufacturer | CREE |
Part Number | CREEXML2-W318 |
Power Rating | 3 Watts |
Forward Voltage (Vf) | 2.8V to 3.5V |
Forward Current (If) | 700mA (typical) |
Luminous Flux | Up to 280 lumens |
Color Temperature | 3000K to 6500K (varies by model) |
Viewing Angle | 115° |
Thermal Resistance (Rθj) | 2.5°C/W |
Operating Temperature | -40°C to +85°C |
Package Type | High-power ceramic base |
The CREE CREEXML2-W318 is a two-terminal device with the following pin configuration:
Pin | Name | Description |
---|---|---|
1 | Anode | Positive terminal (connect to +V) |
2 | Cathode | Negative terminal (connect to GND) |
The CREE CREEXML2-W318 can be controlled using an Arduino UNO and a MOSFET for PWM dimming. Below is an example circuit and code:
// Example code to control the brightness of a 3-watt LED using PWM
// Pin 9 is used for PWM output to control the MOSFET gate
const int ledPin = 9; // PWM pin connected to the MOSFET gate
void setup() {
pinMode(ledPin, OUTPUT); // Set pin 9 as an output
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(ledPin, brightness); // Set PWM duty cycle
delay(10); // Wait 10ms for smooth transition
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(ledPin, brightness); // Set PWM duty cycle
delay(10); // Wait 10ms for smooth transition
}
}
LED Does Not Light Up:
LED Flickers:
LED Overheats:
LED Burns Out:
Q: Can I power the LED directly from a 5V or 12V source?
A: No, you must use a current-limiting resistor or a constant current driver to prevent damage.
Q: What is the recommended heat sink size?
A: The heat sink size depends on the operating environment, but it should have a thermal resistance of less than 10°C/W.
Q: Can I use this LED for outdoor applications?
A: Yes, but ensure it is enclosed in a weatherproof housing to protect it from moisture and dust.
Q: How do I calculate the resistor value for a 12V power supply?
A: Use the formula (R = \frac{V_{supply} - V_f}{I_f}). For example, with (V_{supply} = 12V), (V_f = 3V), and (I_f = 0.7A), (R = \frac{12 - 3}{0.7} = 12.86 , \Omega). Use a 13Ω resistor.
This concludes the documentation for the CREE CREEXML2-W318 3-watt LED.