@@ -52,7 +52,8 @@ def launch_setup():
5252
5353 alice_dashboard_client_node = Node (
5454 package = "ur_robot_driver" ,
55- condition = IfCondition (alice_launch_dashboard_client ) and UnlessCondition (alice_use_mock_hardware ),
55+ condition = IfCondition (alice_launch_dashboard_client )
56+ and UnlessCondition (alice_use_mock_hardware ),
5657 executable = "dashboard_client" ,
5758 name = "dashboard_client" ,
5859 namespace = "alice" ,
@@ -63,7 +64,8 @@ def launch_setup():
6364
6465 bob_dashboard_client_node = Node (
6566 package = "ur_robot_driver" ,
66- condition = IfCondition (bob_launch_dashboard_client ) and UnlessCondition (bob_use_mock_hardware ),
67+ condition = IfCondition (bob_launch_dashboard_client )
68+ and UnlessCondition (bob_use_mock_hardware ),
6769 executable = "dashboard_client" ,
6870 name = "dashboard_client" ,
6971 namespace = "bob" ,
@@ -306,14 +308,14 @@ def generate_launch_description():
306308 declared_arguments .append (
307309 DeclareLaunchArgument (
308310 "alice_robot_ip" ,
309- default_value = "192.168.0 .101" ,
311+ default_value = "192.168.57 .101" ,
310312 description = "IP address by which alice can be reached." ,
311313 )
312314 )
313315 declared_arguments .append (
314316 DeclareLaunchArgument (
315317 "bob_robot_ip" ,
316- default_value = "192.168.0 .100" ,
318+ default_value = "192.168.57 .100" ,
317319 description = "IP address by which bob can be reached." ,
318320 )
319321 )
@@ -420,9 +422,7 @@ def generate_launch_description():
420422 )
421423 )
422424 declared_arguments .append (
423- DeclareLaunchArgument (
424- "launch_rviz" , default_value = "true" , description = "Launch RViz?"
425- )
425+ DeclareLaunchArgument ("launch_rviz" , default_value = "true" , description = "Launch RViz?" )
426426 )
427427 declared_arguments .append (
428428 DeclareLaunchArgument (
0 commit comments