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-15
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Görner
  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

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
  • [Planning Pipeline Refactoring] #2 Enable chaining planners (#2457)
    • Enable chaining multiple planners
  • Node logging in moveit_core (#2503)
  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)
  • Factor out path joint-space jump check (#2506)
  • Use node logging in moveit_ros (#2482)
  • Add new clang-tidy style rules (#2177)
  • Use generate parameters library in PlanningPipelineClass + general cleanups (#2288)
    • Don\'t discard stuff
    • Move constants into source file
    • Move static consts into header
    • Don\'t ignore pipeline result
    • Use generate parameter library for planning pipeline parameters
    • Fix CI
    • More CI fixes
    • Remove more state from planning pipeline
    • Small cleanups
    • Assert planner_instance_ is not a nullptr
    • Remove valid variable
    • Simplify logic for trajectory printing
    • More helpful comments
    • Small logic simplification by using break
    • Fix clang-tidy
    • Pre-commit + Deprecate functions instead of removing them
    • Fix CI
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Remove old deprecated functions (#2384)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Mario Prats, Marq Rasmussen, Rayene Messaoud, Sebastian Jahr, Tyler Weaver

2.8.0 (2023-09-10)

  • Replaced boost::algorithm::join with fmt::join (#2273)

    • Replaced boost::algorithm::join with fmt::join
    • Made changes in CMakeLists.txt to accomodate fmt
    • Updated package.xml files
    • removed redundant boost dependencies

    * Rename variables -> variable ---------Co-authored-by: Sebastian Castro <4603398+sea-bass@users.noreply.github.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Specify controller name in MGI execution (#2257)

    • Specify controller name in MGI execute

    * Finish comment ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • fix move_group capabilities loading (#2270)

    • fix move_group capabilities loading
    • clang-format
  • Cleanup move_group CMake (#2226)

  • Contributors: Shobuj Paul, Stephanie Eng, Tyler Weaver, Yang Lin

2.7.4 (2023-05-18)

  • Fix MoveGroup action cancel callback (#2118) Moves the execution callback into its own thread to avoid blocking and actually calls the preempt function in with the cancel callback.
  • Scale acceleration and velocity of cartesian interpolations (#1968)
  • Contributors: Jonathan Grebe, Yadu

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Fix MoveItCpp issues (port from MoveIt1) (#2001) * Fix MoveitCpp\'s const member accessors They should return a ConstPtr instead of a const Ptr&!

    • Fix SEVERE ClassLoader warning when releasing MoveItCpp
    • PSM was released before copy of its RobotModel -> removed extra RobotModel copy
    • clearContents() was broken:
    • resets in wrong order: psm_ should be last

    - trajectory_execution_manager_ was missing I suggest to omit clearContents() and rely on the (correct) ordering of member variables. While this is not explicit, we ensure that we don\'t miss any newly added member variable. Fix: https://github.com/ros-planning/moveit2/issues/1597 ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai> Co-authored-by: Jafar <cafer.abdi@gmail.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io> Co-authored-by: JafarAbdi <jafar.uruc@gmail.com>

  • Contributors: Robert Haschke

2.7.1 (2023-03-23)

  • Fix member naming (#1949) * Update clang-tidy rules for readability-identifier-naming Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: AlexWebb, Robert Haschke

2.7.0 (2023-01-29)

  • move_group: Delete unused execute_trajectory_service_capability (#1836)
  • keep printf color change on same line (#1828) This ensures the color reset is applied because printing the color reset after new lines seems to preven the color from actually being reset. Co-authored-by: William Wedler <william.wedler@resquared.com>
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Add braces around blocks. (#999)
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, AndyZe, Christian Henkel, Cory Crean, Robert Haschke, Will

2.6.0 (2022-11-10)

  • Short-circuit planning adapters (#1694) * Revert \"Planning request adapters: short-circuit if failure, return code rather than bool (#1605)\" This reverts commit 66a64b4a72b6ddef1af2329f20ed8162554d5bcb.

    • Add debug message in call stack of planning_request_adapters
    • Short-circuit planning request adapters
    • Replace if-elseif cascade with switch
    • Cleanup translation of MoveItErrorCode to string
    • Move default code to moveit_core/utils
    • Override defaults in existing getActionResultString()
    • Provide translations for all error codes defined in moveit_msgs
    • Fix comment according to review

    * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: AndyZe <andyz@utexas.edu>

  • avoid implicit conversions (#1593)

  • Remove unused header (#1572)

  • Merge PR #1553: Improve cmake files

  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets

  • Improve CMake usage (#1550)

  • Removed plan_with_sensing (#1142)

  • Remove __has_include statements (#1481)

  • Contributors: Abishalini Sivaraman, Robert Haschke, Sarah Nix, Sebastian Jahr, Stephanie Eng, Vatan Aksoy Tezer

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge pull request #1402 from Abishalini/pr-sync-a436a97 Sync with MoveIt
  • Merge https://github.com/ros-planning/moveit/commit/a436a9771f7445c162cc3090c4c7c57bdb5bf194
  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Remove manipulation from moveit_ros (#1177)
  • Merge pull request #3137 from TAMS-Group/pr-master-monitor-dynamics move_group can optionally monitor dynamics
  • optionally enable dynamics monitoring in move_group node
  • convert move_group to LOGNAME
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • banish bind()
  • Contributors: Abishalini, Michael G

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

Recent questions tagged moveit_ros_move_group 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-15
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Görner
  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

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
  • [Planning Pipeline Refactoring] #2 Enable chaining planners (#2457)
    • Enable chaining multiple planners
  • Node logging in moveit_core (#2503)
  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)
  • Factor out path joint-space jump check (#2506)
  • Use node logging in moveit_ros (#2482)
  • Add new clang-tidy style rules (#2177)
  • Use generate parameters library in PlanningPipelineClass + general cleanups (#2288)
    • Don\'t discard stuff
    • Move constants into source file
    • Move static consts into header
    • Don\'t ignore pipeline result
    • Use generate parameter library for planning pipeline parameters
    • Fix CI
    • More CI fixes
    • Remove more state from planning pipeline
    • Small cleanups
    • Assert planner_instance_ is not a nullptr
    • Remove valid variable
    • Simplify logic for trajectory printing
    • More helpful comments
    • Small logic simplification by using break
    • Fix clang-tidy
    • Pre-commit + Deprecate functions instead of removing them
    • Fix CI
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Remove old deprecated functions (#2384)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Mario Prats, Marq Rasmussen, Rayene Messaoud, Sebastian Jahr, Tyler Weaver

2.8.0 (2023-09-10)

  • Replaced boost::algorithm::join with fmt::join (#2273)

    • Replaced boost::algorithm::join with fmt::join
    • Made changes in CMakeLists.txt to accomodate fmt
    • Updated package.xml files
    • removed redundant boost dependencies

    * Rename variables -> variable ---------Co-authored-by: Sebastian Castro <4603398+sea-bass@users.noreply.github.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Specify controller name in MGI execution (#2257)

    • Specify controller name in MGI execute

    * Finish comment ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • fix move_group capabilities loading (#2270)

    • fix move_group capabilities loading
    • clang-format
  • Cleanup move_group CMake (#2226)

  • Contributors: Shobuj Paul, Stephanie Eng, Tyler Weaver, Yang Lin

2.7.4 (2023-05-18)

  • Fix MoveGroup action cancel callback (#2118) Moves the execution callback into its own thread to avoid blocking and actually calls the preempt function in with the cancel callback.
  • Scale acceleration and velocity of cartesian interpolations (#1968)
  • Contributors: Jonathan Grebe, Yadu

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Fix MoveItCpp issues (port from MoveIt1) (#2001) * Fix MoveitCpp\'s const member accessors They should return a ConstPtr instead of a const Ptr&!

    • Fix SEVERE ClassLoader warning when releasing MoveItCpp
    • PSM was released before copy of its RobotModel -> removed extra RobotModel copy
    • clearContents() was broken:
    • resets in wrong order: psm_ should be last

    - trajectory_execution_manager_ was missing I suggest to omit clearContents() and rely on the (correct) ordering of member variables. While this is not explicit, we ensure that we don\'t miss any newly added member variable. Fix: https://github.com/ros-planning/moveit2/issues/1597 ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai> Co-authored-by: Jafar <cafer.abdi@gmail.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io> Co-authored-by: JafarAbdi <jafar.uruc@gmail.com>

  • Contributors: Robert Haschke

2.7.1 (2023-03-23)

  • Fix member naming (#1949) * Update clang-tidy rules for readability-identifier-naming Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: AlexWebb, Robert Haschke

2.7.0 (2023-01-29)

  • move_group: Delete unused execute_trajectory_service_capability (#1836)
  • keep printf color change on same line (#1828) This ensures the color reset is applied because printing the color reset after new lines seems to preven the color from actually being reset. Co-authored-by: William Wedler <william.wedler@resquared.com>
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Add braces around blocks. (#999)
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, AndyZe, Christian Henkel, Cory Crean, Robert Haschke, Will

2.6.0 (2022-11-10)

  • Short-circuit planning adapters (#1694) * Revert \"Planning request adapters: short-circuit if failure, return code rather than bool (#1605)\" This reverts commit 66a64b4a72b6ddef1af2329f20ed8162554d5bcb.

    • Add debug message in call stack of planning_request_adapters
    • Short-circuit planning request adapters
    • Replace if-elseif cascade with switch
    • Cleanup translation of MoveItErrorCode to string
    • Move default code to moveit_core/utils
    • Override defaults in existing getActionResultString()
    • Provide translations for all error codes defined in moveit_msgs
    • Fix comment according to review

    * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: AndyZe <andyz@utexas.edu>

  • avoid implicit conversions (#1593)

  • Remove unused header (#1572)

  • Merge PR #1553: Improve cmake files

  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets

  • Improve CMake usage (#1550)

  • Removed plan_with_sensing (#1142)

  • Remove __has_include statements (#1481)

  • Contributors: Abishalini Sivaraman, Robert Haschke, Sarah Nix, Sebastian Jahr, Stephanie Eng, Vatan Aksoy Tezer

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge pull request #1402 from Abishalini/pr-sync-a436a97 Sync with MoveIt
  • Merge https://github.com/ros-planning/moveit/commit/a436a9771f7445c162cc3090c4c7c57bdb5bf194
  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Remove manipulation from moveit_ros (#1177)
  • Merge pull request #3137 from TAMS-Group/pr-master-monitor-dynamics move_group can optionally monitor dynamics
  • optionally enable dynamics monitoring in move_group node
  • convert move_group to LOGNAME
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • banish bind()
  • Contributors: Abishalini, Michael G

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

Recent questions tagged moveit_ros_move_group 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-15
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Görner
  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

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
  • [Planning Pipeline Refactoring] #2 Enable chaining planners (#2457)
    • Enable chaining multiple planners
  • Node logging in moveit_core (#2503)
  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)
  • Factor out path joint-space jump check (#2506)
  • Use node logging in moveit_ros (#2482)
  • Add new clang-tidy style rules (#2177)
  • Use generate parameters library in PlanningPipelineClass + general cleanups (#2288)
    • Don\'t discard stuff
    • Move constants into source file
    • Move static consts into header
    • Don\'t ignore pipeline result
    • Use generate parameter library for planning pipeline parameters
    • Fix CI
    • More CI fixes
    • Remove more state from planning pipeline
    • Small cleanups
    • Assert planner_instance_ is not a nullptr
    • Remove valid variable
    • Simplify logic for trajectory printing
    • More helpful comments
    • Small logic simplification by using break
    • Fix clang-tidy
    • Pre-commit + Deprecate functions instead of removing them
    • Fix CI
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Remove old deprecated functions (#2384)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Mario Prats, Marq Rasmussen, Rayene Messaoud, Sebastian Jahr, Tyler Weaver

2.8.0 (2023-09-10)

  • Replaced boost::algorithm::join with fmt::join (#2273)

    • Replaced boost::algorithm::join with fmt::join
    • Made changes in CMakeLists.txt to accomodate fmt
    • Updated package.xml files
    • removed redundant boost dependencies

    * Rename variables -> variable ---------Co-authored-by: Sebastian Castro <4603398+sea-bass@users.noreply.github.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Specify controller name in MGI execution (#2257)

    • Specify controller name in MGI execute

    * Finish comment ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • fix move_group capabilities loading (#2270)

    • fix move_group capabilities loading
    • clang-format
  • Cleanup move_group CMake (#2226)

  • Contributors: Shobuj Paul, Stephanie Eng, Tyler Weaver, Yang Lin

2.7.4 (2023-05-18)

  • Fix MoveGroup action cancel callback (#2118) Moves the execution callback into its own thread to avoid blocking and actually calls the preempt function in with the cancel callback.
  • Scale acceleration and velocity of cartesian interpolations (#1968)
  • Contributors: Jonathan Grebe, Yadu

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Fix MoveItCpp issues (port from MoveIt1) (#2001) * Fix MoveitCpp\'s const member accessors They should return a ConstPtr instead of a const Ptr&!

    • Fix SEVERE ClassLoader warning when releasing MoveItCpp
    • PSM was released before copy of its RobotModel -> removed extra RobotModel copy
    • clearContents() was broken:
    • resets in wrong order: psm_ should be last

    - trajectory_execution_manager_ was missing I suggest to omit clearContents() and rely on the (correct) ordering of member variables. While this is not explicit, we ensure that we don\'t miss any newly added member variable. Fix: https://github.com/ros-planning/moveit2/issues/1597 ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai> Co-authored-by: Jafar <cafer.abdi@gmail.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io> Co-authored-by: JafarAbdi <jafar.uruc@gmail.com>

  • Contributors: Robert Haschke

2.7.1 (2023-03-23)

  • Fix member naming (#1949) * Update clang-tidy rules for readability-identifier-naming Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: AlexWebb, Robert Haschke

2.7.0 (2023-01-29)

  • move_group: Delete unused execute_trajectory_service_capability (#1836)
  • keep printf color change on same line (#1828) This ensures the color reset is applied because printing the color reset after new lines seems to preven the color from actually being reset. Co-authored-by: William Wedler <william.wedler@resquared.com>
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Add braces around blocks. (#999)
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, AndyZe, Christian Henkel, Cory Crean, Robert Haschke, Will

2.6.0 (2022-11-10)

  • Short-circuit planning adapters (#1694) * Revert \"Planning request adapters: short-circuit if failure, return code rather than bool (#1605)\" This reverts commit 66a64b4a72b6ddef1af2329f20ed8162554d5bcb.

    • Add debug message in call stack of planning_request_adapters
    • Short-circuit planning request adapters
    • Replace if-elseif cascade with switch
    • Cleanup translation of MoveItErrorCode to string
    • Move default code to moveit_core/utils
    • Override defaults in existing getActionResultString()
    • Provide translations for all error codes defined in moveit_msgs
    • Fix comment according to review

    * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: AndyZe <andyz@utexas.edu>

  • avoid implicit conversions (#1593)

  • Remove unused header (#1572)

  • Merge PR #1553: Improve cmake files

  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets

  • Improve CMake usage (#1550)

  • Removed plan_with_sensing (#1142)

  • Remove __has_include statements (#1481)

  • Contributors: Abishalini Sivaraman, Robert Haschke, Sarah Nix, Sebastian Jahr, Stephanie Eng, Vatan Aksoy Tezer

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge pull request #1402 from Abishalini/pr-sync-a436a97 Sync with MoveIt
  • Merge https://github.com/ros-planning/moveit/commit/a436a9771f7445c162cc3090c4c7c57bdb5bf194
  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Remove manipulation from moveit_ros (#1177)
  • Merge pull request #3137 from TAMS-Group/pr-master-monitor-dynamics move_group can optionally monitor dynamics
  • optionally enable dynamics monitoring in move_group node
  • convert move_group to LOGNAME
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • banish bind()
  • Contributors: Abishalini, Michael G

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

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.1.13
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version master
Last Updated 2024-03-03
Dev Status MAINTAINED
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Ferguson
  • Michael Görner
  • MoveIt Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

1.1.13 (2023-07-28)

1.1.12 (2023-05-13)

1.1.11 (2022-12-21)

  • Merge PR #3262: Short-circuit planning adapters
    • Early return from failing planning adapters, namely FixStartStateCollision and FixStartStatePathConstraint
    • Propagate the error code via [MotionPlanResponse::error_code_]{.title-ref}
    • Add string translations for all error codes
  • Cleanup translation of MoveItErrorCode to string
    • Move default code to moveit_core/utils
    • Override defaults in existing getActionResultString()
    • Provide translations for all error codes defined in moveit_msgs
  • Drop shortcut avoiding planning when all constraints are already met (#3228)

    When calling the PlanAndExcute action, there was a shortcut avoiding planning (and execution) when all goal constraints were already met. However, this check also succeeded when there was an error, e.g. resolving link names. As proper link resolution might require some planning request adapters to be executed, e.g. ResolveConstraintFrames, we should not skip planning. Note, calling the PlanOnly action, didn\'t have this shortcut as well, resulting in inconsistent behavior.

  • Contributors: Robert Haschke

1.1.10 (2022-09-13)

  • Limit Cartesian speed for link(s) (#2856)
  • Optionally enable dynamics monitoring in move_group node (#3137)
  • Replace bind() with lambdas (#3106)
  • Contributors: Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
cob_collision_monitor github-ipa320-cob_manipulation
cob_moveit_bringup github-ipa320-cob_manipulation
crane_x7_moveit_config github-rt-net-crane_x7_ros
fetch_moveit_config github-fetchrobotics-fetch_ros
khi_duaro_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007l_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs013n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs020n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs025n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs030n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs080n_moveit_config github-Kawasaki-Robotics-khi_robot
pilz_industrial_motion_planner github-ros-planning-moveit
moveit_ros_manipulation github-ros-planning-moveit
moveit_ros github-ros-planning-moveit
moveit_ros_planning_interface github-ros-planning-moveit
moveit_runtime github-ros-planning-moveit
panda_moveit_config github-ros-planning-panda_moveit_config
prbt_moveit_config github-PilzDE-pilz_robots
pincher_arm_moveit_config github-fictionlab-pincher_arm
sciurus17_moveit_config github-rt-net-sciurus17_ros
ur10_moveit_config github-ros-industrial-universal_robot
ur10e_moveit_config github-ros-industrial-universal_robot
ur16e_moveit_config github-ros-industrial-universal_robot
ur20_moveit_config github-ros-industrial-universal_robot
ur30_moveit_config github-ros-industrial-universal_robot
ur3_moveit_config github-ros-industrial-universal_robot
ur3e_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
ur5e_moveit_config github-ros-industrial-universal_robot
mia_hand_moveit_config bitbucket-prensiliasrl-mia_hand_ros_pkgs
moveit_task_constructor_capabilities github-ros-planning-moveit_task_constructor

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange

No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.

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-15
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Görner
  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

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
  • [Planning Pipeline Refactoring] #2 Enable chaining planners (#2457)
    • Enable chaining multiple planners
  • Node logging in moveit_core (#2503)
  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)
  • Factor out path joint-space jump check (#2506)
  • Use node logging in moveit_ros (#2482)
  • Add new clang-tidy style rules (#2177)
  • Use generate parameters library in PlanningPipelineClass + general cleanups (#2288)
    • Don\'t discard stuff
    • Move constants into source file
    • Move static consts into header
    • Don\'t ignore pipeline result
    • Use generate parameter library for planning pipeline parameters
    • Fix CI
    • More CI fixes
    • Remove more state from planning pipeline
    • Small cleanups
    • Assert planner_instance_ is not a nullptr
    • Remove valid variable
    • Simplify logic for trajectory printing
    • More helpful comments
    • Small logic simplification by using break
    • Fix clang-tidy
    • Pre-commit + Deprecate functions instead of removing them
    • Fix CI
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Remove old deprecated functions (#2384)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Mario Prats, Marq Rasmussen, Rayene Messaoud, Sebastian Jahr, Tyler Weaver

2.8.0 (2023-09-10)

  • Replaced boost::algorithm::join with fmt::join (#2273)

    • Replaced boost::algorithm::join with fmt::join
    • Made changes in CMakeLists.txt to accomodate fmt
    • Updated package.xml files
    • removed redundant boost dependencies

    * Rename variables -> variable ---------Co-authored-by: Sebastian Castro <4603398+sea-bass@users.noreply.github.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Specify controller name in MGI execution (#2257)

    • Specify controller name in MGI execute

    * Finish comment ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • fix move_group capabilities loading (#2270)

    • fix move_group capabilities loading
    • clang-format
  • Cleanup move_group CMake (#2226)

  • Contributors: Shobuj Paul, Stephanie Eng, Tyler Weaver, Yang Lin

2.7.4 (2023-05-18)

  • Fix MoveGroup action cancel callback (#2118) Moves the execution callback into its own thread to avoid blocking and actually calls the preempt function in with the cancel callback.
  • Scale acceleration and velocity of cartesian interpolations (#1968)
  • Contributors: Jonathan Grebe, Yadu

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Fix MoveItCpp issues (port from MoveIt1) (#2001) * Fix MoveitCpp\'s const member accessors They should return a ConstPtr instead of a const Ptr&!

    • Fix SEVERE ClassLoader warning when releasing MoveItCpp
    • PSM was released before copy of its RobotModel -> removed extra RobotModel copy
    • clearContents() was broken:
    • resets in wrong order: psm_ should be last

    - trajectory_execution_manager_ was missing I suggest to omit clearContents() and rely on the (correct) ordering of member variables. While this is not explicit, we ensure that we don\'t miss any newly added member variable. Fix: https://github.com/ros-planning/moveit2/issues/1597 ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai> Co-authored-by: Jafar <cafer.abdi@gmail.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io> Co-authored-by: JafarAbdi <jafar.uruc@gmail.com>

  • Contributors: Robert Haschke

2.7.1 (2023-03-23)

  • Fix member naming (#1949) * Update clang-tidy rules for readability-identifier-naming Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: AlexWebb, Robert Haschke

2.7.0 (2023-01-29)

  • move_group: Delete unused execute_trajectory_service_capability (#1836)
  • keep printf color change on same line (#1828) This ensures the color reset is applied because printing the color reset after new lines seems to preven the color from actually being reset. Co-authored-by: William Wedler <william.wedler@resquared.com>
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Add braces around blocks. (#999)
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, AndyZe, Christian Henkel, Cory Crean, Robert Haschke, Will

2.6.0 (2022-11-10)

  • Short-circuit planning adapters (#1694) * Revert \"Planning request adapters: short-circuit if failure, return code rather than bool (#1605)\" This reverts commit 66a64b4a72b6ddef1af2329f20ed8162554d5bcb.

    • Add debug message in call stack of planning_request_adapters
    • Short-circuit planning request adapters
    • Replace if-elseif cascade with switch
    • Cleanup translation of MoveItErrorCode to string
    • Move default code to moveit_core/utils
    • Override defaults in existing getActionResultString()
    • Provide translations for all error codes defined in moveit_msgs
    • Fix comment according to review

    * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: AndyZe <andyz@utexas.edu>

  • avoid implicit conversions (#1593)

  • Remove unused header (#1572)

  • Merge PR #1553: Improve cmake files

  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets

  • Improve CMake usage (#1550)

  • Removed plan_with_sensing (#1142)

  • Remove __has_include statements (#1481)

  • Contributors: Abishalini Sivaraman, Robert Haschke, Sarah Nix, Sebastian Jahr, Stephanie Eng, Vatan Aksoy Tezer

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge pull request #1402 from Abishalini/pr-sync-a436a97 Sync with MoveIt
  • Merge https://github.com/ros-planning/moveit/commit/a436a9771f7445c162cc3090c4c7c57bdb5bf194
  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Remove manipulation from moveit_ros (#1177)
  • Merge pull request #3137 from TAMS-Group/pr-master-monitor-dynamics move_group can optionally monitor dynamics
  • optionally enable dynamics monitoring in move_group node
  • convert move_group to LOGNAME
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • banish bind()
  • Contributors: Abishalini, Michael G

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

Recent questions tagged moveit_ros_move_group 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-15
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Görner
  • Henning Kayser
  • Tyler Weaver
  • MoveIt Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

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
  • [Planning Pipeline Refactoring] #2 Enable chaining planners (#2457)
    • Enable chaining multiple planners
  • Node logging in moveit_core (#2503)
  • [Planning Pipeline Refactoring] #1 Simplify Adapter - Planner chain (#2429)
  • Factor out path joint-space jump check (#2506)
  • Use node logging in moveit_ros (#2482)
  • Add new clang-tidy style rules (#2177)
  • Use generate parameters library in PlanningPipelineClass + general cleanups (#2288)
    • Don\'t discard stuff
    • Move constants into source file
    • Move static consts into header
    • Don\'t ignore pipeline result
    • Use generate parameter library for planning pipeline parameters
    • Fix CI
    • More CI fixes
    • Remove more state from planning pipeline
    • Small cleanups
    • Assert planner_instance_ is not a nullptr
    • Remove valid variable
    • Simplify logic for trajectory printing
    • More helpful comments
    • Small logic simplification by using break
    • Fix clang-tidy
    • Pre-commit + Deprecate functions instead of removing them
    • Fix CI
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Remove old deprecated functions (#2384)
  • Merge branch \'main\' into dependabot/github_actions/SonarSource/sonarcloud-github-c-cpp-2
  • Contributors: Mario Prats, Marq Rasmussen, Rayene Messaoud, Sebastian Jahr, Tyler Weaver

2.8.0 (2023-09-10)

  • Replaced boost::algorithm::join with fmt::join (#2273)

    • Replaced boost::algorithm::join with fmt::join
    • Made changes in CMakeLists.txt to accomodate fmt
    • Updated package.xml files
    • removed redundant boost dependencies

    * Rename variables -> variable ---------Co-authored-by: Sebastian Castro <4603398+sea-bass@users.noreply.github.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • Specify controller name in MGI execution (#2257)

    • Specify controller name in MGI execute

    * Finish comment ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • fix move_group capabilities loading (#2270)

    • fix move_group capabilities loading
    • clang-format
  • Cleanup move_group CMake (#2226)

  • Contributors: Shobuj Paul, Stephanie Eng, Tyler Weaver, Yang Lin

2.7.4 (2023-05-18)

  • Fix MoveGroup action cancel callback (#2118) Moves the execution callback into its own thread to avoid blocking and actually calls the preempt function in with the cancel callback.
  • Scale acceleration and velocity of cartesian interpolations (#1968)
  • Contributors: Jonathan Grebe, Yadu

2.7.3 (2023-04-24)

  • Replace Variable PROJECT_NAME in CMakeLists.txt with the actual name (#2020)
  • Contributors: Shobuj Paul

2.7.2 (2023-04-18)

  • Fix MoveItCpp issues (port from MoveIt1) (#2001) * Fix MoveitCpp\'s const member accessors They should return a ConstPtr instead of a const Ptr&!

    • Fix SEVERE ClassLoader warning when releasing MoveItCpp
    • PSM was released before copy of its RobotModel -> removed extra RobotModel copy
    • clearContents() was broken:
    • resets in wrong order: psm_ should be last

    - trajectory_execution_manager_ was missing I suggest to omit clearContents() and rely on the (correct) ordering of member variables. While this is not explicit, we ensure that we don\'t miss any newly added member variable. Fix: https://github.com/ros-planning/moveit2/issues/1597 ---------Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai> Co-authored-by: Jafar <cafer.abdi@gmail.com> Co-authored-by: Sebastian Jahr <sebastian.jahr@tuta.io> Co-authored-by: JafarAbdi <jafar.uruc@gmail.com>

  • Contributors: Robert Haschke

2.7.1 (2023-03-23)

  • Fix member naming (#1949) * Update clang-tidy rules for readability-identifier-naming Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>

  • remove underscore from public member in MotionPlanResponse (#1939)

    • remove underscore from private members
    • fix more uses of the suffix notation
  • Contributors: AlexWebb, Robert Haschke

2.7.0 (2023-01-29)

  • move_group: Delete unused execute_trajectory_service_capability (#1836)
  • keep printf color change on same line (#1828) This ensures the color reset is applied because printing the color reset after new lines seems to preven the color from actually being reset. Co-authored-by: William Wedler <william.wedler@resquared.com>
  • Fix BSD license in package.xml (#1796)
    • fix BSD license in package.xml
    • this must also be spdx compliant
  • Add braces around blocks. (#999)
  • Used C++ style cast instead of C style cast (#1628) Co-authored-by: Henning Kayser <henningkayser@picknik.ai>
  • Fix clang-tidy issues (#1706)

    • Blindly apply automatic clang-tidy fixes
    • Exemplarily cleanup a few automatic clang-tidy fixes
    • Clang-tidy fixups
    • Missed const-ref fixups
    • Fix unsupported non-const -> const

    * More fixes Co-authored-by: Henning Kayser <henningkayser@picknik.ai>

  • Contributors: Abhijeet Das Gupta, AndyZe, Christian Henkel, Cory Crean, Robert Haschke, Will

2.6.0 (2022-11-10)

  • Short-circuit planning adapters (#1694) * Revert \"Planning request adapters: short-circuit if failure, return code rather than bool (#1605)\" This reverts commit 66a64b4a72b6ddef1af2329f20ed8162554d5bcb.

    • Add debug message in call stack of planning_request_adapters
    • Short-circuit planning request adapters
    • Replace if-elseif cascade with switch
    • Cleanup translation of MoveItErrorCode to string
    • Move default code to moveit_core/utils
    • Override defaults in existing getActionResultString()
    • Provide translations for all error codes defined in moveit_msgs
    • Fix comment according to review

    * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> * Add braces Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: Henning Kayser <henningkayser@picknik.ai> Co-authored-by: AndyZe <andyz@utexas.edu>

  • avoid implicit conversions (#1593)

  • Remove unused header (#1572)

  • Merge PR #1553: Improve cmake files

  • Use standard exported targets: export_\${PROJECT_NAME} -> \${PROJECT_NAME}Targets

  • Improve CMake usage (#1550)

  • Removed plan_with_sensing (#1142)

  • Remove __has_include statements (#1481)

  • Contributors: Abishalini Sivaraman, Robert Haschke, Sarah Nix, Sebastian Jahr, Stephanie Eng, Vatan Aksoy Tezer

2.5.3 (2022-07-28)

2.5.2 (2022-07-18)

  • Merge pull request #1402 from Abishalini/pr-sync-a436a97 Sync with MoveIt
  • Merge https://github.com/ros-planning/moveit/commit/a436a9771f7445c162cc3090c4c7c57bdb5bf194
  • Merge remote-tracking branch \'origin/main\' into feature/msa
  • Remove manipulation from moveit_ros (#1177)
  • Merge pull request #3137 from TAMS-Group/pr-master-monitor-dynamics move_group can optionally monitor dynamics
  • optionally enable dynamics monitoring in move_group node
  • convert move_group to LOGNAME
  • Merge pull request #3106 from v4hn/pr-master-bind-them-all / banish bind()
  • banish bind()
  • Contributors: Abishalini, Michael G

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

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.9.18
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2020-10-12
Dev Status MAINTAINED
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Ferguson
  • Michael Görner
  • MoveIt! Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

0.9.18 (2020-01-24)

0.9.17 (2019-07-09)

0.9.16 (2019-06-29)

  • [maintanance] Resolve catkin lint issues (#1137)
  • [maintanance] Reduce log spamming: list capabilities only once (#1250)
  • Contributors: Ludovic Delval, Robert Haschke

0.9.15 (2018-10-29)

0.9.14 (2018-10-24)

0.9.13 (2018-10-24)

  • [fix] PlanningSceneMonitor lock #1033: Fix #868 (#1057)
  • [maintenance] various compiler warnings (#1038)
  • [maintenance] add minimum required pluginlib version (#927)
  • Contributors: Mikael Arguedas, Mohmmad Ayman, Robert Haschke, mike lautman

0.9.12 (2018-05-29)

  • disable waitForCurrentRobotState() for PlanService capability (#923), fixing (#868)
  • Add namespace capabilities to moveit_commander (#835)
  • [fix] MoveAction capability can drop cancel request if it is sent shortly after goal is sent (#756)
  • Contributors: Dave Coleman, Ian McMahon, Mikael Arguedas, Robert Haschke, Will Baker

0.9.11 (2017-12-25)

0.9.10 (2017-12-09)

  • [fix] always return true in MoveGroupPlanService callback #674
  • [improve] adding swp\'s to gitignore and removing redundant capabilites from capability_names.h (#704)
  • Contributors: Mike Lautman, Shingo Kitagawa

0.9.9 (2017-08-06)

0.9.8 (2017-06-21)

0.9.7 (2017-06-05)

0.9.6 (2017-04-12)

0.9.5 (2017-03-08)

  • [fix][moveit_ros_warehouse] gcc6 build error #423
  • [enhancement] Remove \"catch (...)\" instances, catch std::exception instead of std::runtime_error (#445)
  • Contributors: Bence Magyar, Dave Coleman

0.9.4 (2017-02-06)

  • [fix] race conditions when updating PlanningScene (#350)
  • [maintenance] clang-format upgraded to 3.8 (#367)
  • Contributors: Dave Coleman, Robert Haschke

0.9.3 (2016-11-16)

  • [maintenance] Updated package.xml maintainers and author emails #330
  • Contributors: Dave Coleman, Ian McMahon

0.9.2 (2016-11-05)

0.6.6 (2016-06-08)

  • added missing validity check iterator found with [configs.find()]{.title-ref} needs to be validated before use...
  • Removed trailing whitespace from entire repository
  • moved planner params services into existing capability QueryPlannerInterfaces
  • capability plugin MoveGroupPlannerParamsService to get/set planner params
  • Fixed bug(?) in move_group::MoveGroupKinematicsService::computeIK link name selection.
  • Contributors: Dave Coleman, Mihai Pomarlan, Robert Haschke

0.6.5 (2015-01-24)

  • update maintainers
  • Contributors: Michael Ferguson

0.6.4 (2014-12-20)

0.6.3 (2014-12-03)

0.6.2 (2014-10-31)

  • Merge pull request #522 from mikeferguson/indigo-devel add dependency on std_srvs (part of octomap clearing service)
  • Contributors: Ioan A Sucan, Michael Ferguson

0.6.1 (2014-10-31)

0.6.0 (2014-10-27)

  • Added move_group capability for clearing octomap.
  • Contributors: Dave Hershberger, Sachin Chitta

0.5.19 (2014-06-23)

  • Address [cppcheck: duplicateIf] error. The same condition was being checked twice, and the same action was being taken.
  • Contributors: Adolfo Rodriguez Tsouroukdissian

0.5.18 (2014-03-23)

0.5.17 (2014-03-22)

  • update maintainer e-mail
  • Contributors: Ioan Sucan

0.5.16 (2014-02-27)

  • empty state should be a diff state, otherwise attached objects are deleted
  • Contributors: sachinc

0.5.14 (2014-02-06)

0.5.13 (2014-02-06)

0.5.12 (2014-01-03)

0.5.11 (2014-01-03)

0.5.10 (2013-12-08)

0.5.9 (2013-12-03)

  • Re-ordered movegroup\'s initialization, so capabilities start after monitors.
  • correcting maintainer email
  • Added planning feedback to gui, refactored states tab

0.5.8 (2013-10-11)

0.5.7 (2013-10-01)

0.5.6 (2013-09-26)

0.5.5 (2013-09-23)

  • porting to new RobotState API
  • more console output

0.5.4 (2013-08-14)

  • make headers and author definitions aligned the same way; white space fixes
  • Dependency for move_group_capabilities_base fixed.

0.5.2 (2013-07-15)

0.5.1 (2013-07-14)

0.5.0 (2013-07-12)

  • white space fixes (tabs are now spaces)
  • port to new base class for planning_interface (using planning contexts)

0.4.5 (2013-07-03)

  • Fixed for moveit_msgs/JointLimits.h no such file or directory

0.4.4 (2013-06-26)

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

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.8.7
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version jade-devel
Last Updated 2017-07-23
Dev Status MAINTAINED
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Sachin Chitta
  • Ioan Sucan
  • Michael Ferguson

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

0.8.7 (2017-04-03)

  • [fix] gcc6 build error (#471, #458)
  • Contributors: Dave Coleman

0.8.6 (2017-03-08)

0.8.4 (2017-02-06)

  • [capability] validate trajectory before execution (#63)
  • Contributors: Dave Coleman, Isaac I.Y. Saito, Maarten de Vries, Robert Haschke

0.8.3 (2016-08-19)

0.6.6 (2016-06-08)

  • added missing validity check iterator found with [configs.find()]{.title-ref} needs to be validated before use...
  • Removed trailing whitespace from entire repository
  • moved planner params services into existing capability QueryPlannerInterfaces
  • capability plugin MoveGroupPlannerParamsService to get/set planner params
  • Fixed bug(?) in move_group::MoveGroupKinematicsService::computeIK link name selection.
  • Contributors: Dave Coleman, Mihai Pomarlan, Robert Haschke

0.6.5 (2015-01-24)

  • update maintainers
  • Contributors: Michael Ferguson

0.6.4 (2014-12-20)

0.6.3 (2014-12-03)

0.6.2 (2014-10-31)

  • Merge pull request #522 from mikeferguson/indigo-devel add dependency on std_srvs (part of octomap clearing service)
  • Contributors: Ioan A Sucan, Michael Ferguson

0.6.1 (2014-10-31)

0.6.0 (2014-10-27)

  • Added move_group capability for clearing octomap.
  • Contributors: Dave Hershberger, Sachin Chitta

0.5.19 (2014-06-23)

  • Address [cppcheck: duplicateIf] error. The same condition was being checked twice, and the same action was being taken.
  • Contributors: Adolfo Rodriguez Tsouroukdissian

0.5.18 (2014-03-23)

0.5.17 (2014-03-22)

  • update maintainer e-mail
  • Contributors: Ioan Sucan

0.5.16 (2014-02-27)

  • empty state should be a diff state, otherwise attached objects are deleted
  • Contributors: sachinc

0.5.14 (2014-02-06)

0.5.13 (2014-02-06)

0.5.12 (2014-01-03)

0.5.11 (2014-01-03)

0.5.10 (2013-12-08)

0.5.9 (2013-12-03)

  • Re-ordered movegroup\'s initialization, so capabilities start after monitors.
  • correcting maintainer email
  • Added planning feedback to gui, refactored states tab

0.5.8 (2013-10-11)

0.5.7 (2013-10-01)

0.5.6 (2013-09-26)

0.5.5 (2013-09-23)

  • porting to new RobotState API
  • more console output

0.5.4 (2013-08-14)

  • make headers and author definitions aligned the same way; white space fixes
  • Dependency for move_group_capabilities_base fixed.

0.5.2 (2013-07-15)

0.5.1 (2013-07-14)

0.5.0 (2013-07-12)

  • white space fixes (tabs are now spaces)
  • port to new base class for planning_interface (using planning contexts)

0.4.5 (2013-07-03)

  • Fixed for moveit_msgs/JointLimits.h no such file or directory

0.4.4 (2013-06-26)

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
fanuc_cr7ia_moveit_config github-ros-industrial-fanuc
fanuc_cr7ial_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200i_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib3l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m20ib25_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_m6ib6s_moveit_config github-ros-industrial-fanuc
fanuc_m6ib_moveit_config github-ros-industrial-fanuc
fanuc_r1000ia80f_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id7l_moveit_config github-ros-industrial-fanuc_experimental
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
fetch_moveit_config github-fetchrobotics-fetch_ros
moveit_ros_manipulation github-ros-planning-moveit
moveit_ros github-ros-planning-moveit
moveit_ros_planning_interface github-ros-planning-moveit
moveit_runtime github-ros-planning-moveit
nao_moveit_config github-ros-naoqi-nao_moveit_config
pepper_moveit_config github-ros-naoqi-pepper_moveit_config
romeo_moveit_config github-ros-aldebaran-romeo_moveit_config
aubo_i5_moveit_config github-auboliuxin-aubo_robot

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.7.14
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version indigo-devel
Last Updated 2019-06-17
Dev Status MAINTAINED
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Ferguson
  • Michael Görner
  • MoveIt! Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

0.7.14 (2018-10-20)

  • [fix] race conditions when updating PlanningScene #350
  • Contributors: Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
abb_irb2400_moveit_config github-ros-industrial-abb
abb_irb6640_moveit_config github-ros-industrial-abb
cob_collision_monitor github-ipa320-cob_manipulation
cob_moveit_bringup github-ipa320-cob_manipulation
cob_pick_place_action github-ipa320-cob_manipulation
denso_robot_moveit_config github-DENSORobot-denso_robot_ros
fanuc_cr7ia_moveit_config github-ros-industrial-fanuc
fanuc_cr7ial_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200i_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib3l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m20ib25_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_m6ib6s_moveit_config github-ros-industrial-fanuc
fanuc_m6ib_moveit_config github-ros-industrial-fanuc
fanuc_r1000ia80f_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id7l_moveit_config github-ros-industrial-fanuc_experimental
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
fetch_moveit_config github-fetchrobotics-fetch_ros
husky_ur5_moveit_config github-husky-husky
tra1_moveit_config github-tork-a-minas
moveit_ros_manipulation github-ros-planning-moveit
moveit_ros github-ros-planning-moveit
moveit_ros_planning_interface github-ros-planning-moveit
moveit_runtime github-ros-planning-moveit
pr2_moveit_config github-ros-planning-moveit_pr2
hironx_moveit_config github-start-jsk-rtmros_hironx
nextage_moveit_config github-tork-a-rtmros_nextage
staubli_rx160_moveit_config github-ros-industrial-staubli
tork_moveit_tutorial github-tork-a-tork_moveit_tutorial
ur10_moveit_config github-ros-industrial-universal_robot
ur3_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
abb_irb120_moveit_config github-ros-industrial-abb_experimental
abb_irb120t_moveit_config github-ros-industrial-abb_experimental
vs060_moveit_config github-start-jsk-denso
motoman_sda10f_moveit_config github-ros-industrial-motoman
motoman_sia20d_moveit_config github-ros-industrial-motoman
motoman_mpl80_moveit_config github-ros-industrial-motoman_experimental
motoman_sia5d_moveit_config github-ros-industrial-motoman_experimental
nao_moveit_config github-ros-naoqi-nao_moveit_config
pepper_moveit_config github-ros-naoqi-pepper_moveit_config
rb1_base_kinova_j2n6a300_moveit_config github-RobotnikAutomation-rb1_base_common
romeo_moveit_config github-ros-aldebaran-romeo_moveit_config
turtlebot_arm_moveit_config github-turtlebot-turtlebot_arm
calvin_moveit_config github-uos-calvin_robot
maxwell_moveit_config github-mikeferguson-maxwell
atlas_moveit_config github-ros-planning-moveit_robots
atlas_v3_moveit_config github-ros-planning-moveit_robots
baxter_moveit_config github-ros-planning-moveit_robots
clam_moveit_config github-ros-planning-moveit_robots
iri_wam_moveit_config github-ros-planning-moveit_robots
r2_moveit_generated github-ros-planning-moveit_robots
hrp2jsk_moveit_config github-start-jsk-rtmros_gazebo
hrp2jsknt_moveit_config github-start-jsk-rtmros_gazebo
hrp2jsknts_moveit_config github-start-jsk-rtmros_gazebo
hrp2w_moveit_config github-start-jsk-rtmros_gazebo
samplerobot_moveit_config github-start-jsk-rtmros_gazebo
staro_moveit_config github-start-jsk-rtmros_gazebo
aubo_i5_moveit_config github-auboliuxin-aubo_robot
carl_moveit github-GT-RAIL-carl_moveit
stomp_test_kr210_moveit_config github-ros-industrial-industrial_moveit
phantomx_reactor_arm_moveit_config github-RobotnikAutomation-phantomx_reactor_arm
rb1_jaco_3fg_moveit_config github-RobotnikAutomation-rb1_common
rb1_mico_3fg_moveit_config github-RobotnikAutomation-rb1_common
schunk_lwa4d_moveit_config github-ipa320-schunk_robots
Multicar_moveit_config github-gus484-ros
widowx_arm_moveit github-RobotnikAutomation-widowx_arm
jaco_moveit_config github-RIVeR-Lab-wpi_jaco
mico_moveit_config github-RIVeR-Lab-wpi_jaco
yumi_moveit_config github-OrebroUniversity-yumi

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.5.20
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit_ros.git
VCS Type git
VCS Version hydro-devel
Last Updated 2015-04-14
Dev Status MAINTAINED
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Sachin Chitta
  • Ioan Sucan

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

0.5.20 (2014-12-09)

0.5.19 (2014-06-23)

  • Address [cppcheck: duplicateIf] error. The same condition was being checked twice, and the same action was being taken.
  • Contributors: Adolfo Rodriguez Tsouroukdissian

0.5.18 (2014-03-23)

0.5.17 (2014-03-22)

  • update maintainer e-mail
  • Contributors: Ioan Sucan

0.5.16 (2014-02-27)

  • empty state should be a diff state, otherwise attached objects are deleted
  • Contributors: sachinc

0.5.14 (2014-02-06)

0.5.13 (2014-02-06)

0.5.12 (2014-01-03)

0.5.11 (2014-01-03)

0.5.10 (2013-12-08)

0.5.9 (2013-12-03)

  • Re-ordered movegroup\'s initialization, so capabilities start after monitors.
  • correcting maintainer email
  • Added planning feedback to gui, refactored states tab

0.5.8 (2013-10-11)

0.5.7 (2013-10-01)

0.5.6 (2013-09-26)

0.5.5 (2013-09-23)

  • porting to new RobotState API
  • more console output

0.5.4 (2013-08-14)

  • make headers and author definitions aligned the same way; white space fixes
  • Dependency for move_group_capabilities_base fixed.

0.5.2 (2013-07-15)

0.5.1 (2013-07-14)

0.5.0 (2013-07-12)

  • white space fixes (tabs are now spaces)
  • port to new base class for planning_interface (using planning contexts)

0.4.5 (2013-07-03)

  • Fixed for moveit_msgs/JointLimits.h no such file or directory

0.4.4 (2013-06-26)

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Repo Deps
abb_irb2400_moveit_config github-ros-industrial-abb
abb_irb6640_moveit_config github-ros-industrial-abb
irb_2400_moveit_config github-ros-industrial-abb
irb_6640_moveit_config github-ros-industrial-abb
cob_moveit_config github-ipa320-cob_manipulation
cob_pick_place_action github-ipa320-cob_manipulation
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
pr2_moveit_config github-ros-planning-moveit_pr2
hironx_moveit_config github-start-jsk-rtmros_hironx
nextage_moveit_config github-tork-a-rtmros_nextage
staubli_rx160_moveit_config github-ros-industrial-staubli
ur10_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
vs060_moveit_config github-start-jsk-denso
motoman_sia20d_moveit_config github-ros-industrial-motoman
nao_moveit_config github-ros-naoqi-nao_moveit_config
romeo_moveit_config github-ros-aldebaran-romeo_moveit_config
calvin_moveit_config github-uos-calvin_robot
crom_moveit_config github-RobotnikAutomation-crom_sim
dynamixel_pro_arm_moveit_config github-baxelrod-dynamixel_pro_arm_moveit_config
moveit_ros_manipulation github-ros-planning-moveit_ros
moveit_ros github-ros-planning-moveit_ros
moveit_ros_planning_interface github-ros-planning-moveit_ros
r2_fullbody_moveit_config github-DLu-nasa_r2_common
r2_moveit_config github-DLu-nasa_r2_common
pr2_ft_moveit_config github-kth-ros-pkg-pr2_ft_moveit_config
hrp2jsk_moveit_config github-start-jsk-rtmros_gazebo
hrp2jsknt_moveit_config github-start-jsk-rtmros_gazebo
hrp2jsknts_moveit_config github-start-jsk-rtmros_gazebo
hrp2w_moveit_config github-start-jsk-rtmros_gazebo
samplerobot_moveit_config github-start-jsk-rtmros_gazebo
staro_moveit_config github-start-jsk-rtmros_gazebo
sr_moveit_config github-shadow-robot-sr-ros-interface

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.9.18
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2020-10-12
Dev Status MAINTAINED
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Ferguson
  • Michael Görner
  • MoveIt! Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

0.9.18 (2020-01-24)

0.9.17 (2019-07-09)

0.9.16 (2019-06-29)

  • [maintanance] Resolve catkin lint issues (#1137)
  • [maintanance] Reduce log spamming: list capabilities only once (#1250)
  • Contributors: Ludovic Delval, Robert Haschke

0.9.15 (2018-10-29)

0.9.14 (2018-10-24)

0.9.13 (2018-10-24)

  • [fix] PlanningSceneMonitor lock #1033: Fix #868 (#1057)
  • [maintenance] various compiler warnings (#1038)
  • [maintenance] add minimum required pluginlib version (#927)
  • Contributors: Mikael Arguedas, Mohmmad Ayman, Robert Haschke, mike lautman

0.9.12 (2018-05-29)

  • disable waitForCurrentRobotState() for PlanService capability (#923), fixing (#868)
  • Add namespace capabilities to moveit_commander (#835)
  • [fix] MoveAction capability can drop cancel request if it is sent shortly after goal is sent (#756)
  • Contributors: Dave Coleman, Ian McMahon, Mikael Arguedas, Robert Haschke, Will Baker

0.9.11 (2017-12-25)

0.9.10 (2017-12-09)

  • [fix] always return true in MoveGroupPlanService callback #674
  • [improve] adding swp\'s to gitignore and removing redundant capabilites from capability_names.h (#704)
  • Contributors: Mike Lautman, Shingo Kitagawa

0.9.9 (2017-08-06)

0.9.8 (2017-06-21)

0.9.7 (2017-06-05)

0.9.6 (2017-04-12)

0.9.5 (2017-03-08)

  • [fix][moveit_ros_warehouse] gcc6 build error #423
  • [enhancement] Remove \"catch (...)\" instances, catch std::exception instead of std::runtime_error (#445)
  • Contributors: Bence Magyar, Dave Coleman

0.9.4 (2017-02-06)

  • [fix] race conditions when updating PlanningScene (#350)
  • [maintenance] clang-format upgraded to 3.8 (#367)
  • Contributors: Dave Coleman, Robert Haschke

0.9.3 (2016-11-16)

  • [maintenance] Updated package.xml maintainers and author emails #330
  • Contributors: Dave Coleman, Ian McMahon

0.9.2 (2016-11-05)

0.6.6 (2016-06-08)

  • added missing validity check iterator found with [configs.find()]{.title-ref} needs to be validated before use...
  • Removed trailing whitespace from entire repository
  • moved planner params services into existing capability QueryPlannerInterfaces
  • capability plugin MoveGroupPlannerParamsService to get/set planner params
  • Fixed bug(?) in move_group::MoveGroupKinematicsService::computeIK link name selection.
  • Contributors: Dave Coleman, Mihai Pomarlan, Robert Haschke

0.6.5 (2015-01-24)

  • update maintainers
  • Contributors: Michael Ferguson

0.6.4 (2014-12-20)

0.6.3 (2014-12-03)

0.6.2 (2014-10-31)

  • Merge pull request #522 from mikeferguson/indigo-devel add dependency on std_srvs (part of octomap clearing service)
  • Contributors: Ioan A Sucan, Michael Ferguson

0.6.1 (2014-10-31)

0.6.0 (2014-10-27)

  • Added move_group capability for clearing octomap.
  • Contributors: Dave Hershberger, Sachin Chitta

0.5.19 (2014-06-23)

  • Address [cppcheck: duplicateIf] error. The same condition was being checked twice, and the same action was being taken.
  • Contributors: Adolfo Rodriguez Tsouroukdissian

0.5.18 (2014-03-23)

0.5.17 (2014-03-22)

  • update maintainer e-mail
  • Contributors: Ioan Sucan

0.5.16 (2014-02-27)

  • empty state should be a diff state, otherwise attached objects are deleted
  • Contributors: sachinc

0.5.14 (2014-02-06)

0.5.13 (2014-02-06)

0.5.12 (2014-01-03)

0.5.11 (2014-01-03)

0.5.10 (2013-12-08)

0.5.9 (2013-12-03)

  • Re-ordered movegroup\'s initialization, so capabilities start after monitors.
  • correcting maintainer email
  • Added planning feedback to gui, refactored states tab

0.5.8 (2013-10-11)

0.5.7 (2013-10-01)

0.5.6 (2013-09-26)

0.5.5 (2013-09-23)

  • porting to new RobotState API
  • more console output

0.5.4 (2013-08-14)

  • make headers and author definitions aligned the same way; white space fixes
  • Dependency for move_group_capabilities_base fixed.

0.5.2 (2013-07-15)

0.5.1 (2013-07-14)

0.5.0 (2013-07-12)

  • white space fixes (tabs are now spaces)
  • port to new base class for planning_interface (using planning contexts)

0.4.5 (2013-07-03)

  • Fixed for moveit_msgs/JointLimits.h no such file or directory

0.4.4 (2013-06-26)

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
abb_irb2400_moveit_config github-ros-industrial-abb
abb_irb6640_moveit_config github-ros-industrial-abb
cob_collision_monitor github-ipa320-cob_manipulation
cob_moveit_bringup github-ipa320-cob_manipulation
crane_x7_moveit_config github-rt-net-crane_x7_ros
denso_robot_moveit_config github-DENSORobot-denso_robot_ros
fanuc_cr7ia_moveit_config github-ros-industrial-fanuc
fanuc_cr7ial_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200i_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib3l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m20ib25_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_m6ib6s_moveit_config github-ros-industrial-fanuc
fanuc_m6ib_moveit_config github-ros-industrial-fanuc
fanuc_r1000ia80f_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id7l_moveit_config github-ros-industrial-fanuc_experimental
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
fetch_moveit_config github-fetchrobotics-fetch_ros
fsrobo_r_moveit_config github-FUJISOFT-Robotics-fsrobo_r
khi_duaro_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007l_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs013n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs020n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs025n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs030n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs080n_moveit_config github-Kawasaki-Robotics-khi_robot
tra1_moveit_config github-tork-a-minas
moveit_ros_manipulation github-ros-planning-moveit
moveit_ros github-ros-planning-moveit
moveit_ros_planning_interface github-ros-planning-moveit
moveit_runtime github-ros-planning-moveit
pr2_moveit_config github-ros-planning-moveit_pr2
open_manipulator_moveit github-ROBOTIS-GIT-open_manipulator
open_manipulator_with_tb3_waffle_moveit github-ROBOTIS-GIT-open_manipulator_with_tb3
open_manipulator_with_tb3_waffle_pi_moveit github-ROBOTIS-GIT-open_manipulator_with_tb3
panda_moveit_config github-ros-planning-panda_moveit_config
pilz_trajectory_generation github-PilzDE-pilz_industrial_motion
prbt_moveit_config github-PilzDE-pilz_robots
hironx_moveit_config github-start-jsk-rtmros_hironx
nextage_moveit_config github-tork-a-rtmros_nextage
sciurus17_moveit_config github-rt-net-sciurus17_ros
seed_r7_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typef_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg2_arm_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg_arm_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg_moveit_config github-seed-solutions-seed_r7_ros_pkg
sr_moveit_hand_config github-shadow-robot-sr_interface
sr_box_ur10_moveit_config github-shadow-robot-sr_interface
sr_multi_moveit_config github-shadow-robot-sr_interface
sr_multi_moveit_test github-shadow-robot-sr_interface
sr_robot_commander github-shadow-robot-sr_interface
staubli_rx160_moveit_config github-ros-industrial-staubli
ur10_e_moveit_config github-ros-industrial-universal_robot
ur10_moveit_config github-ros-industrial-universal_robot
ur3_e_moveit_config github-ros-industrial-universal_robot
ur3_moveit_config github-ros-industrial-universal_robot
ur5_e_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
abb_irb1200_5_90_moveit_config github-ros-industrial-abb_experimental
abb_irb1200_7_70_moveit_config github-ros-industrial-abb_experimental
abb_irb120_moveit_config github-ros-industrial-abb_experimental
abb_irb120t_moveit_config github-ros-industrial-abb_experimental
abb_irb1600_6_12_moveit_config github-ros-industrial-abb_experimental
choreo_core github-yijiangh-Choreo
framefab_irb6600_workspace_moveit_config github-yijiangh-Choreo
choreo_kr150_2_workspace_moveit_config github-yijiangh-Choreo
choreo_kr5_arc_workspace_moveit_config github-yijiangh-Choreo
kr6_r900_mit_suction_gripper_moveit_config github-yijiangh-Choreo
kr6_r900_workspace_moveit_config github-yijiangh-Choreo
vs060_moveit_config github-start-jsk-denso
moveit_config_a0509 github-doosan-robotics-doosan-robot
moveit_config_a0912 github-doosan-robotics-doosan-robot
moveit_config_h2017 github-doosan-robotics-doosan-robot
moveit_config_h2515 github-doosan-robotics-doosan-robot
moveit_config_m0609 github-doosan-robotics-doosan-robot
moveit_config_m0617 github-doosan-robotics-doosan-robot
moveit_config_m1013 github-doosan-robotics-doosan-robot
moveit_config_m1509 github-doosan-robotics-doosan-robot
iiwa_moveit github-ipa-rwu-iiwa_stack
jog_arm github-UTNuclearRoboticsPublic-jog_arm
rv4fl_moveit_config github-tork-a-melfa_robot
rv7fl_moveit_config github-tork-a-melfa_robot
motoman_ma2010_moveit_config github-ros-industrial-motoman
motoman_ms210_moveit_config github-ros-industrial-motoman
motoman_sda10f_moveit_config github-ros-industrial-motoman
motoman_sia20d_moveit_config github-ros-industrial-motoman
motoman_csda10f_moveit_config github-ros-industrial-motoman_experimental
motoman_mpl80_moveit_config github-ros-industrial-motoman_experimental
motoman_sia5d_moveit_config github-ros-industrial-motoman_experimental
nao_moveit_config github-ros-naoqi-nao_moveit_config
pepper_moveit_config github-ros-naoqi-pepper_moveit_config
rb1_dual_ur3_moveit_config github-RobotnikAutomation-rb1_base_common
romeo_moveit_config github-ros-aldebaran-romeo_moveit_config
summit_xl_j2n6s200_moveit_config github-RobotnikAutomation-summit_xl_common
summit_xl_j2s6s200_moveit_config github-RobotnikAutomation-summit_xl_common
summit_xl_j2s6s300_moveit_config github-RobotnikAutomation-summit_xl_common
summit_xl_j2s7s300_moveit_config github-RobotnikAutomation-summit_xl_common
svenzva_moveit github-SvenzvaRobotics-svenzva_ros
turtlebot_arm_moveit_config github-turtlebot-turtlebot_arm
dual_xarm6_moveit_config github-xArm-Developer-xarm_ros
xarm5_vacuum_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm6_vacuum_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm7_vacuum_gripper_moveit_config github-xArm-Developer-xarm_ros
lite6_moveit_config github-xArm-Developer-xarm_ros
uf_robot_moveit_config github-xArm-Developer-xarm_ros
xarm5_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm5_moveit_config github-xArm-Developer-xarm_ros
xarm6_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm6_moveit_config github-xArm-Developer-xarm_ros
xarm7_gripper_moveit_config github-xArm-Developer-xarm_ros
xarm7_moveit_config github-xArm-Developer-xarm_ros

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.0.11
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-planning/moveit.git
VCS Type git
VCS Version melodic-devel
Last Updated 2022-09-13
Dev Status MAINTAINED
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

The move_group node for MoveIt

Additional Links

Maintainers

  • Michael Ferguson
  • Michael Görner
  • MoveIt! Release Team

Authors

  • Ioan Sucan
  • Sachin Chitta
README
No README found. See repository README.
CHANGELOG

Changelog for package moveit_ros_move_group

1.0.11 (2022-09-13)

1.0.10 (2022-03-06)

1.0.9 (2022-01-09)

  • Use moveit-resources@master (#2951)
    • Simplify launch files to use the test_environment.launch files from
    • Provide compatibility to the Noetic-style configuration of (multiple) planning pipelines Only a single pipeline can be used at a time, specified via the ~default_planning_pipeline parameter.
  • Contributors: Robert Haschke

1.0.8 (2021-05-23)

  • Fix missing isEmpty() check in compute_ik service (#2544)
  • Contributors: Michael G

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
abb_irb2400_moveit_config github-ros-industrial-abb
abb_irb6640_moveit_config github-ros-industrial-abb
cob_collision_monitor github-ipa320-cob_manipulation
cob_moveit_bringup github-ipa320-cob_manipulation
crane_x7_moveit_config github-rt-net-crane_x7_ros
denso_robot_moveit_config github-DENSORobot-denso_robot_ros
fanuc_cr7ia_moveit_config github-ros-industrial-fanuc
fanuc_cr7ial_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200i_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib3l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ib_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5h_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic5l_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200ic_moveit_config github-ros-industrial-fanuc
fanuc_m10ia_moveit_config github-ros-industrial-fanuc
fanuc_m16ib20_moveit_config github-ros-industrial-fanuc
fanuc_m20ia10l_moveit_config github-ros-industrial-fanuc
fanuc_m20ia_moveit_config github-ros-industrial-fanuc
fanuc_m20ib25_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2f_moveit_config github-ros-industrial-fanuc
fanuc_m430ia2p_moveit_config github-ros-industrial-fanuc
fanuc_m6ib6s_moveit_config github-ros-industrial-fanuc
fanuc_m6ib_moveit_config github-ros-industrial-fanuc
fanuc_r1000ia80f_moveit_config github-ros-industrial-fanuc
fanuc_lrmate200id7l_moveit_config github-ros-industrial-fanuc_experimental
fanuc_lrmate200id_moveit_config github-ros-industrial-fanuc_experimental
fetch_moveit_config github-fetchrobotics-fetch_ros
fsrobo_r_moveit_config github-FUJISOFT-Robotics-fsrobo_r
khi_duaro_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007l_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs007n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs013n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs020n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs025n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs030n_moveit_config github-Kawasaki-Robotics-khi_robot
khi_rs080n_moveit_config github-Kawasaki-Robotics-khi_robot
tra1_moveit_config github-tork-a-minas
pilz_industrial_motion_planner github-ros-planning-moveit
moveit_ros_manipulation github-ros-planning-moveit
moveit_ros github-ros-planning-moveit
moveit_ros_planning_interface github-ros-planning-moveit
moveit_runtime github-ros-planning-moveit
pr2_moveit_config github-ros-planning-moveit_pr2
open_manipulator_with_tb3_waffle_moveit github-ROBOTIS-GIT-open_manipulator_with_tb3
open_manipulator_with_tb3_waffle_pi_moveit github-ROBOTIS-GIT-open_manipulator_with_tb3
panda_moveit_config github-ros-planning-panda_moveit_config
pilz_trajectory_generation github-PilzDE-pilz_industrial_motion
prbt_moveit_config github-PilzDE-pilz_robots
pincher_arm_moveit_config github-fictionlab-pincher_arm
hironx_moveit_config github-start-jsk-rtmros_hironx
nextage_moveit_config github-tork-a-rtmros_nextage
sciurus17_moveit_config github-rt-net-sciurus17_ros
seed_r7_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typef_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg2_arm_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg_arm_moveit_config github-seed-solutions-seed_r7_ros_pkg
seed_r7_typeg_moveit_config github-seed-solutions-seed_r7_ros_pkg
sr_utilities github-shadow-robot-sr_core
sr_moveit_hand_config github-shadow-robot-sr_interface
sr_box_ur10_moveit_config github-shadow-robot-sr_interface
sr_multi_moveit_config github-shadow-robot-sr_interface
sr_multi_moveit_test github-shadow-robot-sr_interface
sr_robot_commander github-shadow-robot-sr_interface
staubli_rx160_moveit_config github-ros-industrial-staubli
tork_moveit_tutorial github-tork-a-tork_moveit_tutorial
ur10_moveit_config github-ros-industrial-universal_robot
ur10e_moveit_config github-ros-industrial-universal_robot
ur16e_moveit_config github-ros-industrial-universal_robot
ur3_moveit_config github-ros-industrial-universal_robot
ur3e_moveit_config github-ros-industrial-universal_robot
ur5_moveit_config github-ros-industrial-universal_robot
ur5e_moveit_config github-ros-industrial-universal_robot

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Recent questions tagged moveit_ros_move_group at Robotics Stack Exchange