A high-performance Python library for interfacing with the RPLidar C1 360-degree laser scanner. This library provides a fully asynchronous API for non-blocking operation, enabling efficient control of the RPLidar device and real-time processing of scan data. Built with modern Python async/await syntax and designed with minimal external dependencies (only pyserial required), it offers a lightweight yet powerful solution for robotics and sensing applications.
Project description
RPLidarC1
A Python library for interfacing with the RPLidar C1 360-degree laser scanner. This library provides an asynchronous API for controlling the RPLidar device and processing scan data.
Features
- Asynchronous API for non-blocking operation
- Simple interface for connecting to and controlling the RPLidar device
- Health status checking
- Device reset functionality
- Scan data processing with angle and distance measurements
- Support for both queue-based and dictionary-based data output
Requirements
- Python 3.10+ (for asyncio TaskGroup support)
- pyserial
Installation
# Clone the repository
git clone https://github.com/yourusername/rplidarc1.git
cd rplidarc1
# Install dependencies
pip install pyserial
Usage
Basic Usage
from scanner import RPLidar
import asyncio
# Initialize the RPLidar with the appropriate port and baudrate
lidar = RPLidar("/dev/ttyUSB0", 460800)
# Perform a simple scan
async def scan_example():
# Start a scan and get the coroutine
scan_coroutine = lidar.simple_scan()
# Create a task to process the scan data
async with asyncio.TaskGroup() as tg:
tg.create_task(scan_coroutine)
# Add other tasks as needed
# Reset the device when done
lidar.reset()
# Run the example
try:
asyncio.run(scan_example())
except KeyboardInterrupt:
# Ensure proper shutdown on keyboard interrupt
lidar.reset()
Processing Scan Data
from scanner import RPLidar
import asyncio
lidar = RPLidar("/dev/ttyUSB0", 460800)
async def process_scan_data():
# Start a scan with dictionary output
async with asyncio.TaskGroup() as tg:
# Create a task to stop scanning after 5 seconds
tg.create_task(wait_and_stop(5, lidar.stop_event))
# Create a task to process data from the queue
tg.create_task(process_queue(lidar.output_queue, lidar.stop_event))
# Start the scan with dictionary output
tg.create_task(lidar.simple_scan(make_return_dict=True))
# Access the scan data dictionary
print(lidar.output_dict)
# Reset the device
lidar.reset()
async def wait_and_stop(seconds, event):
await asyncio.sleep(seconds)
event.set()
async def process_queue(queue, stop_event):
while not stop_event.is_set():
if not queue.empty():
data = await queue.get()
# Process the data
print(f"Angle: {data['a_deg']}°, Distance: {data['d_mm']}mm, Quality: {data['q']}")
else:
await asyncio.sleep(0.1)
# Run the example
try:
asyncio.run(process_scan_data())
except KeyboardInterrupt:
lidar.reset()
API Reference
RPLidar Class
RPLidar(port="/dev/ttyUSB0", baudrate=460800, timeout=0.2)
Parameters:
port(str): Serial port to connect tobaudrate(int): Baud rate for the serial connectiontimeout(float): Timeout for serial operations
Methods:
healthcheck(): Check the health status of the deviceshutdown(): Properly shut down the devicereset(): Reset the devicesimple_scan(make_return_dict=False): Start a scan and return a coroutine for processing scan datamake_return_dict(bool): If True, scan data will also be stored inoutput_dict
Properties:
output_queue(asyncio.Queue): Queue containing scan dataoutput_dict(dict): Dictionary containing scan data (angle -> distance)stop_event(asyncio.Event): Event to signal stopping the scan
Data Format
Scan data is provided in the following format:
{
"a_deg": 45.33, # Angle in degrees (0-360)
"d_mm": 1250, # Distance in millimeters
"q": 15 # Quality of the measurement (0-63)
}
Project Structure
scanner.py: Main RPLidar class implementationprotocol.py: Implementation of the RPLidar communication protocolserial_handler.py: Serial connection managementutils.py: Utility classes and functionsexamples/: Example scripts demonstrating usagetests/: Unit and integration tests
Testing
The project includes a comprehensive test suite that covers all major components of the library. The tests use pytest and mock the hardware to allow testing without an actual RPLidar device.
Running Tests
To run the tests, first install the testing dependencies:
pip install -r requirements.txt
Then run the tests using pytest:
pytest
For more information about the tests, see the tests README.
License
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rplidarc1-0.1.0.tar.gz.
File metadata
- Download URL: rplidarc1-0.1.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.2 Linux/6.11.0-21-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1705377ef7e1521a1568acc49b9244d446f44d890a8258f174ca11b53801c73f
|
|
| MD5 |
4a921e5de402490bee4b5015ffe9e6d3
|
|
| BLAKE2b-256 |
9c2f9d58fd177c592e3001b32e5b95df934f2bf61676ee3c815248eb087069ef
|
File details
Details for the file rplidarc1-0.1.0-py3-none-any.whl.
File metadata
- Download URL: rplidarc1-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.2 Linux/6.11.0-21-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd1062824b971bc0e8c6be0267b05c6b24759ff62ba3a91f3e2241d4aa178692
|
|
| MD5 |
04b478c4c402161c9e466fb05e70cf40
|
|
| BLAKE2b-256 |
5626bd6fa9931313c47d79adbc74246d1b2a3d167ff09aede37076d2ff48fa35
|