

The IR 3W 940nm COB is a high-power infrared LED module designed for applications requiring invisible infrared light. This component emits light at a wavelength of 940 nanometers, making it ideal for night vision systems, remote control devices, and various sensing technologies such as proximity sensors and security cameras. Its chip-on-board (COB) design ensures high efficiency, excellent heat dissipation, and compact size, making it suitable for both industrial and consumer applications.








Below are the key technical details of the IR 3W 940nm COB:
| Parameter | Value |
|---|---|
| Wavelength | 940 nm |
| Power Output | 3 W |
| Forward Voltage (Vf) | 1.8V - 2.4V |
| Forward Current (If) | 700 mA (typical) |
| Viewing Angle | 120° |
| Thermal Resistance | ≤ 10°C/W |
| Operating Temperature | -40°C to +85°C |
| Storage Temperature | -40°C to +100°C |
The IR 3W 940nm COB typically has two solder pads for electrical connections:
| Pin | Label | Description |
|---|---|---|
| 1 | Anode (+) | Positive terminal for power input |
| 2 | Cathode (-) | Negative terminal for power input |
The IR 3W 940nm COB can be controlled using an Arduino UNO and a transistor as a switch. Below is an example circuit and code:
// Example code to control the IR 3W 940nm COB with PWM
// Pin 9 is used to control the COB brightness
const int cobPin = 9; // PWM pin connected to the transistor base
void setup() {
pinMode(cobPin, OUTPUT); // Set pin 9 as an output
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(cobPin, brightness); // Set PWM duty cycle
delay(10); // Small delay for smooth transition
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(cobPin, brightness); // Set PWM duty cycle
delay(10); // Small delay for smooth transition
}
}
The COB does not light up:
The COB overheats:
The COB flickers:
The COB is dim:
Q: Can I power the IR 3W 940nm COB directly from a 5V power supply?
A: No, you must use a current-limiting resistor or a constant current driver to prevent overcurrent, which can damage the COB.
Q: How can I test if the COB is working?
A: Use an IR-sensitive camera or sensor to detect the emitted infrared light, as it is invisible to the human eye.
Q: Can I use the COB without a heat sink?
A: No, proper heat dissipation is essential to prevent overheating and ensure the longevity of the component.
Q: Is the COB compatible with PWM dimming?
A: Yes, the IR 3W 940nm COB can be dimmed using PWM signals, provided the power supply or driver supports it.
This concludes the documentation for the IR 3W 940nm COB.