Skip to content

Commit e01dead

Browse files
committed
Use both alice and bob instead of generic robot
1 parent 140e4a0 commit e01dead

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

my_dual_robot_cell/my_dual_robot_cell_control/launch/start_robots.launch.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -307,14 +307,14 @@ def generate_launch_description():
307307
DeclareLaunchArgument(
308308
"alice_robot_ip",
309309
default_value="192.168.0.101",
310-
description="IP address by which the robot can be reached.",
310+
description="IP address by which alice can be reached.",
311311
)
312312
)
313313
declared_arguments.append(
314314
DeclareLaunchArgument(
315315
"bob_robot_ip",
316316
default_value="192.168.0.100",
317-
description="IP address by which the robot can be reached.",
317+
description="IP address by which bob can be reached.",
318318
)
319319
)
320320

@@ -351,29 +351,29 @@ def generate_launch_description():
351351
DeclareLaunchArgument(
352352
"alice_use_mock_hardware",
353353
default_value="false",
354-
description="Start robot with mock hardware mirroring command to its states.",
354+
description="Start alice with mock hardware mirroring command to its states.",
355355
)
356356
)
357357
declared_arguments.append(
358358
DeclareLaunchArgument(
359359
"bob_use_mock_hardware",
360360
default_value="false",
361-
description="Start robot with mock hardware mirroring command to its states.",
361+
description="Start bob with mock hardware mirroring command to its states.",
362362
)
363363
)
364364
declared_arguments.append(
365365
DeclareLaunchArgument(
366366
"alice_mock_sensor_commands",
367367
default_value="false",
368-
description="Enable mock command interfaces for sensors used for simple simulations. "
368+
description="Enable mock command interfaces for alice's sensors used for simple simulations. "
369369
"Used only if 'use_mock_hardware' parameter is true.",
370370
)
371371
)
372372
declared_arguments.append(
373373
DeclareLaunchArgument(
374374
"bob_mock_sensor_commands",
375375
default_value="false",
376-
description="Enable mock command interfaces for sensors used for simple simulations. "
376+
description="Enable mock command interfaces for bob's sensors used for simple simulations. "
377377
"Used only if 'use_mock_hardware' parameter is true.",
378378
)
379379
)

0 commit comments

Comments
 (0)