File tree Expand file tree Collapse file tree 3 files changed +23
-6
lines changed
robotiq_hande_driver/bringup Expand file tree Collapse file tree 3 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -47,11 +47,18 @@ source ./install/local_setup.sh
4747``` bash
4848ros2 launch robotiq_hande_driver gripper_controller_preview.launch.py use_fake_hardware:=true
4949# In other terminal
50- ros2 action send_goal /gripper_action_controller/gripper_cmd control_msgs/action/GripperCommand \
51- " command:
52- position: 0.0
53- max_effort: 0.0
50+ ros2 action send_goal /gripper_action_controller/gripper_cmd control_msgs/action/ParallelGripperCommand " command:
51+ header:
52+ stamp:
53+ sec: 0
54+ nanosec: 0
55+ frame_id: ''
56+ name: []
57+ position: [0.0]
58+ velocity: []
59+ effort: []
5460"
61+
5562```
5663
5764### Examples
Original file line number Diff line number Diff line change 1515 ros__parameters :
1616 action_monitor_rate : 20.0 # Hz
1717 joint : $(var tf_prefix)robotiq_hande_left_finger_joint
18- max_effort : 10.0 # N
1918 goal_tolerance : 0.01 # m
2019 allow_stalling : false
21- stall_velocity_threshold : 0.001 # m/s
20+ stall_velocity_threshold : 0.001 # m/s
2221 stall_timeout : 1.0 # s
22+ max_effort_interface : " "
23+ max_effort : 10.0 # N
24+ max_velocity_interface : " "
25+ max_velocity : 0.1 # m/s
2326 state_interfaces :
2427 - position
28+ - velocity
Original file line number Diff line number Diff line change @@ -122,6 +122,12 @@ def prepare_robot_state_publisher_node() -> Node:
122122 " " ,
123123 "use_fake_hardware:=" ,
124124 use_fake_hardware ,
125+ " " ,
126+ "create_socat_tty:=" ,
127+ "true" ,
128+ " " ,
129+ "ip_adress:=" ,
130+ "aegis_ur"
125131 ]
126132 )
127133 return Node (
You can’t perform that action at this time.
0 commit comments