No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

ldlidar_ros2 package from ldlidar_ros2 repo

ldlidar_ros2

Package Summary

Tags No category tags.
Version 1.0.0
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ldrobotsensorteam/ldlidar_ros2.git
VCS Type git
VCS Version master
Last Updated 2023-03-12
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This is LDLiDAR ROS2 Package

Additional Links

No additional links.

Maintainers

  • David

Authors

No additional authors.

Instructions

step 0: get LiDAR ROS2 Package

cd ~

mkdir -p ldlidar_ros2_ws/src

cd ldlidar_ros2_ws/src

git clone  https://github.com/ldrobotSensorTeam/ldlidar_ros2.git

git submodule update --init --recursive

step 1: system setup

  • Connect the LiDAR to your system motherboard via an onboard serial port or usB-to-serial module (for example, CP2102 module).

  • Set the -x permission for the serial port device mounted by the radar in the system (for example, /dev/ttyUSB0)

    • In actual use, the LiDAR can be set according to the actual mounted status of your system, you can use ‘ls -l /dev’ command to view.
cd ~/ldlidar_ros2_ws

sudo chmod 777 /dev/ttyUSB0

  • Modify the port_name value in the Lanuch file corresponding to the radar product model under launch/, using ld14.launch.py as an example, as shown below.
#!/usr/bin/env python3
from launch import LaunchDescription
from launch_ros.actions import Node

'''
Parameter Description:
---
- Set laser scan directon: 
  1. Set counterclockwise, example: {'laser_scan_dir': True}
  2. Set clockwise,        example: {'laser_scan_dir': False}
- Angle crop setting, Mask data within the set angle range:
  1. Enable angle crop fuction:
    1.1. enable angle crop,  example: {'enable_angle_crop_func': True}
    1.2. disable angle crop, example: {'enable_angle_crop_func': False}
  2. Angle cropping interval setting:
  - The distance and intensity data within the set angle range will be set to 0.
  - angle >= 'angle_crop_min' and angle <= 'angle_crop_max' which is [angle_crop_min, angle_crop_max], unit is degress.
    example:
      {'angle_crop_min': 135.0}
      {'angle_crop_max': 225.0}
      which is [135.0, 225.0], angle unit is degress.
'''

def generate_launch_description():
  # LDROBOT LiDAR publisher node
  ldlidar_node = Node(
      package='ldlidar_ros2',
      executable='ldlidar_ros2_node',
      name='ldlidar_publisher_ld14',
      output='screen',
      parameters=[
        {'product_name': 'LDLiDAR_LD14'},
        {'laser_scan_topic_name': 'scan'},
        {'point_cloud_2d_topic_name': 'pointcloud2d'},
        {'frame_id': 'base_laser'},
        {'port_name': '/dev/ttyUSB0'},
        {'serial_baudrate' : 115200},
        {'laser_scan_dir': True},
        {'enable_angle_crop_func': False},
        {'angle_crop_min': 135.0},
        {'angle_crop_max': 225.0}
      ]
  )

  # base_link to base_laser tf node
  base_link_to_laser_tf_node = Node(
    package='tf2_ros',
    executable='static_transform_publisher',
    name='base_link_to_base_laser_ld14',
    arguments=['0','0','0.18','0','0','0','base_link','base_laser']
  )


  # Define LaunchDescription variable
  ld = LaunchDescription()

  ld.add_action(ldlidar_node)
  ld.add_action(base_link_to_laser_tf_node)

  return ld

step 2: build

Run the following command.

cd ~/ldlidar_ros2_ws

colcon build

step 3: run

step3.1: package environment variable settings

  • After the compilation is completed, you need to add the relevant files generated by the compilation to the environment variables, so that the ROS environment can recognize them. The execution command is as follows. This command is to temporarily add environment variables to the terminal, which means that if you reopen a new terminal, you also need to re-execute it. The following command.
  cd ~/ldlidar_ros2_ws
  
  source install/local_setup.bash
  
  • In order to never need to execute the above command to add environment variables after reopening the terminal, you can do the following.
  echo "source ~/ldlidar_ros2_ws/install/local_setup.bash" >> ~/.bashrc
  
  source ~/.bashrc
  

step3.2: start LiDAR node

  • The product is LDROBOT LiDAR LD14
    • start ld14 lidar node:
  ros2 launch ldlidar_ros2 ld14.launch.py
  
  • start ld14 lidar node and show on the Rviz2:
  ros2 launch ldlidar_ros2 viewer_ld14.launch.py
  
  • The product is LDROBOT LiDAR LD14P
    • start ld14p lidar node:
  ros2 launch ldlidar_ros2 ld14p.launch.py
  
  • start ld14p lidar node and show on the Rviz2:
  ros2 launch ldlidar_ros2 viewer_ld14p.launch.py
  
  • The product is LDROBOT LiDAR LD06
    • start ld06 lidar node:
  ros2 launch ldlidar_ros2 ld06.launch.py
  
  • start ld06 lidar node and show on the Rviz2:
  ros2 launch ldlidar_ros2 viewer_ld06.launch.py
  
  • The product is LDROBOT LiDAR LD19
    • start ld19 lidar node:
  ros2 launch ldlidar_ros2 ld19.launch.py
  
  • start ld19 lidar node and show on the Rviz2:
  ros2 launch ldlidar_ros2 viewer_ld19.launch.py
  

step 4: Data visualization

The code supports ubuntu 20.04 ros2 foxy version and above, using rviz2 visualization.

  • new a terminal (Ctrl + Alt + T) and use Rviz2 tool(run command: rviz2) ,open the ldlidar.rviz file below the rviz2 folder of the readme file directory
rviz2

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ldlidar_ros2 at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.