Skip to content

Commit

Permalink
Minor modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmrad committed Jan 6, 2025
1 parent 97a0e7c commit c40f888
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ You can specify the following arguments if you wish to change your arm configura

* `robot_type`: Your robot model. Default value (and only one) is `gen3`.

* `gripper` : Gripper to use. Possible values for the Gen3 are either `robotiq_2f_85`, `robotiq_2f_140` or `""`. Default is `robotiq_2f_85`. An empty string will not initialise any gripper.
* `gripper` : Gripper to use. Possible values for the Gen3 are either `robotiq_2f_85`, `robotiq_2f_140` or `""`. Default is `""`. An empty string will not initialise any gripper.

* `gripper_joint_name` : Name of the controlled joint of the gripper attached to the arm. Default value is `robotiq_85_left_knuckle_joint`.

Expand Down Expand Up @@ -325,7 +325,7 @@ ros2 launch kortex_bringup kortex_sim_control.launch.py \
* `description_file` : URDF/XACRO description file with the robot. Default value is `kinova.urdf.xacro`.
* `prefix` : Prefix of the joint names, useful for multi-robot setup. If changed, then also joint names in the controllers' configuration have to be updated. Default value is `""` (none).
* `use_sim_time` : Use simulated clock. Default value is `true`.
* `gripper` : Gripper to use. Possible values for the Gen3 are either `robotiq_2f_85`, `robotiq_2f_140` or `""`. Default is `robotiq_2f_85`. An empty string will not initialise any gripper.
* `gripper` : Gripper to use. Possible values for the Gen3 are: `robotiq_2f_85`, `robotiq_2f_140`, `""` and `gen3_lite_2f`. Default is `robotiq_2f_85`. An empty string will not initialise any gripper.

#### MoveIt2

Expand Down
2 changes: 1 addition & 1 deletion kortex_bringup/launch/gen3_lite.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def generate_launch_description():
declared_arguments.append(
DeclareLaunchArgument(
"robot_controller",
default_value="gen3_lite_joint_trajectory_controller",
default_value="joint_trajectory_controller",
description="Robot controller to start.",
)
)
Expand Down
6 changes: 3 additions & 3 deletions kortex_bringup/launch/kortex_sim_control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def generate_launch_description():
declared_arguments.append(
DeclareLaunchArgument(
"robot_controller",
default_value="gen3_lite_joint_trajectory_controller",
default_value="joint_trajectory_controller",
description="Robot controller to start.",
)
)
Expand Down Expand Up @@ -404,8 +404,8 @@ def generate_launch_description():
declared_arguments.append(
DeclareLaunchArgument(
"gripper",
default_value="robotiq_2f_85",
choices=["robotiq_2f_85", "robotiq_2f_140", "gen3_lite_2f"],
default_value="",
choices=["robotiq_2f_85", "robotiq_2f_140", "gen3_lite_2f", ""],
description="Gripper to use",
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ controller_manager:
joint_state_broadcaster:
type: joint_state_broadcaster/JointStateBroadcaster

gen3_lite_joint_trajectory_controller:
joint_trajectory_controller:
type: joint_trajectory_controller/JointTrajectoryController

twist_controller:
Expand All @@ -17,7 +17,7 @@ controller_manager:
gen3_lite_2f_gripper_controller:
type: position_controllers/GripperActionController

gen3_lite_joint_trajectory_controller:
joint_trajectory_controller:
ros__parameters:
joints:
- joint_1
Expand Down
4 changes: 4 additions & 0 deletions ros2_kortex.humble.repos
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ repositories:
type: git
url: https://github.com/picknikrobotics/ros2_robotiq_gripper.git
version: b6136bdc866a929bfb096890ca61dde1335ffd30
realtime_tools:
type: git
url: https://github.com/ros-controls/realtime_tools/tree/humble
version: humble

0 comments on commit c40f888

Please sign in to comment.