

The Radar HLK-LD 2413 is a compact radar sensor designed for distance measurement and object detection. Operating in the 24 GHz frequency range, this sensor offers high accuracy and reliability, making it suitable for a wide range of applications. Its small form factor and robust design allow it to perform effectively in challenging environments.








Below are the key technical details of the Radar HLK-LD 2413:
| Parameter | Value |
|---|---|
| Operating Frequency | 24 GHz |
| Detection Range | 0.3 m to 30 m |
| Operating Voltage | 5 V DC |
| Operating Current | ≤ 60 mA |
| Output Interface | UART (TTL level) |
| Communication Baud Rate | 115200 bps |
| Detection Angle | ±15° |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 25 mm x 25 mm x 6 mm |
The Radar HLK-LD 2413 has a 4-pin interface for power and communication. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (5 V DC) |
| 2 | GND | Ground |
| 3 | TX | UART Transmit (data output from the radar module) |
| 4 | RX | UART Receive (data input to the radar module) |
VCC pin to a stable 5 V DC power source and the GND pin to the ground of your circuit.TX pin of the radar module to the RX pin of your microcontroller (e.g., Arduino UNO) and the RX pin of the radar module to the TX pin of the microcontroller.Below is an example Arduino sketch to interface with the Radar HLK-LD 2413 and read data via UART:
// Example code to interface with Radar HLK-LD 2413 using Arduino UNO
// This code reads data from the radar module and prints it to the Serial Monitor.
#include <SoftwareSerial.h>
// Define the RX and TX pins for SoftwareSerial
SoftwareSerial radarSerial(2, 3); // RX = Pin 2, TX = Pin 3
void setup() {
// Initialize hardware serial for debugging
Serial.begin(9600);
Serial.println("Radar HLK-LD 2413 Test");
// Initialize software serial for radar communication
radarSerial.begin(115200); // Baud rate for radar module
}
void loop() {
// Check if data is available from the radar module
if (radarSerial.available()) {
// Read and print the data from the radar module
String radarData = radarSerial.readStringUntil('\n');
Serial.println("Radar Data: " + radarData);
}
delay(100); // Small delay to avoid flooding the Serial Monitor
}
No Data Received from the Radar Module
Inaccurate Distance Measurements
Module Overheating
Intermittent Communication
Q1: Can the Radar HLK-LD 2413 detect multiple objects simultaneously?
A1: No, the module is designed to detect the nearest object within its detection range.
Q2: Is the module waterproof?
A2: No, the Radar HLK-LD 2413 is not waterproof. It should be used in environments where it is protected from moisture.
Q3: Can I use the module with a 3.3 V microcontroller?
A3: Yes, but you will need a level shifter to safely interface the 5 V logic of the radar module with the 3.3 V logic of your microcontroller.
Q4: What is the maximum detection range of the module?
A4: The Radar HLK-LD 2413 can detect objects up to 30 meters away under optimal conditions.