* Rename openarm_bimanual_teleop to openarm_bimanual_bringup * Update package descriptions * Add quickstart link * Add note to source overlay * Add test installation step * Add poses and update default rviz config * Fix rev1 to match hardware * Align rev3 with hardware joint limits * Match hardware joint limits * Complete with more poses * Update README.md with moveit2 video * Add new READMEs in openarm_bringup and openarm_bimanual_moveit_config * Add octomap note
16 lines
595 B
Python
16 lines
595 B
Python
from launch import LaunchDescription
|
|
from launch.actions import IncludeLaunchDescription
|
|
from launch.launch_description_sources import PythonLaunchDescriptionSource
|
|
from launch_ros.substitutions import FindPackageShare
|
|
|
|
def generate_launch_description():
|
|
realsense_share_dir = FindPackageShare("realsense2_camera")
|
|
rs_launch_path = [realsense_share_dir, "/launch/rs_launch.py"]
|
|
|
|
return LaunchDescription([
|
|
IncludeLaunchDescription(
|
|
PythonLaunchDescriptionSource(rs_launch_path),
|
|
launch_arguments={"pointcloud.enable": "true"}.items()
|
|
)
|
|
])
|