Skip to content
Light

Light Dependent Resistor Photoresistor Module

The simplest way to make something react to darkness or bright light.

The LDR (Light Dependent Resistor), also called a photoresistor or photocell, is a passive component whose resistance drops sharply as light increases — typically from over 1MΩ in darkness down to a few hundred ohms in bright light. It has no polarity and no active circuitry, so it cannot be read directly by a microcontroller: you build a voltage divider with a fixed resistor (commonly 10kΩ) so the changing resistance becomes a changing voltage an ADC pin can measure.

It is the go-to sensor for automatic night lights, streetlight controllers, light-following robots, camera exposure triggers, and simple ambient-light dimmers. The catch that trips up beginners is response time: cheap CdS-based LDRs are slow (tens of milliseconds to react) and non-linear, so they suit on/off or slow-trend lighting decisions but not fast or precise lux measurements — for that, use a digital light sensor like BH1750 instead.

Specifications

TypeCadmium Sulfide (CdS) photoresistor
Package size5mm (also 4mm, 7mm, 12mm)
Dark resistance~1MΩ (typical, 0 lux)
Light resistance~200Ω–1kΩ (typical, 10 lux)
Spectral peak response~540nm (green, close to human eye)
Response time~20–30ms rise, ~30ms+ fall (slow, non-linear)
Max power rating100mW (typical 5mm package)
Max voltage150V DC (passive, not logic-level restricted)
InterfaceAnalog only — needs a voltage divider and ADC pin, no library

Pinout

PinNameDescription
1Leg ANo polarity — connect to VCC or the divider midpoint, either leg works
2Leg BNo polarity — connect to the fixed resistor / ground side of the divider

Two-leg passive component, no polarity. Standard circuit: LDR from VCC to a sense node, fixed 10kΩ resistor from that sense node to GND, sense node to your ADC pin. Swap the LDR and resistor positions to invert whether brighter light reads higher or lower.

Variants

VariantTemp rangeHum rangeAccuracyProtocolPrice
GL5528 (5mm)~$0.10–0.20
GL5516 (5mm)~$0.10–0.20
12mm LDR module~$0.30–0.50

Board Integration

Wiring

Component pinBoard pinNote
Leg A5V
Leg BA0 + 10kΩ to GND

Code

C++

Notes

Straightforward 5V divider, no library or level-shifting needed.