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.

turtle_launch.py 348B

1234567891011121314
  1. from launch import LaunchDescription
  2. from launch_ros.actions import Node
  3. def generate_launch_description():
  4. return LaunchDescription([
  5. Node(
  6. package='turtlesim',
  7. executable='turtlesim_node',
  8. ),
  9. Node(
  10. package='turtlesim',
  11. executable='turtle_teleop_key',
  12. ),
  13. ])