

The Photosensitive Sensor (Keyes K853518) is a device designed to detect light levels and convert them into an electrical signal. This sensor is widely used in applications such as automatic lighting systems, photography, and light-sensitive alarms. Its ability to measure ambient light intensity makes it an essential component in various light-dependent systems.








The following table outlines the key technical details of the Keyes K853518 Photosensitive Sensor:
| Parameter | Specification |
|---|---|
| Operating Voltage | 3.3V - 5V |
| Output Type | Analog (voltage varies with light) |
| Sensitivity Range | 0 - 1000 Lux |
| Operating Temperature | -20°C to 70°C |
| Dimensions | 30mm x 20mm x 10mm |
| Manufacturer Part ID | K853518 |
The Keyes K853518 Photosensitive Sensor has a 3-pin interface. The pin configuration is as follows:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply pin (3.3V - 5V) |
| 2 | GND | Ground pin |
| 3 | OUT | Analog output pin (voltage proportional to light) |
VCC pin to a 3.3V or 5V power source and the GND pin to the ground of your circuit.OUT pin to an analog input pin of a microcontroller (e.g., Arduino UNO) or an analog-to-digital converter (ADC) to measure the voltage output.OUT pin varies with the intensity of light. Higher light levels result in higher output voltage.Below is an example code snippet to read light intensity using the Keyes K853518 Photosensitive Sensor with an Arduino UNO:
// Define the analog pin connected to the sensor's OUT pin
const int sensorPin = A0;
// Variable to store the sensor reading
int sensorValue;
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read the analog value from the sensor
sensorValue = analogRead(sensorPin);
// Convert the analog value to a voltage (assuming 5V reference)
float voltage = sensorValue * (5.0 / 1023.0);
// Print the sensor value and voltage to the Serial Monitor
Serial.print("Sensor Value: ");
Serial.print(sensorValue);
Serial.print(" | Voltage: ");
Serial.println(voltage);
// Add a short delay before the next reading
delay(500);
}
analogRead() function reads a value between 0 and 1023, corresponding to 0V to 5V.No Output or Incorrect Readings
Output Voltage Stuck at Maximum or Minimum
Fluctuating Readings
VCC and GND pins to stabilize the power supply.Q: Can this sensor detect specific wavelengths of light?
A: No, the Keyes K853518 Photosensitive Sensor is designed to measure overall light intensity and does not differentiate between specific wavelengths.
Q: Can I use this sensor outdoors?
A: Yes, but ensure it is protected from moisture and extreme environmental conditions to prevent damage.
Q: What is the maximum distance for accurate light detection?
A: The sensor does not have a fixed detection range, as it measures ambient light intensity rather than distance. Ensure it is placed in an unobstructed area for accurate readings.
Q: Can I use this sensor with a 3.3V microcontroller?
A: Yes, the sensor operates within a voltage range of 3.3V to 5V, making it compatible with 3.3V microcontrollers like the ESP32 or Raspberry Pi Pico.
By following this documentation, you can effectively integrate the Keyes K853518 Photosensitive Sensor into your projects and troubleshoot any issues that arise.