Mh 100X Microwave Induction Module
Rs. 554.00 Rs. 682.00
- Product Code: SEN-MICROWAVE
- SKU -
- Availability: In Stock
- Price in reward points: 8
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
Operating voltage | 5V |
Operating current (CW) | 50mA max., 30mA typical |
Size | R = 30.6 mm |
Detection distance | used with adapter plate or control circuit below, 2-16 m continuously adjustable (minimum 2 m, maximum 16 m) |
Helium Frequency | 10.525 GHz |
Frequency setting accuracy | 3 MHz |
Output Power (Minimum) | 13dBm EIRP |
Harmonic emission | <-10 dBm |
Average current (5% DC) | 2 mA typ. |
Pulse Width (min.) | 5 uSec |
Duty Cycle (min.) | 1% |
Sensitivity (10 dB S / N factor) 3 Hz to 80 Hz bandwidth | -86dBm |
10.3 Hz to 80 Hz | 10uV bandwidth |
Antenna Gain | 8dBi |
Vertical Beam Width 3 dB | 36 degrees |
Water Level 3 dB Beam Width | 72 degrees |
OVERVIEW:
-Operating voltage: 5V
-Range: 2 - 16 meters
-Onboard dower LED
-Onboard detection LED
-Arduino Compatible
PACKAGE INCLUDES:
1 PCS x Mh 100X Microwave Induction Module
//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