RCWL-0516 Microwave Radar Motion Sensor Module – 3.3V Output

Product Highlights

  • Microwave Doppler Tech: Advanced motion detection that works through walls, wood, and plastic.
  • Superior to PIR: Not affected by ambient temperature; provides higher sensitivity and longer range.
  • 3.3V Logic Output: Direct plug-and-play compatibility with ESP32, STM32, and Raspberry Pi.
  • Wide Operating Voltage: Flexible power input from 4V to 28V DC (5V recommended).
  • 360° Detection: Capable of sensing motion in all directions with a range of up to 7 meters.
  • All-Weather Reliability: Works perfectly in total darkness or high-heat environments.
SKU: EK1942 Categories: , Tags: ,

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

75,00 EGP

20 People watching this product now!

Payment Methods:

Description

Product Description

The RCWL-0516 Microwave Radar Motion Sensor Module is an advanced motion detection sensor that uses microwave Doppler radar to accurately detect moving objects through materials like wood, plastic, and even thin metal. Unlike traditional passive infrared (PIR) sensors, the RCWL-0516 is not affected by ambient temperature and can detect motion with high sensitivity and longer range.

Designed for integration with microcontrollers and embedded systems, this module provides a 3.3 V logic-level output, making it ideal for ESP32, STM32, Raspberry Pi (3.3 V I/O), and other 3.3 V-based platforms. It’s widely used in automation, security systems, smart lighting, robotics, and presence sensing applications.


✨ Key Features

  • Microwave Doppler radar motion sensing (CW radar)

  • 3.3 V output logic level (directly compatible with 3.3 V microcontrollers)

  • High sensitivity with adjustable detection range

  • Capable of detecting motion through thin materials

  • Works in all lighting conditions (day/night)

  • Low power consumption

  • Outputs digital HIGH when motion is detected

  • Small, compact module for easy integration

  • Ideal for security, automation, and smart systems


📐 Technical Specifications

🌟 General

  • Model: RCWL-0516

  • Sensing Type: Microwave Doppler radar (continuous wave)

  • Output Logic: 3.3 V

  • Operating Voltage: Typically 4 V to 28 V DC* (see note below)

  • Recommended Operating Voltage: 5 V with 3.3 V output logic level

  • Output: Digital HIGH when motion detected

  • Sensor Frequency: ~3.18 GHz microwave

  • Detection Range: Up to 5–7 m (varies with environment & installation)

  • Operating Temperature: ~-20 °C to +70 °C

  • Dimensions: Compact PCB module

* Although the module can be powered with a range including 4–28 V, the logic output will be at 3.3 V. Use level shifting if interfacing with 5 V microcontrollers without 3.3 V I/O compatibility.


🧰 Typical Applications

  • Motion-activated lighting systems

  • Security and intrusion detection

  • Smart home presence sensors

  • Robotics and autonomous systems

  • Automatic door triggers

  • Energy saving systems (e.g., HVAC control)

  • Interactive art and installations


🛠️ How It Works (Quick Overview)

  1. Power the module with a suitable DC supply (commonly 5 V).

  2. Mount the sensor facing the area to monitor.

  3. Connect the output to a 3.3 V microcontroller input (e.g., ESP32).

  4. When motion is detected, the output transitions HIGH (3.3 V).

  5. Use the signal in your code to trigger actions such as alerts or activation of devices.


📌 Notes & Tips

  • The module detects motion, not presence — it senses changes in microwave reflections.

  • Avoid placing the sensor near large metallic objects or sources of interference.

  • Fine-tune placement height and orientation to optimize detection range.

  • If used with 5 V microcontrollers (e.g., Arduino Uno), ensure proper level shifting if connecting output directly.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
