Skip to content

Commit

Permalink
Updated demos 1, 10, 11, 12, 14
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauch committed Feb 29, 2024
1 parent 044db05 commit cf80391
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion example_1/bringup/launch/rrbot.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def generate_launch_description():
control_node = Node(
package="controller_manager",
executable="ros2_control_node",
parameters=[robot_description, robot_controllers],
parameters=[robot_controllers],
output="both",
)
robot_state_pub_node = Node(
Expand Down
2 changes: 1 addition & 1 deletion example_10/bringup/launch/rrbot.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def generate_launch_description():
control_node = Node(
package="controller_manager",
executable="ros2_control_node",
parameters=[robot_description, robot_controllers],
parameters=[robot_controllers],
output="both",
)
robot_state_pub_node = Node(
Expand Down
5 changes: 0 additions & 5 deletions example_11/bringup/launch/carlikebot.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ def generate_launch_description():
parameters=[robot_controllers],
output="both",
remappings=[
("~/robot_description", "/robot_description"),
("/bicycle_steering_controller/tf_odometry", "/tf"),
],
condition=IfCondition(remap_odometry_tf),
Expand All @@ -89,7 +88,6 @@ def generate_launch_description():
parameters=[robot_controllers],
output="both",
remappings=[
("~/robot_description", "/robot_description"),
],
condition=UnlessCondition(remap_odometry_tf),
)
Expand All @@ -98,9 +96,6 @@ def generate_launch_description():
executable="robot_state_publisher",
output="both",
parameters=[robot_description],
remappings=[
("~/robot_description", "/robot_description"),
],
)
rviz_node = Node(
package="rviz2",
Expand Down
2 changes: 1 addition & 1 deletion example_12/bringup/launch/rrbot.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def generate_launch_description():
control_node = Node(
package="controller_manager",
executable="ros2_control_node",
parameters=[robot_description, robot_controllers],
parameters=[robot_controllers],
output="both",
)
robot_state_pub_node = Node(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def generate_launch_description():
control_node = Node(
package="controller_manager",
executable="ros2_control_node",
parameters=[robot_description, robot_controllers],
parameters=[robot_controllers],
output="both",
)
robot_state_pub_node = Node(
Expand Down

0 comments on commit cf80391

Please sign in to comment.