The 10.525GHz Doppler Effect Microwave Motion Sensor by CQRobot is a sophisticated sensor designed to detect motion through the Doppler effect. It emits microwaves at a frequency of 10.525GHz and measures the frequency shift of the reflected waves to determine the presence and movement of objects. This sensor is highly effective in various applications, including security systems, automatic lighting, and industrial automation.
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Operating Current | 30mA |
Frequency | 10.525GHz |
Detection Range | Up to 20 meters |
Output Type | Digital (High/Low) |
Operating Temperature | -20°C to +60°C |
Dimensions | 45mm x 40mm x 10mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (5V DC) |
2 | GND | Ground |
3 | OUT | Digital output (High/Low) |
4 | EN | Enable pin (active high) |
/*
* Example code to interface the 10.525GHz Doppler Effect Microwave Motion
* Sensor with an Arduino UNO.
*/
const int sensorPin = 2; // Pin connected to the sensor's OUT pin
const int ledPin = 13; // Pin connected to an LED for indication
void setup() {
pinMode(sensorPin, INPUT); // Set sensor pin as input
pinMode(ledPin, OUTPUT); // Set LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = digitalRead(sensorPin); // Read the sensor output
if (sensorValue == HIGH) {
digitalWrite(ledPin, HIGH); // Turn on the LED if motion is detected
Serial.println("Motion detected!");
} else {
digitalWrite(ledPin, LOW); // Turn off the LED if no motion is detected
Serial.println("No motion.");
}
delay(100); // Small delay to avoid serial flooding
}
Q: Can the sensor detect motion through walls? A: The sensor can detect motion through certain materials, but its effectiveness is reduced. It is best used in open spaces.
Q: What is the maximum detection range? A: The sensor can detect motion up to 20 meters in optimal conditions.
Q: Can I use the sensor outdoors? A: The sensor can be used outdoors, but it should be protected from direct exposure to harsh weather conditions.
Q: How do I adjust the sensitivity? A: The sensitivity is fixed and cannot be adjusted. However, placement and environmental factors can affect detection performance.
This documentation provides a comprehensive guide to using the 10.525GHz Doppler Effect Microwave Motion Sensor by CQRobot. Whether you are a beginner or an experienced user, following these guidelines will help you effectively integrate this sensor into your projects.