RCWL-0516VIN/GND/OUT4-28V / GND / board digital pin (module outputs 3.3V logic)
📟
RCWL-0516 Microwave Radar Motion Sensor Module - 3.3V Output
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
RCWL-0516 Microwave Radar Motion Sensor Module - 3.3V Output - Arduino Uno
RCWL-0516 Microwave Radar Motion Sensor Module - 3.3V Output - Arduino Nano
RCWL-0516 Microwave Radar Motion Sensor Module - 3.3V Output - Arduino Mega
RCWL-0516 Microwave Radar Motion Sensor Module - 3.3V Output - ESP32
RCWL-0516 Microwave Radar Motion Sensor Module - 3.3V Output - ESP8266
RCWL-0516 Microwave Radar Motion Sensor Module - 3.3V Output - STM32
RCWL-0516 Microwave Radar Motion Sensor Module - 3.3V Output - Raspberry Pi Pico
📄 File: rcwl-0516_microwave_radar_motion_sensor_module_-_3.3v_output_-_arduino_uno.inoArduino Uno
325 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OUT pin 2 on Arduino Uno
6#define RADAR_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(RADAR_PIN, INPUT);
11}
12
13void loop() {
14 int detected = digitalRead(RADAR_PIN);
15 Serial.println(detected == HIGH ? "Presence/motion detected" : "Clear");
16 delay(200);
17}
📄 File: rcwl-0516_microwave_radar_motion_sensor_module_-_3.3v_output_-_arduino_nano.inoArduino Nano
326 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OUT pin 2 on Arduino Nano
6#define RADAR_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(RADAR_PIN, INPUT);
11}
12
13void loop() {
14 int detected = digitalRead(RADAR_PIN);
15 Serial.println(detected == HIGH ? "Presence/motion detected" : "Clear");
16 delay(200);
17}
📄 File: rcwl-0516_microwave_radar_motion_sensor_module_-_3.3v_output_-_arduino_mega.inoArduino Mega
326 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OUT pin 2 on Arduino Mega
6#define RADAR_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(RADAR_PIN, INPUT);
11}
12
13void loop() {
14 int detected = digitalRead(RADAR_PIN);
15 Serial.println(detected == HIGH ? "Presence/motion detected" : "Clear");
16 delay(200);
17}
📄 File: rcwl-0516_microwave_radar_motion_sensor_module_-_3.3v_output_-_esp32.inoESP32
319 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OUT pin 4 on ESP32
6#define RADAR_PIN 4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(RADAR_PIN, INPUT);
11}
12
13void loop() {
14 int detected = digitalRead(RADAR_PIN);
15 Serial.println(detected == HIGH ? "Presence/motion detected" : "Clear");
16 delay(200);
17}
📄 File: rcwl-0516_microwave_radar_motion_sensor_module_-_3.3v_output_-_esp8266.inoESP8266
323 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OUT pin D4 on ESP8266
6#define RADAR_PIN D4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(RADAR_PIN, INPUT);
11}
12
13void loop() {
14 int detected = digitalRead(RADAR_PIN);
15 Serial.println(detected == HIGH ? "Presence/motion detected" : "Clear");
16 delay(200);
17}
📄 File: rcwl-0516_microwave_radar_motion_sensor_module_-_3.3v_output_-_stm32.inoSTM32
323 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OUT pin PB4 on STM32
6#define RADAR_PIN PB4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(RADAR_PIN, INPUT);
11}
12
13void loop() {
14 int detected = digitalRead(RADAR_PIN);
15 Serial.println(detected == HIGH ? "Presence/motion detected" : "Clear");
16 delay(200);
17}
📄 File: rcwl-0516_microwave_radar_motion_sensor_module_-_3.3v_output_-_raspberry_pi_pico.inoRaspberry Pi Pico
331 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// OUT pin 2 on Raspberry Pi Pico
6#define RADAR_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(RADAR_PIN, INPUT);
11}
12
13void loop() {
14 int detected = digitalRead(RADAR_PIN);
15 Serial.println(detected == HIGH ? "Presence/motion detected" : "Clear");
16 delay(200);
17}
Doppler microwave motion sensor - simple digital output, no library needed.

نظرة عامة ومواصفات المنتج — بالعربية

RCWL-0516 Microwave Radar Motion Sensor Module – 3.3V Output متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم LiDAR Sensor وSensors، بسعر 75,00 EGP. كود المنتج لدينا: EK1942. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

أهم المواصفات الفنية:

  • Product Name: RCWL-0516 Microwave Radar Motion Sensor Module – 3.3V Output
  • Sensing Technology: Microwave Doppler Radar
  • Operating Frequency: 3.18 GHz
  • Output Signal: Digital (3.3V)
  • Operating Voltage: 4V – 28V
  • Detection Distance: 5 – 7 m
  • Detection Angle: Wide Coverage
  • Trigger Mode: Motion Detection

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من LiDAR Sensor في إكوسترا.

Specification

Specification

WeightWeight6 g
Dimensions3,5 × 1,7 × 0,3 cm
Product NameRCWL-0516 Microwave Radar Motion Sensor Module – 3.3V Output
Sensing TechnologyMicrowave Doppler Radar
Operating Frequency3.18 GHz
Output SignalDigital (3.3V)
Operating Voltage4V – 28V
Detection Distance5 – 7 m
Detection AngleWide Coverage
Trigger ModeMotion Detection
Response TimeFast
Power ConsumptionLow Power
ApplicationMotion Detection, Security Systems, Automatic Lighting, IoT Projects

Customer Reviews