

The LDR Board V1 by NeoOrbit Dynamics (Part ID: 000001) is a compact and efficient light-sensing module designed to detect and respond to varying light intensities. At its core, the board features a Light Dependent Resistor (LDR) that adjusts its resistance based on the ambient light level. This makes it an ideal choice for applications requiring light detection and automation.








The following table outlines the key technical details of the LDR Board V1:
| Parameter | Specification |
|---|---|
| Operating Voltage | 3.3V to 5V DC |
| Output Type | Analog voltage (proportional to light intensity) |
| LDR Resistance Range | 1 kΩ (bright light) to 1 MΩ (darkness) |
| Board Dimensions | 25mm x 20mm x 5mm |
| Operating Temperature | -10°C to 50°C |
| Power Consumption | < 10 mW |
The LDR Board V1 has a simple 3-pin interface:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (3.3V to 5V DC) |
| 2 | GND | Ground connection |
| 3 | OUT | Analog output voltage proportional to light intensity |
VCC pin to a 3.3V or 5V DC 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 light intensity.OUT pin varies with light intensity:OUT pin and GND to stabilize the signal.Below is an example of how to use the LDR Board V1 with an Arduino UNO to read light intensity and display the value in the Serial Monitor.
// Define the analog pin connected to the LDR Board V1
const int ldrPin = A0; // Connect the OUT pin of the LDR Board to A0
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(ldrPin, INPUT); // Set the LDR pin as an input
}
void loop() {
int ldrValue = analogRead(ldrPin); // Read the analog value from the LDR Board
float voltage = (ldrValue / 1023.0) * 5.0; // Convert the reading to voltage
// Print the light intensity value to the Serial Monitor
Serial.print("LDR Value: ");
Serial.print(ldrValue);
Serial.print(" | Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(500); // Wait for 500ms before the next reading
}
No Output Voltage
VCC and GND pins are properly connected to a 3.3V or 5V power source.Fluctuating Output
OUT pin and GND. Ensure the power supply is stable.Output Voltage Does Not Change with Light
Arduino Reads Incorrect Values
Q: Can the LDR Board V1 be used outdoors?
A: Yes, but it should be housed in a weatherproof enclosure to protect it from moisture and extreme temperatures.
Q: What is the maximum distance between the LDR Board and the microcontroller?
A: For best performance, keep the distance under 1 meter to minimize signal degradation.
Q: Can I use the LDR Board V1 with a 3.3V microcontroller?
A: Yes, the board is compatible with both 3.3V and 5V systems.
Q: How do I calibrate the LDR Board for specific light levels?
A: Use the analog output values to map the light intensity range in your application. You can adjust thresholds in your code based on the output readings.
This concludes the documentation for the LDR Board V1. For further assistance, please contact NeoOrbit Dynamics support.