Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
# urg_node2_nl (No Lifecycle) - No Lifecycle management ROS2 driver for Hokuyo URG

# Overview
This package provides a ROS2 driver for the Hokuyo URG series of laser range finders without lifecycle management. It allows for easy integration of the URG sensors into ROS2-based systems.

# Features
- Real-time laser scan data acquisition
- Support for various URG models
- Simple configuration and setup
- No lifecycle management for straightforward operation

# Installation
To install the package, clone the repository into your ROS2 workspace and build it using colcon

Copilot AI Dec 7, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing period at the end of the sentence. Add a period after "colcon".

Suggested change
To install the package, clone the repository into your ROS2 workspace and build it using colcon
To install the package, clone the repository into your ROS2 workspace and build it using colcon.

Copilot uses AI. Check for mistakes.
```bash
cd ~/ros2_ws/src
git clone --recursive <repository_url>

Copilot AI Dec 7, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The placeholder <repository_url> should be replaced with the actual repository URL. Users need a concrete URL to clone the repository.

Suggested change
git clone --recursive <repository_url>
git clone --recursive https://github.com/ros-drivers/urg_node2_nl.git

Copilot uses AI. Check for mistakes.
cd ~/ros2_ws
colcon build --packages-select urg_node2_nl
```