update bringup: added cam node

This commit is contained in:
Björn Ellensohn 2023-06-01 08:56:52 +02:00
parent 0ca8fa6db8
commit f31b49ba66

View File

@ -78,11 +78,17 @@ def generate_launch_description():
executable="rmp220_teleop"
)
cam_node = Node(
package="ros2_cam_openCV",
executable="cam_node"
)
return LaunchDescription([
control_node,
robot_state_pub_node,
joint_state_broadcaster_spawner,
robot_controller_spawner,
joystick_spawner,
teleop_spawner
teleop_spawner,
cam_node
])