

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 moving objects even through certain non-metallic materials like walls or 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 | Specification |
|---|---|
| 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 |
|---|---|
| VCC | Power supply input (4.0V to 28.0V DC) |
| GND | Ground connection |
| OUT | Output signal pin (High: motion detected, Low: no motion) |
| EN (optional) | Enable pin for controlling the module (active high) |
VCC pin to a DC power source (4.0V to 28.0V) and the GND pin to the ground of your circuit.OUT pin to interface with a microcontroller, relay, or other control circuitry. The output will be HIGH (3.3V) when motion is detected and LOW (0V) otherwise.EN pin, you can use it to enable or disable the sensor. Connect it to a HIGH signal (e.g., 3.3V) to enable the module.Below is an example of how to connect the Microwave Radar Doppler Motion Sensor Module to an Arduino UNO and read motion detection data.
VCC pin of the module to the 5V pin of the Arduino.GND pin of the module to the GND pin of the Arduino.OUT pin of the module to digital pin 2 of the Arduino.// Define the pin connected to the sensor's output
const int sensorPin = 2;
// Define the onboard LED pin
const int ledPin = 13;
void setup() {
pinMode(sensorPin, INPUT); // Set the sensor pin as input
pinMode(ledPin, OUTPUT); // Set the LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int motionDetected = digitalRead(sensorPin); // Read the 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 detected."); // Print message to serial monitor
}
delay(500); // Wait for 500ms before the next reading
}
False Triggers:
VCC and GND pins to stabilize the power supply.No Motion Detected:
Short Detection Range:
Interference with Other Devices:
Q1: Can the sensor detect motion through walls?
A1: Yes, the sensor can detect motion through non-metallic walls, but the detection range may be reduced.
Q2: Is the module affected by ambient temperature?
A2: No, the module uses microwave radar technology, which is not influenced by temperature changes.
Q3: Can I use this module outdoors?
A3: Yes, but ensure it is protected from direct exposure to water or extreme environmental conditions.
Q4: How do I increase the detection range?
A4: If your module has an adjustable potentiometer, you can increase the sensitivity to extend the range.