Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[xs_modules] Use locobot as default robot_name argument #64

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(
arm_group_name: str = 'arm',
gripper_name: str = 'gripper',
turret_group_name: str = 'camera',
robot_name: str = '',
robot_name: str = 'locobot',
topic_dxl_joint_states: str = 'dynamixel/joint_states',
topic_base_joint_states: str = 'mobile_base/joint_states',
use_nav: bool = False,
Expand All @@ -93,9 +93,8 @@ def __init__(
yaml file; typically, this is 'gripper'
:param turret_group_name: (optional) joint group name that contains the 'turret' joints as
defined in the 'motor_config' yaml file; typically, this is 'camera'
:param robot_name: (optional) defaults to the value given to 'robot_model' if unspecified;
this can be customized if controlling two or more LoCoBots from one computer (like
'locobot1' and 'locobot2')
:param robot_name: (optional) this can be customized if controlling two or more LoCoBots
from one computer (like 'locobot1' and 'locobot2'); defaults to `'locobot'`
:param topic_dxl_joint_states: (optional) name of the joint states topic that contains just
the states of the dynamixel servos
:param topic_base_joint_states: (optional) name of the joints states topic that contains
Expand Down
Loading