The LD2410 is a microwave radar sensor module designed for motion detection and presence sensing. Operating in the 24 GHz frequency band, this sensor is highly effective in various applications, including security systems, lighting control, and automation. Its ability to detect motion through non-metallic materials makes it a versatile choice for both indoor and outdoor use.
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Operating Current | 50mA |
Frequency | 24 GHz |
Detection Range | Up to 10 meters |
Detection Angle | 120 degrees |
Output Type | Digital (High/Low) |
Operating Temperature | -20°C to 60°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (5V DC) |
2 | GND | Ground |
3 | OUT | Digital output (High/Low) |
4 | NC | Not connected |
5 | NC | Not connected |
6 | NC | Not connected |
Below is an example code to interface the LD2410 with an Arduino UNO:
// Define the pin connected to the LD2410 OUT pin
const int sensorPin = 2; // Digital pin 2
void setup() {
// Initialize the serial communication
Serial.begin(9600);
// Set the sensor pin as input
pinMode(sensorPin, INPUT);
}
void loop() {
// Read the sensor output
int sensorValue = digitalRead(sensorPin);
// Check if motion is detected
if (sensorValue == HIGH) {
Serial.println("Motion Detected!");
} else {
Serial.println("No Motion");
}
// Small delay to avoid flooding the serial monitor
delay(500);
}
False Triggers:
No Detection:
Intermittent Detection:
Q1: Can the LD2410 detect motion through walls?
Q2: What is the maximum detection range of the LD2410?
Q3: Can I use the LD2410 outdoors?
Q4: How do I adjust the detection range and sensitivity?
By following this documentation, users can effectively integrate the LD2410 microwave radar sensor module into their projects, ensuring reliable motion detection and presence sensing.