

The Microwave Radar Doppler Motion Sensor Module is a highly sensitive motion detection device that operates using microwave radar technology. It detects motion by measuring the Doppler effect of reflected microwave signals, making it capable of sensing movement through non-metallic objects such as walls, glass, and plastic. Unlike traditional PIR (Passive Infrared) sensors, this module is not affected by ambient temperature changes, making it suitable for a wide range of environments.








Below are the key technical details of the Microwave Radar Doppler Motion Sensor Module:
| Parameter | Value |
|---|---|
| Operating Voltage | 4.0V to 28.0V DC |
| Operating Current | ≤ 3mA |
| Detection Range | 5 to 15 meters (adjustable) |
| Operating Frequency | 10.525 GHz |
| Output Voltage (High) | 3.3V |
| Output Voltage (Low) | 0V |
| Detection Angle | 360° (omnidirectional) |
| Operating Temperature | -20°C to +80°C |
| Dimensions | ~35mm x 17mm x 8mm |
The module typically has three or four pins, depending on the model. Below is the pin configuration:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (4.0V to 28.0V DC). Connect to the positive terminal of the power source. |
| 2 | GND | Ground. Connect to the negative terminal of the power source. |
| 3 | OUT | Output signal pin. Outputs HIGH (3.3V) when motion is detected, otherwise LOW (0V). |
| 4* | EN (Enable) | Optional pin for enabling/disabling the module (not present on all models). |
*Note: The EN pin is optional and may not be available on all versions of the module.
VCC pin to a DC power source (4.0V to 28.0V) and the GND pin to ground.OUT pin to interface with a microcontroller, relay, or other control circuit. The pin will output a HIGH signal (3.3V) when motion is detected.Below is an example of how to connect the Microwave Radar Doppler Motion Sensor Module to an Arduino UNO and read motion detection signals.
VCC pin of the module to the Arduino's 5V pin.GND pin of the module to the Arduino's GND pin.OUT pin of the module to a digital input pin on the Arduino (e.g., D2).// Define the pin connected to the sensor's OUT pin
const int motionPin = 2; // Digital pin 2
const int ledPin = 13; // Built-in LED pin for indication
void setup() {
pinMode(motionPin, INPUT); // Set motionPin as input
pinMode(ledPin, OUTPUT); // Set ledPin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int motionDetected = digitalRead(motionPin); // Read the sensor output
if (motionDetected == HIGH) {
// Motion detected
digitalWrite(ledPin, HIGH); // Turn on the LED
Serial.println("Motion detected!");
} else {
// No motion detected
digitalWrite(ledPin, LOW); // Turn off the LED
Serial.println("No motion.");
}
delay(500); // Wait for 500ms before the next reading
}
No Motion Detected
False Triggers
Short Detection Range
Output Signal Stuck HIGH or LOW
Q: Can the module detect motion through walls?
A: Yes, the module can detect motion through non-metallic walls, glass, and plastic. However, the detection range may be reduced depending on the material's thickness and density.
Q: Is the module affected by temperature changes?
A: No, unlike PIR sensors, the Microwave Radar Doppler Motion Sensor Module is not affected by ambient temperature changes.
Q: Can I use this module outdoors?
A: The module can be used outdoors if it is protected from moisture and extreme environmental conditions. Consider using a weatherproof enclosure.
Q: How do I adjust the detection range?
A: Some modules include a potentiometer or jumper for adjusting the detection range. Refer to the specific module's datasheet for instructions.
This documentation provides a comprehensive guide to understanding, using, and troubleshooting the Microwave Radar Doppler Motion Sensor Module.