

A Light Dependent Resistor (LDR), also known as a photoresistor, is a passive electronic component whose resistance decreases as the intensity of incident light increases. This property makes it an ideal choice for light-sensing applications. The LDR 2 is a standard light-dependent resistor with moderate sensitivity and is widely used in circuits requiring light detection or automatic light control.








Below are the key technical details of the LDR 2:
| Parameter | Value |
|---|---|
| Resistance (Dark) | 1 MΩ (typical) |
| Resistance (Bright) | 1 kΩ to 10 kΩ (typical) |
| Maximum Voltage | 150 V |
| Power Dissipation | 100 mW |
| Response Time (Rise) | 20 ms |
| Response Time (Fall) | 30 ms |
| Operating Temperature | -30°C to +70°C |
| Material | Cadmium Sulfide (CdS) |
The LDR 2 is a two-terminal device. The pins are not polarized, meaning it can be connected in either direction in a circuit.
| Pin | Description |
|---|---|
| Pin 1 | One terminal of the resistor |
| Pin 2 | The other terminal of the resistor |
Basic Circuit Connection:
Interfacing with an Arduino UNO:
// Arduino code to read LDR values and display them on the Serial Monitor
const int ldrPin = A0; // Define the analog pin connected to the LDR
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int ldrValue = analogRead(ldrPin); // Read the analog value from the LDR
Serial.print("LDR Value: "); // Print a label for the value
Serial.println(ldrValue); // Print the LDR value
delay(500); // Wait for 500 ms before the next reading
}
No Change in Output Voltage:
Output Voltage is Always High or Low:
Inconsistent Readings:
Q1: Can the LDR 2 detect infrared light?
A1: The LDR 2 is primarily sensitive to visible light. It has limited sensitivity to infrared light and is not ideal for IR-specific applications.
Q2: How do I choose the pull-down resistor value?
A2: The pull-down resistor value depends on the expected light intensity range. For general use, a 10 kΩ resistor works well. For low-light conditions, a higher resistance (e.g., 100 kΩ) may be more suitable.
Q3: Can I use the LDR 2 in outdoor applications?
A3: Yes, but ensure the LDR is protected from moisture and extreme temperatures. Use a weatherproof enclosure if necessary.
Q4: What is the lifespan of the LDR 2?
A4: The LDR 2 has a long lifespan if operated within its specified limits. However, prolonged exposure to high temperatures or humidity can reduce its performance over time.