Skip to main content
Photoresistor (LDR) sensor module

Pin names

Power
Positive power supply
Ground
Ground
Digital Output
Digital output
Analog Output
Analog output

Attributes

string
default:"500"
Initial light value (lux)
string
default:"2.5"
Digital output threshold voltage
string
default:"50"
LDR resistance @ 10lux (in kilo-ohms)
string
default:"0.7"
Slope of the log(R) / log(lux) graph

Operation

The photoresistor sensor module includes a LDR (light-dependant resistor) in series with a 10K resistor. The AO pin is connected between the LDR and the 10K resistor. The voltage on the AO pin depends on the illumination - that is the amount of light that falls on the sensor. You can read this voltage by connecting the AO pin of the photoresistor sensor to an analog input pin and then using the analogRead() function. There are two parameters that control the sensitivity of the LDR: rl10 and gamma. rl10 is the resistance of the LDR at illumination level of 10 lux. The gamma value determines the slope of the log(R) / log(lux) graph. You can usually find these two values in the datasheet of the LDR. The following table shows the relationship between the illumination level (lux), resistance (R), and the voltage level on the AO pin when gamma = 0.7 and rl10 = 50 (the default values): * When VCC = 5V
** Measured one meter away from the monitor
The following code to convert the return value of analogRead() into a illumination value (in lux):
The lux variable will contain the illumination level in lux. The value of lux may be infinite (inf) when the sensor is in a very bright environment. You can use isfinite(lux) to check if the value is finite before using it, like in this example.

Digital output

The digital output (“DO”) pin goes high when it’s dark, and low when there’s light. On the physical sensor, you tweak the small on-board potentiometer to set the threshold. In the simulator, use the “threshold” attribute to set the threshold voltage. The default threshold is 2.5 volts, or about 100 lux. The bottom LED (“DO LED”) is connected to the digital output, and lights whenever the DO pin goes low. In other words, it lights when the sensor is illuminated.

Automation controls

The photoresistor sensor can be controlled using Automation Scenarios. The names of the controls match the names of the attributes defined above:
float
Set the lux value (lux)
The following example sets the illumination to 100 lux:

Simulator examples