Rcwl 0516 Microwave Radar Sensor
Rs. 31.00 Rs. 38.00
- Product Code: SEN-MICROWAVE
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS:
Operating Voltage(VDC) :4 to 28
Operating Current :2.8mA (typical); 3mA (max)
Detecting Range :5-9m
Transmitting Power :20mW (typical); 30mW (max)
Output Voltage(V) :3.2 to 3.4
Output Voltage Driving Capacity :100mA
Trigger Way :Repeat Trigger
Output Control Low Level :0V
Output Control High Level :3.3V
Operating Temperature (°C) :-20 to 80
OVERVIEW:
-Transmission signal processing control chip RCWL-9196
-Wide operating voltage range 4.0V to 28.0V
-Penetrating detection capability, compared with the traditional infrared feeling PIR
-Adjustable Block time and distance
-Operating Current: 2.8mA (typical); 3mA (max)
-Detection Distance: 5-9m
-Transmitting Power: 20mW (typical); 30mW (max)
PACKAGE INCLUDES:
1 PCS x Rcwl 0516 Microwave Radar Sensor
/*SOURCE CODE TAKEN FROM BELOW LINK
https://electropeak.com/learn/interfacing-rcwl-0516-microwave-radar-sensor-with-arduino/
on Sep 23, 2020
by MohammedDamirchi
https://electropeak.com/learn/
*/
const byte interruptPin = 2;
// the setup routine runs once when you press reset:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
pinMode(interruptPin, INPUT);
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
if (digitalRead(interruptPin) == HIGH) {
Serial.println("5");
digitalWrite(LED_BUILTIN, HIGH);
} else {
Serial.println("0");
digitalWrite(LED_BUILTIN, LOW);
}
delay(20);
}
15 days