Hb100 Microwave Doppler Radar Wireless Motion Sensor
Rs. 164.00 Rs. 197.00
- Brand: https://agilsense.com/product/detail/hb100
- Product Code: SEN-MICROWAVE
- SKU -
- Availability: In Stock
- Price in reward points: 2
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
Supply Voltage (V) | 4.75 to 5.25 |
X-Band Frequency(GHz) | 10.525 |
Minimum Power Output | 13 dBm EIRP |
OVERVIEW:
-Low current consumption (typical 30 mA)
-CW or pulse operation
-Flat profile
-Long detection range (20 m)
-Supply voltage: 4.75V to 5.25V
-X-Band Frequency: 10.525 GHz
-Minimum Power Output: 13 dBm EIRP
PACKAGE INCLUDES:
1 PCS x Hb100 Microwave Doppler Radar Wireless Motion Sensor
https://agilsense.com/product/detail/hb100
//SOURCE CODE TAKEN FROM BELOW LINK
//https://theorycircuit.com/hb100-microwave-motion-sensor-interfacing-arduino/
#include “FreqPeriod.h”
double lfrq;
long int pp;
void setup() {
Serial.begin(9600);
FreqPeriod::begin();
Serial.println(“FreqPeriod Library Test”);
}
void loop() {
pp = FreqPeriod::getPeriod();
if (pp) {
Serial.print (“period: “);
Serial.print(pp);
Serial.print(“ 1/16us / frequency: “);
lfrq = 16000400.0 /pp;
Serial.print(lfrq);
Serial.print(“ Hz “);
Serial.print(lfrq/31.36);
Serial.println( “ Mph “);
}
}
15 days