Wish List 0

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
>  The RCWL-0516 Microwave Radar Sensor module has been designed as an opportunity to the not unusual PIR motion sensors extensively utilized in burglar alarms and protection lighting. Like the PIR sensor, this sensor also detects handiest moves inside its detection variety.

>But in place of sniffing the black body radiation from a moving individual, this sensor uses a “microwave Doppler radar” method to discover shifting items. It has a sensitivity variety of ~7 meters. When induced, its TTL-degree output (OUT) pin will transfer from LOW (0 V) to HIGH (three.3 V) for a finite time (2 to three s) before returning to its idle (LOW) state                                                                                                    Features :
           1.  Transmission signal processing control chip RCWL-9196
           2. Wide operating voltage range 4.0V to 28.0V
           3. Penetrating detection capability, compared with the traditional infrared feeling PIR
           4. Adjustable Block time and distance
           5. 3.3V output power supply

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

Write a review

Please login or register to review