Package Summary

Tags No category tags.
Version 2.9.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 2024-03-28
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

ros_control controller manager interface for MoveIt

Additional Links

No 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

Changelog for package moveit_ros_control_interface

2.9.0 (2024-01-09)

  • Fix warning and cleanup unneeded placeholders (#2566)
    • Fix warning and cleanup unneeded placeholders
    • Make clang-tidy happy
    • Remove print statement
  • Node logging for the rest of MoveIt (#2599)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Sebastian Jahr, Tyler Weaver

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)

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

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged moveit_ros_control_interface at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.9.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 2024-03-28
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

ros_control controller manager interface for MoveIt

Additional Links

No 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

Changelog for package moveit_ros_control_interface

2.9.0 (2024-01-09)

  • Fix warning and cleanup unneeded placeholders (#2566)
    • Fix warning and cleanup unneeded placeholders
    • Make clang-tidy happy
    • Remove print statement
  • Node logging for the rest of MoveIt (#2599)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Sebastian Jahr, Tyler Weaver

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)

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

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged moveit_ros_control_interface at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.9.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 2024-03-28
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

ros_control controller manager interface for MoveIt

Additional Links

No 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

Changelog for package moveit_ros_control_interface

2.9.0 (2024-01-09)

  • Fix warning and cleanup unneeded placeholders (#2566)
    • Fix warning and cleanup unneeded placeholders
    • Make clang-tidy happy
    • Remove print statement
  • Node logging for the rest of MoveIt (#2599)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Sebastian Jahr, Tyler Weaver

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)

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

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged moveit_ros_control_interface at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.9.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 2024-03-28
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

ros_control controller manager interface for MoveIt

Additional Links

No 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

Changelog for package moveit_ros_control_interface

2.9.0 (2024-01-09)

  • Fix warning and cleanup unneeded placeholders (#2566)
    • Fix warning and cleanup unneeded placeholders
    • Make clang-tidy happy
    • Remove print statement
  • Node logging for the rest of MoveIt (#2599)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Sebastian Jahr, Tyler Weaver

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)

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

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged moveit_ros_control_interface at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.9.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 2024-03-28
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

ros_control controller manager interface for MoveIt

Additional Links

No 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

Changelog for package moveit_ros_control_interface

2.9.0 (2024-01-09)

  • Fix warning and cleanup unneeded placeholders (#2566)
    • Fix warning and cleanup unneeded placeholders
    • Make clang-tidy happy
    • Remove print statement
  • Node logging for the rest of MoveIt (#2599)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Sebastian Jahr, Tyler Weaver

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)

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

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged moveit_ros_control_interface at Robotics Stack Exchange