|
Package Summary
Tags | No category tags. |
Version | 2.8.0 |
License | BSD-3-Clause |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/moveit2.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2023-11-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Henning Kayser
- Tyler Weaver
- MoveIt Release Team
Authors
- Mathias Lüdtke
MoveIt ROS Control Plugin
This package provides plugins of base class moveit_controller_manager::MoveItControllerManager
and a new plugin base class for moveit_controller_manager::MoveItControllerHandle
allocators.
The allocator class is necessary because moveit_controller_manager::MoveItControllerHandle
needs a name passed to the constructor.
Two variants are provided, moveit_ros_control_interface::Ros2ControlManager
for interfacing a single ros_control node and moveit_ros_control_interface::Ros2ControlMultiManager
for seamless integration with any number of ros_control nodes.
moveit_ros_control_interface::Ros2ControlManager
This plugin interfaces a single ros_control-driven node in the namespace given in the ~ros_control_namespace
ROS parameter.
It polls all controllers via the list_controllers
service and passes their properties to MoveIt.
The polling is throttled to 1 Hertz.
Handle plugins
The actual handle creation is delegated to allocator plugins of base class moveit_ros_control_interface::ControllerHandleAllocator
.
These plugins should be registered with lookup names that match the corresponding controller types.
Currently plugins for position_controllers/JointTrajectoryController
, velocity_controllers/JointTrajectoryController
and effort_controllers/JointTrajectoryController
are available, which simply wrap moveit_simple_controller_manager::FollowJointTrajectoryControllerHandle
instances.
Setup
In your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
), set the moveit_controller_manager
parameter:
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlManager" />
Make sure to set the ros_control_namespace
parameter to the namespace (without the /controller_manager/ part) of the ros_control-based node you like to interface.
If you are using moveit_setup_assistant
, you can add it to ROBOT_moveit_config/config/moveit_controllers.yaml
, e.g.:
ros_control_namespace: /ROS_CONTROL_NODE
controller_list:
- name: /ROS_CONTROL_NODE/position_trajectory_controller
action_ns: follow_joint_trajectory
type: FollowJointTrajectory
default: true
joints:
- joint_a1
- joint_a2
- joint_a3
- joint_a4
- joint_a5
- joint_a6
- joint_a7
Controller switching
MoveIt can decide which controllers have to be started and stopped. Since only controller names with registered allocator plugins are handed over to MoveIt, this implementation takes care of stopping other conflicting controllers based on their claimed resources and the resources for the to-be-started controllers.
Namespaces
All controller names get prefixed by the namespace of the ros_control node.
For this to work the controller names should not contain slashes. This is a strict requirement if the ros_control namespace is /
.
moveit_ros_control_interface::Ros2ControlMultiManager
This plugin does not need further configuration. It polls the ROS main for services and identifies ros_control nodes automatically.
It spawns moveit_ros_control_interface::Ros2ControlManager
instances with their namespace and takes cares of proper delegation.
Setup
Just set the moveit_controller_manager
parameter in your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
)
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlMultiManager" />
Changelog for package moveit_ros_control_interface
2.8.0 (2023-09-10)
- Simplify controller manager namespacing (#2210)
- Minor cleanup to ros_control_interface and trajectory execution (#2208)
- Contributors: Stephanie Eng
2.7.4 (2023-05-18)
2.7.3 (2023-04-24)
- Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
- Fix controller_manager_plugin\'s switch controllers functionality (#2116)
- Contributors: Jafar, Shobuj Paul
2.7.2 (2023-04-18)
2.7.1 (2023-03-23)
- Add Warning Message for Out of Date Controller Information (#1983) Co-authored-by: Joseph Schornak <joe.schornak@gmail.com> Co-authored-by: Joseph Schornak <joe.schornak@gmail.com>
- Update SwitchController API usage (#1996) Fixes deprecated and now removed message fields https://github.com/ros-controls/ros2_control/pull/948
- Contributors: Erik Holum, Henning Kayser
2.7.0 (2023-01-29)
- Fix parameters for ros2_control namespaces (#1833) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
- Fix BSD license in package.xml
(#1796)
- fix BSD license in package.xml
- this must also be spdx compliant
- Contributors: Christian Henkel, Pablo I
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | ament_lint_common | |
1 | moveit_common | |
1 | rclcpp_action | |
2 | controller_manager_msgs | |
3 | moveit_core | |
3 | moveit_simple_controller_manager | |
1 | pluginlib | |
2 | trajectory_msgs |
System Dependencies
Dependant Packages
Name | Repo | Deps |
---|---|---|
tiago_moveit_config | github-pal-robotics-tiago_moveit_config |
Launch files
Messages
Services
Plugins
Recent questions tagged moveit_ros_control_interface at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 2.8.0 |
License | BSD-3-Clause |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/moveit2.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2023-11-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Henning Kayser
- Tyler Weaver
- MoveIt Release Team
Authors
- Mathias Lüdtke
MoveIt ROS Control Plugin
This package provides plugins of base class moveit_controller_manager::MoveItControllerManager
and a new plugin base class for moveit_controller_manager::MoveItControllerHandle
allocators.
The allocator class is necessary because moveit_controller_manager::MoveItControllerHandle
needs a name passed to the constructor.
Two variants are provided, moveit_ros_control_interface::Ros2ControlManager
for interfacing a single ros_control node and moveit_ros_control_interface::Ros2ControlMultiManager
for seamless integration with any number of ros_control nodes.
moveit_ros_control_interface::Ros2ControlManager
This plugin interfaces a single ros_control-driven node in the namespace given in the ~ros_control_namespace
ROS parameter.
It polls all controllers via the list_controllers
service and passes their properties to MoveIt.
The polling is throttled to 1 Hertz.
Handle plugins
The actual handle creation is delegated to allocator plugins of base class moveit_ros_control_interface::ControllerHandleAllocator
.
These plugins should be registered with lookup names that match the corresponding controller types.
Currently plugins for position_controllers/JointTrajectoryController
, velocity_controllers/JointTrajectoryController
and effort_controllers/JointTrajectoryController
are available, which simply wrap moveit_simple_controller_manager::FollowJointTrajectoryControllerHandle
instances.
Setup
In your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
), set the moveit_controller_manager
parameter:
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlManager" />
Make sure to set the ros_control_namespace
parameter to the namespace (without the /controller_manager/ part) of the ros_control-based node you like to interface.
If you are using moveit_setup_assistant
, you can add it to ROBOT_moveit_config/config/moveit_controllers.yaml
, e.g.:
ros_control_namespace: /ROS_CONTROL_NODE
controller_list:
- name: /ROS_CONTROL_NODE/position_trajectory_controller
action_ns: follow_joint_trajectory
type: FollowJointTrajectory
default: true
joints:
- joint_a1
- joint_a2
- joint_a3
- joint_a4
- joint_a5
- joint_a6
- joint_a7
Controller switching
MoveIt can decide which controllers have to be started and stopped. Since only controller names with registered allocator plugins are handed over to MoveIt, this implementation takes care of stopping other conflicting controllers based on their claimed resources and the resources for the to-be-started controllers.
Namespaces
All controller names get prefixed by the namespace of the ros_control node.
For this to work the controller names should not contain slashes. This is a strict requirement if the ros_control namespace is /
.
moveit_ros_control_interface::Ros2ControlMultiManager
This plugin does not need further configuration. It polls the ROS main for services and identifies ros_control nodes automatically.
It spawns moveit_ros_control_interface::Ros2ControlManager
instances with their namespace and takes cares of proper delegation.
Setup
Just set the moveit_controller_manager
parameter in your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
)
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlMultiManager" />
Changelog for package moveit_ros_control_interface
2.8.0 (2023-09-10)
- Simplify controller manager namespacing (#2210)
- Minor cleanup to ros_control_interface and trajectory execution (#2208)
- Contributors: Stephanie Eng
2.7.4 (2023-05-18)
2.7.3 (2023-04-24)
- Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
- Fix controller_manager_plugin\'s switch controllers functionality (#2116)
- Contributors: Jafar, Shobuj Paul
2.7.2 (2023-04-18)
2.7.1 (2023-03-23)
- Add Warning Message for Out of Date Controller Information (#1983) Co-authored-by: Joseph Schornak <joe.schornak@gmail.com> Co-authored-by: Joseph Schornak <joe.schornak@gmail.com>
- Update SwitchController API usage (#1996) Fixes deprecated and now removed message fields https://github.com/ros-controls/ros2_control/pull/948
- Contributors: Erik Holum, Henning Kayser
2.7.0 (2023-01-29)
- Fix parameters for ros2_control namespaces (#1833) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
- Fix BSD license in package.xml
(#1796)
- fix BSD license in package.xml
- this must also be spdx compliant
- Contributors: Christian Henkel, Pablo I
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | ament_lint_common | |
1 | moveit_common | |
1 | rclcpp_action | |
2 | controller_manager_msgs | |
3 | moveit_core | |
3 | moveit_simple_controller_manager | |
1 | pluginlib | |
2 | trajectory_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged moveit_ros_control_interface at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 2.8.0 |
License | BSD-3-Clause |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/moveit2.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2023-11-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Henning Kayser
- Tyler Weaver
- MoveIt Release Team
Authors
- Mathias Lüdtke
MoveIt ROS Control Plugin
This package provides plugins of base class moveit_controller_manager::MoveItControllerManager
and a new plugin base class for moveit_controller_manager::MoveItControllerHandle
allocators.
The allocator class is necessary because moveit_controller_manager::MoveItControllerHandle
needs a name passed to the constructor.
Two variants are provided, moveit_ros_control_interface::Ros2ControlManager
for interfacing a single ros_control node and moveit_ros_control_interface::Ros2ControlMultiManager
for seamless integration with any number of ros_control nodes.
moveit_ros_control_interface::Ros2ControlManager
This plugin interfaces a single ros_control-driven node in the namespace given in the ~ros_control_namespace
ROS parameter.
It polls all controllers via the list_controllers
service and passes their properties to MoveIt.
The polling is throttled to 1 Hertz.
Handle plugins
The actual handle creation is delegated to allocator plugins of base class moveit_ros_control_interface::ControllerHandleAllocator
.
These plugins should be registered with lookup names that match the corresponding controller types.
Currently plugins for position_controllers/JointTrajectoryController
, velocity_controllers/JointTrajectoryController
and effort_controllers/JointTrajectoryController
are available, which simply wrap moveit_simple_controller_manager::FollowJointTrajectoryControllerHandle
instances.
Setup
In your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
), set the moveit_controller_manager
parameter:
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlManager" />
Make sure to set the ros_control_namespace
parameter to the namespace (without the /controller_manager/ part) of the ros_control-based node you like to interface.
If you are using moveit_setup_assistant
, you can add it to ROBOT_moveit_config/config/moveit_controllers.yaml
, e.g.:
ros_control_namespace: /ROS_CONTROL_NODE
controller_list:
- name: /ROS_CONTROL_NODE/position_trajectory_controller
action_ns: follow_joint_trajectory
type: FollowJointTrajectory
default: true
joints:
- joint_a1
- joint_a2
- joint_a3
- joint_a4
- joint_a5
- joint_a6
- joint_a7
Controller switching
MoveIt can decide which controllers have to be started and stopped. Since only controller names with registered allocator plugins are handed over to MoveIt, this implementation takes care of stopping other conflicting controllers based on their claimed resources and the resources for the to-be-started controllers.
Namespaces
All controller names get prefixed by the namespace of the ros_control node.
For this to work the controller names should not contain slashes. This is a strict requirement if the ros_control namespace is /
.
moveit_ros_control_interface::Ros2ControlMultiManager
This plugin does not need further configuration. It polls the ROS main for services and identifies ros_control nodes automatically.
It spawns moveit_ros_control_interface::Ros2ControlManager
instances with their namespace and takes cares of proper delegation.
Setup
Just set the moveit_controller_manager
parameter in your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
)
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlMultiManager" />
Changelog for package moveit_ros_control_interface
2.8.0 (2023-09-10)
- Simplify controller manager namespacing (#2210)
- Minor cleanup to ros_control_interface and trajectory execution (#2208)
- Contributors: Stephanie Eng
2.7.4 (2023-05-18)
2.7.3 (2023-04-24)
- Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
- Fix controller_manager_plugin\'s switch controllers functionality (#2116)
- Contributors: Jafar, Shobuj Paul
2.7.2 (2023-04-18)
2.7.1 (2023-03-23)
- Add Warning Message for Out of Date Controller Information (#1983) Co-authored-by: Joseph Schornak <joe.schornak@gmail.com> Co-authored-by: Joseph Schornak <joe.schornak@gmail.com>
- Update SwitchController API usage (#1996) Fixes deprecated and now removed message fields https://github.com/ros-controls/ros2_control/pull/948
- Contributors: Erik Holum, Henning Kayser
2.7.0 (2023-01-29)
- Fix parameters for ros2_control namespaces (#1833) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
- Fix BSD license in package.xml
(#1796)
- fix BSD license in package.xml
- this must also be spdx compliant
- Contributors: Christian Henkel, Pablo I
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | ament_lint_common | |
1 | moveit_common | |
1 | rclcpp_action | |
2 | controller_manager_msgs | |
3 | moveit_core | |
3 | moveit_simple_controller_manager | |
1 | pluginlib | |
2 | trajectory_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged moveit_ros_control_interface at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 1.1.0 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/moveit2.git |
VCS Type | git |
VCS Version | eloquent |
Last Updated | 2020-10-13 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Mathias Lüdtke
- MoveIt Release Team
Authors
- Mathias Lüdtke
MoveIt ROS Control Plugin
This package provides plugins of base class moveit_controller_manager::MoveItControllerManager
and a new plugin base class for moveit_controller_manager::MoveItControllerHandle
allocators.
The allocator class is necessary because moveit_controller_manager::MoveItControllerHandle
needs a name passed to the constructor.
Two variantes are provided, moveit_ros_control_interface::MoveItControllerManager
for interfacing a single ros_control node and moveit_ros_control_interface::MoveItMultiControllerManager
for seamless integration with any number of ros_control nodes.
moveit_ros_control_interface::MoveItControllerManager
This plugin interfaces a single ros_control-driven node in the namespace given in the ~ros_control_namespace
ROS parameter.
It polls all controllers via the list_controllers
service and passes their properties to MoveIt.
The polling is throttled to 1 Hertz.
Handle plugins
The actual handle creation is delegated to allocator plugins of base class moveit_ros_control_interface::ControllerHandleAllocator
.
These plugins should be registered with lookup names that match the corresponding controller types.
Currently plugins for position_controllers/JointTrajectoryController
, velocity_controllers/JointTrajectoryController
and effort_controllers/JointTrajectoryController
are available, which simply wrap moveit_simple_controller_manager::FollowJointTrajectoryControllerHandle
instances.
Setup
In your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
) set the moveit_controller_manager
parameter:
<param name="moveit_controller_manager" value="moveit_ros_control_interface::MoveItControllerManager" />
And make sure to set the ros_control_namespace
parameter to the namespace (without the /controller_manager/ part) of the ros_control-based node you like to interface.
If you are using the moveit_setup_assistent
you can add it to ROBOT_moveit_config/config/controllers.yaml
, e.g.:
ros_control_namespace: /ROS_CONTROL_NODE
controller_list:
- name: /ROS_CONTROL_NODE/position_trajectory_controller
action_ns: follow_joint_trajectory
type: FollowJointTrajectory
default: true
joints:
- joint_a1
- joint_a2
- joint_a3
- joint_a4
- joint_a5
- joint_a6
- joint_a7
Controller switching
MoveIt can decide which controllers have to be started and stopped. Since only controller names with registered allocator plugins are handed over to MoveIt, this implementation takes care of stopping other conflicting controllers based on their claimed resources and the resources for the to-be-started controllers.
Namespaces
All controller names get prefixed by the namespace of the ros_control node.
For this to work the controller names should not contain slashes. This is a strict requirement if the ros_control namespace is /
.
moveit_ros_control_interface::MoveItMultiControllerManager
This plugin does not need further configuration. It polls the ROS master for services and identifies ros_control nodes automatically.
It spawns moveit_ros_control_interface::MoveItControllerManager
instances with their namespace and takes cares of proper delegation.
Setup
Just set the moveit_controller_manager
parameter in your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
)
<param name="moveit_controller_manager" value="moveit_ros_control_interface::MoveItMultiControllerManager" />
Changelog for package moveit_ros_control_interface
1.0.1 (2019-03-08)
1.0.0 (2019-02-24)
- [fix] catkin_lint issues (#1341)
- Contributors: Robert Haschke
0.10.8 (2018-12-24)
0.10.7 (2018-12-13)
0.10.6 (2018-12-09)
- [maintenance] Code Cleanup (#1196)
- Contributors: Robert Haschke
0.10.5 (2018-11-01)
0.10.4 (2018-10-29)
0.10.3 (2018-10-29)
0.10.2 (2018-10-24)
0.10.1 (2018-05-25)
0.9.11 (2017-12-25)
0.9.10 (2017-12-09)
0.9.9 (2017-08-06)
- [improve] add backward compatibility patch for indigo (#551)
- Contributors: Michael G
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | catkin | |
1 | actionlib | |
2 | controller_manager_msgs | |
3 | moveit_core | |
3 | moveit_simple_controller_manager | |
1 | pluginlib | |
2 | trajectory_msgs |
System Dependencies
Dependant Packages
Name | Repo | Deps |
---|---|---|
moveit_plugins | github-ros-planning-moveit2 |
Launch files
Messages
Services
Recent questions tagged moveit_ros_control_interface at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 2.8.0 |
License | BSD-3-Clause |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/moveit2.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2023-11-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Henning Kayser
- Tyler Weaver
- MoveIt Release Team
Authors
- Mathias Lüdtke
MoveIt ROS Control Plugin
This package provides plugins of base class moveit_controller_manager::MoveItControllerManager
and a new plugin base class for moveit_controller_manager::MoveItControllerHandle
allocators.
The allocator class is necessary because moveit_controller_manager::MoveItControllerHandle
needs a name passed to the constructor.
Two variants are provided, moveit_ros_control_interface::Ros2ControlManager
for interfacing a single ros_control node and moveit_ros_control_interface::Ros2ControlMultiManager
for seamless integration with any number of ros_control nodes.
moveit_ros_control_interface::Ros2ControlManager
This plugin interfaces a single ros_control-driven node in the namespace given in the ~ros_control_namespace
ROS parameter.
It polls all controllers via the list_controllers
service and passes their properties to MoveIt.
The polling is throttled to 1 Hertz.
Handle plugins
The actual handle creation is delegated to allocator plugins of base class moveit_ros_control_interface::ControllerHandleAllocator
.
These plugins should be registered with lookup names that match the corresponding controller types.
Currently plugins for position_controllers/JointTrajectoryController
, velocity_controllers/JointTrajectoryController
and effort_controllers/JointTrajectoryController
are available, which simply wrap moveit_simple_controller_manager::FollowJointTrajectoryControllerHandle
instances.
Setup
In your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
), set the moveit_controller_manager
parameter:
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlManager" />
Make sure to set the ros_control_namespace
parameter to the namespace (without the /controller_manager/ part) of the ros_control-based node you like to interface.
If you are using moveit_setup_assistant
, you can add it to ROBOT_moveit_config/config/moveit_controllers.yaml
, e.g.:
ros_control_namespace: /ROS_CONTROL_NODE
controller_list:
- name: /ROS_CONTROL_NODE/position_trajectory_controller
action_ns: follow_joint_trajectory
type: FollowJointTrajectory
default: true
joints:
- joint_a1
- joint_a2
- joint_a3
- joint_a4
- joint_a5
- joint_a6
- joint_a7
Controller switching
MoveIt can decide which controllers have to be started and stopped. Since only controller names with registered allocator plugins are handed over to MoveIt, this implementation takes care of stopping other conflicting controllers based on their claimed resources and the resources for the to-be-started controllers.
Namespaces
All controller names get prefixed by the namespace of the ros_control node.
For this to work the controller names should not contain slashes. This is a strict requirement if the ros_control namespace is /
.
moveit_ros_control_interface::Ros2ControlMultiManager
This plugin does not need further configuration. It polls the ROS main for services and identifies ros_control nodes automatically.
It spawns moveit_ros_control_interface::Ros2ControlManager
instances with their namespace and takes cares of proper delegation.
Setup
Just set the moveit_controller_manager
parameter in your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
)
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlMultiManager" />
Changelog for package moveit_ros_control_interface
2.8.0 (2023-09-10)
- Simplify controller manager namespacing (#2210)
- Minor cleanup to ros_control_interface and trajectory execution (#2208)
- Contributors: Stephanie Eng
2.7.4 (2023-05-18)
2.7.3 (2023-04-24)
- Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
- Fix controller_manager_plugin\'s switch controllers functionality (#2116)
- Contributors: Jafar, Shobuj Paul
2.7.2 (2023-04-18)
2.7.1 (2023-03-23)
- Add Warning Message for Out of Date Controller Information (#1983) Co-authored-by: Joseph Schornak <joe.schornak@gmail.com> Co-authored-by: Joseph Schornak <joe.schornak@gmail.com>
- Update SwitchController API usage (#1996) Fixes deprecated and now removed message fields https://github.com/ros-controls/ros2_control/pull/948
- Contributors: Erik Holum, Henning Kayser
2.7.0 (2023-01-29)
- Fix parameters for ros2_control namespaces (#1833) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
- Fix BSD license in package.xml
(#1796)
- fix BSD license in package.xml
- this must also be spdx compliant
- Contributors: Christian Henkel, Pablo I
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | ament_lint_common | |
1 | moveit_common | |
1 | rclcpp_action | |
2 | controller_manager_msgs | |
3 | moveit_core | |
3 | moveit_simple_controller_manager | |
1 | pluginlib | |
2 | trajectory_msgs |
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged moveit_ros_control_interface at answers.ros.org
|
Package Summary
Tags | No category tags. |
Version | 2.8.0 |
License | BSD-3-Clause |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-planning/moveit2.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2023-11-29 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Henning Kayser
- Tyler Weaver
- MoveIt Release Team
Authors
- Mathias Lüdtke
MoveIt ROS Control Plugin
This package provides plugins of base class moveit_controller_manager::MoveItControllerManager
and a new plugin base class for moveit_controller_manager::MoveItControllerHandle
allocators.
The allocator class is necessary because moveit_controller_manager::MoveItControllerHandle
needs a name passed to the constructor.
Two variants are provided, moveit_ros_control_interface::Ros2ControlManager
for interfacing a single ros_control node and moveit_ros_control_interface::Ros2ControlMultiManager
for seamless integration with any number of ros_control nodes.
moveit_ros_control_interface::Ros2ControlManager
This plugin interfaces a single ros_control-driven node in the namespace given in the ~ros_control_namespace
ROS parameter.
It polls all controllers via the list_controllers
service and passes their properties to MoveIt.
The polling is throttled to 1 Hertz.
Handle plugins
The actual handle creation is delegated to allocator plugins of base class moveit_ros_control_interface::ControllerHandleAllocator
.
These plugins should be registered with lookup names that match the corresponding controller types.
Currently plugins for position_controllers/JointTrajectoryController
, velocity_controllers/JointTrajectoryController
and effort_controllers/JointTrajectoryController
are available, which simply wrap moveit_simple_controller_manager::FollowJointTrajectoryControllerHandle
instances.
Setup
In your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
), set the moveit_controller_manager
parameter:
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlManager" />
Make sure to set the ros_control_namespace
parameter to the namespace (without the /controller_manager/ part) of the ros_control-based node you like to interface.
If you are using moveit_setup_assistant
, you can add it to ROBOT_moveit_config/config/moveit_controllers.yaml
, e.g.:
ros_control_namespace: /ROS_CONTROL_NODE
controller_list:
- name: /ROS_CONTROL_NODE/position_trajectory_controller
action_ns: follow_joint_trajectory
type: FollowJointTrajectory
default: true
joints:
- joint_a1
- joint_a2
- joint_a3
- joint_a4
- joint_a5
- joint_a6
- joint_a7
Controller switching
MoveIt can decide which controllers have to be started and stopped. Since only controller names with registered allocator plugins are handed over to MoveIt, this implementation takes care of stopping other conflicting controllers based on their claimed resources and the resources for the to-be-started controllers.
Namespaces
All controller names get prefixed by the namespace of the ros_control node.
For this to work the controller names should not contain slashes. This is a strict requirement if the ros_control namespace is /
.
moveit_ros_control_interface::Ros2ControlMultiManager
This plugin does not need further configuration. It polls the ROS main for services and identifies ros_control nodes automatically.
It spawns moveit_ros_control_interface::Ros2ControlManager
instances with their namespace and takes cares of proper delegation.
Setup
Just set the moveit_controller_manager
parameter in your MoveIt launch file (e.g. ROBOT_moveit_config/launch/ROBOT_moveit_controller_manager.launch.xml
)
<param name="moveit_controller_manager" value="moveit_ros_control_interface::Ros2ControlMultiManager" />
Changelog for package moveit_ros_control_interface
2.8.0 (2023-09-10)
- Simplify controller manager namespacing (#2210)
- Minor cleanup to ros_control_interface and trajectory execution (#2208)
- Contributors: Stephanie Eng
2.7.4 (2023-05-18)
2.7.3 (2023-04-24)
- Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
- Fix controller_manager_plugin\'s switch controllers functionality (#2116)
- Contributors: Jafar, Shobuj Paul
2.7.2 (2023-04-18)
2.7.1 (2023-03-23)
- Add Warning Message for Out of Date Controller Information (#1983) Co-authored-by: Joseph Schornak <joe.schornak@gmail.com> Co-authored-by: Joseph Schornak <joe.schornak@gmail.com>
- Update SwitchController API usage (#1996) Fixes deprecated and now removed message fields https://github.com/ros-controls/ros2_control/pull/948
- Contributors: Erik Holum, Henning Kayser
2.7.0 (2023-01-29)
- Fix parameters for ros2_control namespaces (#1833) Co-authored-by: AndyZe <andyz@utexas.edu> Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
- Fix BSD license in package.xml
(#1796)
- fix BSD license in package.xml
- this must also be spdx compliant
- Contributors: Christian Henkel, Pablo I
Wiki Tutorials
Source Tutorials
Package Dependencies
Deps | Name | |
---|---|---|
1 | ament_cmake | |
1 | ament_lint_auto | |
1 | ament_lint_common | |
1 | moveit_common | |
1 | rclcpp_action | |
2 | controller_manager_msgs | |
3 | moveit_core | |
3 | moveit_simple_controller_manager | |
1 | pluginlib | |
2 | trajectory_msgs |