ROS Components for hexapod_robot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5KB

  1. from launch import LaunchDescription
  2. from launch.substitutions import Command, FindExecutable, LaunchConfiguration, PathJoinSubstitution
  3. from launch_ros.actions import Node
  4. from launch_ros.substitutions import FindPackageShare
  5. def generate_launch_description():
  6. robot_description_content = Command([
  7. PathJoinSubstitution([FindExecutable(name="xacro")]),
  8. " ",
  9. PathJoinSubstitution(
  10. [
  11. FindPackageShare("hexapod_robot"),
  12. "urdf",
  13. "hexapod_robot.urdf.xacro"
  14. ]
  15. )
  16. ]
  17. )
  18. robot_description = {"robot_description": robot_description_content}
  19. rviz_node = Node(
  20. package="rviz2",
  21. executable="rviz2",
  22. arguments=['-d', PathJoinSubstitution([FindPackageShare("hexapod_robot"), "config", "hexapod_robot.rviz"])],
  23. name="rviz2",
  24. output="screen",
  25. )
  26. robot_state_publisher_node = Node(
  27. package="robot_state_publisher",
  28. executable="robot_state_publisher",
  29. parameters=[{
  30. 'robot_description': robot_description_content
  31. }]
  32. )
  33. joint_state_publisher_gui = Node(
  34. package="joint_state_publisher_gui",
  35. executable="joint_state_publisher_gui"
  36. )
  37. nodes = [
  38. rviz_node,
  39. robot_state_publisher_node,
  40. joint_state_publisher_gui
  41. ]
  42. return LaunchDescription(nodes)