

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 ideal for a wide range of applications.








The following table outlines 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 |
| Output Signal Type | Digital (High/Low) |
| 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 specific model. Below is the pin configuration:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (4.0V to 28.0V DC). |
| 2 | GND | Ground connection. |
| 3 | OUT | Digital output pin. Outputs HIGH (3.3V) when motion is detected, LOW (0V) otherwise. |
| 4* | EN (optional) | Enable pin for controlling 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 a microcontroller input pin or directly to a load (e.g., an LED or relay) for motion detection.Below is an example of how to connect the Microwave Radar Doppler Motion Sensor Module to an Arduino UNO and use it to control an LED:
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 Arduino digital pin 2.13 (with a 220-ohm resistor in series).// Define the pin connections
const int motionPin = 2; // Pin connected to the module's OUT pin
const int ledPin = 13; // Pin connected to the LED
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 motion sensor output
if (motionDetected == HIGH) { // If motion is detected
digitalWrite(ledPin, HIGH); // Turn on the LED
Serial.println("Motion detected!"); // Print message to serial monitor
} else {
digitalWrite(ledPin, LOW); // Turn off the LED
Serial.println("No motion."); // Print message to serial monitor
}
delay(100); // Small delay to stabilize readings
}
No Motion Detected:
VCC and GND connections).False Triggers:
Output Signal Not Changing:
OUT pin is connected to the correct input pin on the microcontroller.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: How does this module compare to PIR sensors?
A: Unlike PIR sensors, which rely on detecting infrared radiation, this module uses microwave radar technology. It is less affected by ambient temperature changes and can detect motion through certain materials.
Q: Can I use this module outdoors?
A: The module can operate in a wide temperature range (-20°C to +80°C), but it should be protected from direct exposure to rain or moisture to ensure reliable operation.
Q: Is the detection range adjustable?
A: Yes, many modules include a potentiometer or jumper to adjust the detection range. Refer to your specific module's datasheet for details.