

The RP LiDAR C1, manufactured by SLAMTEC, is a compact and high-performance LiDAR sensor designed for precise distance measurement and 3D mapping. Utilizing advanced laser technology, the RP LiDAR C1 captures detailed spatial data, making it an essential component for applications in robotics, autonomous vehicles, geographic information systems (GIS), and other fields requiring accurate environmental mapping.








| Parameter | Specification |
|---|---|
| Measurement Range | 0.15 m to 12 m |
| Angular Resolution | 0.5° to 1° |
| Scanning Frequency | 5 Hz to 10 Hz |
| Laser Wavelength | 785 nm (Infrared) |
| Power Supply Voltage | 5 V DC |
| Power Consumption | ≤ 2.5 W |
| Communication Interface | UART (3.3V TTL) |
| Operating Temperature Range | 0°C to 40°C |
| Dimensions | 70 mm × 70 mm × 41 mm |
| Weight | 190 g |
The RP LiDAR C1 uses a 5-pin connector for power and communication. The pinout is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | VCC | Power input (5 V DC) |
| 2 | GND | Ground |
| 3 | TX | UART Transmit (3.3V TTL) |
| 4 | RX | UART Receive (3.3V TTL) |
| 5 | Motor Control | PWM signal for controlling the motor speed |
Below is an example of how to connect and use the RP LiDAR C1 with an Arduino UNO:
| RP LiDAR C1 Pin | Arduino UNO Pin |
|---|---|
| VCC | 5V |
| GND | GND |
| TX | RX (Pin 0) |
| RX | TX (Pin 1) |
| Motor Control | PWM Pin (e.g., Pin 9) |
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial lidarSerial(10, 11); // RX = Pin 10, TX = Pin 11
void setup() {
Serial.begin(9600); // Initialize Serial Monitor
lidarSerial.begin(115200); // Initialize LiDAR UART communication
// Send initialization message
Serial.println("RP LiDAR C1 Initialized");
}
void loop() {
if (lidarSerial.available()) {
// Read data from LiDAR and send it to Serial Monitor
char data = lidarSerial.read();
Serial.print(data);
}
}
Note: Use a logic level shifter if the Arduino operates at 5V logic levels to avoid damaging the LiDAR's 3.3V UART pins.
No Data Output:
Inaccurate Measurements:
Motor Not Spinning:
Device Overheating:
Q: Can the RP LiDAR C1 be used outdoors?
Q: What is the maximum range of the RP LiDAR C1?
Q: Is the RP LiDAR C1 compatible with Raspberry Pi?
Q: How do I control the scanning speed?
This concludes the documentation for the RP LiDAR C1. For further details, refer to the official SLAMTEC user manual.