Skip to content

Commit 11f3904

Browse files
committed
working on jazzy; updated configs & readme example
1 parent 267a91a commit 11f3904

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,18 @@ source ./install/local_setup.sh
4747
```bash
4848
ros2 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

robotiq_hande_driver/bringup/config/hande_controller.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@
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

robotiq_hande_driver/bringup/launch/gripper_controller_preview.launch.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)