

The CCTV 36 IR LED Board (Manufacturer: Laetitia, Part ID: 67) is a specialized circuit board equipped with 36 infrared (IR) LEDs. It is designed to provide illumination in low-light or complete darkness, making it an essential component for night vision in CCTV cameras. The IR LEDs emit light in the infrared spectrum, which is invisible to the human eye but can be captured by camera sensors, enabling clear video footage in dark environments.








| Parameter | Value |
|---|---|
| Manufacturer | Laetitia |
| Part ID | 67 |
| Number of LEDs | 36 |
| LED Type | Infrared (IR) |
| Wavelength | 850 nm (typical) |
| Operating Voltage | 12V DC |
| Current Consumption | ~300 mA |
| Illumination Range | Up to 20 meters |
| Board Dimensions | 50 mm (diameter, circular) |
| Mounting Holes | 4 holes (for easy installation) |
The CCTV 36 IR LED Board typically has two pins for power input. Below is the pin configuration:
| Pin Number | Label | Description |
|---|---|---|
| 1 | VCC | Positive power supply (12V DC) |
| 2 | GND | Ground connection |
While the CCTV 36 IR LED Board is not directly controlled by an Arduino, you can use a relay module to switch the board on or off based on environmental conditions (e.g., low light detected by a photoresistor). Below is an example:
// Example: Controlling the IR LED board with an Arduino and a relay module
// The relay is connected to pin 7, and a photoresistor is used to detect light levels.
const int relayPin = 7; // Pin connected to the relay module
const int photoResistorPin = A0; // Analog pin for the photoresistor
const int threshold = 500; // Light level threshold for turning on the IR LEDs
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off initially
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int lightLevel = analogRead(photoResistorPin); // Read light level
Serial.println(lightLevel); // Print light level for debugging
if (lightLevel < threshold) {
// If light level is below threshold, turn on the IR LED board
digitalWrite(relayPin, HIGH);
} else {
// Otherwise, turn off the IR LED board
digitalWrite(relayPin, LOW);
}
delay(500); // Small delay for stability
}
IR LEDs Not Turning On
Overheating
Insufficient Illumination
Interference with Camera
Q1: Can I use a power supply higher than 12V?
A1: No, using a higher voltage can damage the IR LEDs. Always use a regulated 12V DC power supply.
Q2: How do I know if the IR LEDs are working?
A2: IR light is invisible to the human eye, but you can use a smartphone camera to check. Point the camera at the LEDs, and you should see a faint red glow.
Q3: Can I dim the IR LEDs?
A3: The board is not designed for dimming. If dimming is required, consider using a PWM-controlled circuit with compatible components.
Q4: Is the board weatherproof?
A4: No, the board is not weatherproof. For outdoor use, enclose it in a weatherproof housing.
By following this documentation, you can effectively integrate and troubleshoot the Laetitia CCTV 36 IR LED Board (Part ID: 67) in your projects.