You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Related to PickNikRobotics/picknik_controllers#11
- Use Twist instead of TwistStamped because it works better with existing tools
- Adds example to use with teleop_twist_keyboard
Signed-off-by: Alex Moriarty <[email protected]>
You can also command the arm using TwistStamped messages. Before doing so, you must active the `twist_controller` and deactivate the `joint_trajectory_controller`:
214
+
You can also command the arm using Twist messages. Before doing so, you must active the `twist_controller` and deactivate the `joint_trajectory_controller`:
215
215
```bash
216
216
ros2 service call /controller_manager/switch_controller controller_manager_msgs/srv/SwitchController "{
217
217
activate_controllers: [twist_controller],
@@ -221,28 +221,14 @@ ros2 service call /controller_manager/switch_controller controller_manager_msgs/
221
221
}"
222
222
```
223
223
224
-
Once the `twist_controller` is activated, You can publish TwistStamped messages on the `/twist_controller/commands` topic to command the arm.
224
+
Once the `twist_controller` is activated, You can publish Twist messages on the `/twist_controller/commands` topic to command the arm.
225
225
226
-
For example, you can jog the arm with the following command:
For example, you can jog the arm using [Teleop Twist Keyboard](https://index.ros.org/p/teleop_twist_keyboard/github-ros2-teleop_twist_keyboard/) with the following command:
227
+
228
+
**WARNING: you are responsible for collision checking, including self collisions when in this mode.**
0 commit comments