The HB100 is a microwave Doppler radar sensor that operates at a frequency of 10.525 GHz. It is designed for motion detection and speed measurement by utilizing the Doppler effect. This compact and efficient sensor can detect the presence and movement of objects, making it ideal for a wide range of applications, including:
The HB100 is a versatile and reliable component, offering high sensitivity and low power consumption, making it suitable for both hobbyist and professional projects.
Parameter | Value |
---|---|
Operating Frequency | 10.525 GHz |
Operating Voltage | 4.75V to 5.25V DC |
Operating Current | 30 mA (typical) |
Output Signal | Analog IF signal (Doppler) |
Detection Range | Up to 20 meters (depending on target size and environment) |
Beam Angle | 80° (horizontal), 34° (vertical) |
Operating Temperature | -20°C to +75°C |
Dimensions | 46 mm x 38 mm x 8 mm |
The HB100 sensor has a 4-pin interface. The pin configuration is as follows:
Pin Number | Pin Name | Description |
---|---|---|
1 | IF Output | Intermediate frequency (Doppler signal output) |
2 | GND | Ground connection |
3 | VCC | Power supply (4.75V to 5.25V DC) |
4 | NC | Not connected (leave unconnected) |
Below is an example of how to connect the HB100 to an Arduino UNO and process the Doppler signal:
// HB100 Doppler Sensor Example with Arduino UNO
// This code reads the analog signal from the HB100 and prints the values
// to the Serial Monitor for analysis.
const int sensorPin = A0; // Pin connected to the IF Output of the HB100
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the analog value from the sensor
Serial.println(sensorValue); // Print the value to the Serial Monitor
delay(100); // Delay for 100ms to reduce the frequency of readings
}
No Output Signal:
Weak or Noisy Signal:
Interference from Nearby Objects:
Inconsistent Readings:
Q: Can the HB100 detect stationary objects?
A: No, the HB100 relies on the Doppler effect, which requires relative motion between the sensor and the object.
Q: What is the maximum detection range of the HB100?
A: The detection range is up to 20 meters, depending on the size and reflectivity of the target object and environmental conditions.
Q: Can the HB100 be used outdoors?
A: Yes, but it should be protected from extreme weather conditions and direct exposure to water.
Q: How can I calculate the speed of a moving object using the HB100?
A: You can calculate the speed by analyzing the frequency of the Doppler signal. The formula is:
[
v = \frac{f_d \cdot c}{2 \cdot f_0}
]
where (v) is the speed, (f_d) is the Doppler frequency, (c) is the speed of light, and (f_0) is the operating frequency (10.525 GHz).
By following this documentation, you can effectively integrate the HB100 Doppler sensor into your projects for motion detection and speed measurement.