

The High Power 265-nm COB UV-C LED (Manufacturer Part ID: VC2X2C48L6-265-V1) by Violumas is a high-intensity light-emitting diode designed to emit ultraviolet light at a wavelength of 265 nanometers. This wavelength is particularly effective for sterilization and disinfection applications, as it disrupts the DNA and RNA of microorganisms, rendering them inactive. The component is built using Chip-on-Board (COB) technology, ensuring high power density and efficient thermal management.








| Parameter | Value |
|---|---|
| Wavelength | 265 nm |
| Optical Power Output | 48 mW |
| Forward Voltage (Vf) | 6.0 V (typical) |
| Forward Current (If) | 500 mA (typical) |
| Power Consumption | 3 W |
| Viewing Angle | 120° |
| Thermal Resistance (Rth) | 2.5 °C/W |
| Operating Temperature | -30°C to +85°C |
| Storage Temperature | -40°C to +100°C |
| Package Type | COB (Chip-on-Board) |
| Lifespan | >10,000 hours (at rated conditions) |
The VC2X2C48L6-265-V1 COB UV-C LED has two solder pads for electrical connections. Below is the pin configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Anode | Positive terminal for power input. |
| 2 | Cathode | Negative terminal for power input. |
While the VC2X2C48L6-265-V1 is not directly compatible with an Arduino UNO due to its high power requirements, you can use the Arduino to control the LED via a relay or MOSFET. Below is an example circuit and code for controlling the LED with a MOSFET:
// UV-C LED Control with Arduino UNO
// This code uses PWM to control the brightness of the UV-C LED.
// Ensure the LED is connected via a MOSFET and a constant current driver.
const int ledPin = 9; // PWM pin connected to the MOSFET Gate
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin 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 10 ms
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(ledPin, brightness); // Set PWM duty cycle
delay(10); // Wait 10 ms
}
}
| Issue | Possible Cause | Solution |
|---|---|---|
| LED does not light up | Incorrect wiring or insufficient power | Verify connections and power supply. |
| LED flickers | Unstable power supply or loose wiring | Use a stable constant current driver and check connections. |
| LED overheats | Inadequate heat dissipation | Use a larger heat sink or improve thermal paste application. |
| Reduced UV output over time | Overdriving the LED or poor cooling | Ensure proper current regulation and thermal management. |
This concludes the documentation for the High Power 265-nm COB UV-C LED (VC2X2C48L6-265-V1) by Violumas.