The shipping fee depends on your address
Standard: 9-15 business days,fee is down to $3.99
Express: 4-7 business days,fee is down to $5.99
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.We make into production usually Within 1 - 3 Bussiness Days.
Expect customization orders.Extra large photosensor for detecting the presence and relative strength of light.
This extra large 20mm (3/4″) LDR (Light Dependent Resistor) is also called a photoresistor. An LDR is a resistor whose resistance changes with the amount of light striking it.
As the strength of the light falling on the LDR increases, the resistance of the LDR gets lower.
It is typical to put the LDR in series with a resistor to create a voltage divider and feed that output to an analog input on an MCU. The output will be a lower voltage when no light is striking the sensor and the voltage will increase as the light intensity increases.
These can be used in a variety of applications such as monitoring a pilot light, night light control, auto chicken coup door opener or anywhere that you want to detect a basic threshold of light and take some action.
This is a basic light sensing component that can be used to experiment with a number of different types of applications which uses the presence or absence of light to take an action. They are robust devices that work well in final applications as well.
The leads on this device are very beefy and can be bent to support the sensor at any angle.
The output of the sensor is fairly linear, but the accuracy is not sufficient to measure the absolute strength of light. These are best used to detect the presence or absence of light or to a get rough idea of how much light is striking the sensor.
Here are some measured resistance values from a sample that we tested compared to LUX falling on the sensor
LUX | LDR Resistance Value | Light Intensity |
0 | > 2M | Dark room |
10 | 12K | Very dim room |
300 | 2K | Moderate room light |
1000 | 900 | Overcast daylight |
20,000 | 100 | Next to fluorescent bulb |
The simple program below reads the output of the sensor using an analog port and outputs the raw data to the Serial Monitor window. Circuit hook-up is per the schematic shown above. Change lighting on the sensor to see the effect.
Changing the 10K resistor to a different value can be used to change the range of the analog output if desired. That may be useful when working with very bright or very dim light levels.
For fun, try changing the delay(1000) to something shorter such as delay(100) and use the Serial Plotter window to view the output while putting different light on the sensor. The plot shown to the right is an example output.
/* Photoresistor Light Sensor Module Test Basic code for reading the analog output of the light sensor module */ const int ANALOGPIN = A0; // Set to any analog input pin int rawValue = 0; // Returned ADC reading from sensor //=============================================================================== // Initialization //=============================================================================== void setup() { pinMode (ANALOGPIN, INPUT); Serial.begin(9600); // Set comm speed for debug window messages } //=============================================================================== // Main //=============================================================================== void loop() { rawValue = analogRead (ANALOGPIN); // Read sensor input Serial.print ("Reading Raw: "); Serial.println (rawValue); delay (1000); }
Notes:
Operating Ratings | Max Voltage | 250V |
Max Power Dissipation | 200mW | |
Dark Resistance | > 1M Ohms | |
Peak Detection Wavelength | 540nm (similar to human eye) | |
Dimensions | Sensor Diameter | 20mm |
Lead Diameter | 0.9mm (0.36″) | |
Lead Length | 26mm (1″) |
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.
Standard: 9-15 business days. Express: 4-7 business days.
Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.
All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.
Receive our latest updates about our products & promotions.
Thanks for subscribing!
This email has been registered!