-
Notifications
You must be signed in to change notification settings - Fork 259
Port planning scene ros api tutorial #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
MarqRazz
merged 11 commits into
moveit:main
from
vatanaksoytezer:feauture/planning_scene_ros_api_tutorial
Apr 21, 2021
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fc0bff5
Fix headers
vatanaksoytezer b7cf3c2
Port source and launch files of planning scene ROS API
97cd9fb
Fix prompts and add xterm to launch
614ddc3
Update documentation
61b2981
Add info about xterm
ba3d709
Remove debugging info and add todo
vatanaksoytezer 87cdf89
Update doc/planning_scene_ros_api/planning_scene_ros_api_tutorial.rst
59108bb
Remove unnecessary note.
vatanaksoytezer 8bf45de
Merge branch 'main' into feauture/planning_scene_ros_api_tutorial
vatanaksoytezer 734fad5
Merge branch 'main' into feauture/planning_scene_ros_api_tutorial
JafarAbdi 7c4f109
Fix prompts
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,13 @@ | ||
| add_executable(planning_scene_ros_api_tutorial | ||
| src/planning_scene_ros_api_tutorial.cpp) | ||
| target_link_libraries(planning_scene_ros_api_tutorial | ||
| ${catkin_LIBRARIES} ${Boost_LIBRARIES}) | ||
| install(TARGETS planning_scene_ros_api_tutorial DESTINATION | ||
| ${CATKIN_PACKAGE_BIN_DESTINATION}) | ||
| target_include_directories(planning_scene_ros_api_tutorial | ||
| PUBLIC include) | ||
| ament_target_dependencies(planning_scene_ros_api_tutorial | ||
| ${THIS_PACKAGE_INCLUDE_DEPENDS} Boost) | ||
|
|
||
| install(DIRECTORY launch DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
| install(TARGETS planning_scene_ros_api_tutorial | ||
| DESTINATION lib/${PROJECT_NAME} | ||
| ) | ||
| install(DIRECTORY launch | ||
| DESTINATION share/${PROJECT_NAME} | ||
| ) |
6 changes: 0 additions & 6 deletions
6
doc/planning_scene_ros_api/launch/planning_scene_ros_api_tutorial.launch
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
doc/planning_scene_ros_api/launch/planning_scene_ros_api_tutorial.launch.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| import os | ||
| import yaml | ||
| from launch import LaunchDescription | ||
| from launch_ros.actions import Node | ||
| from ament_index_python.packages import get_package_share_directory | ||
|
|
||
|
|
||
| def generate_launch_description(): | ||
|
|
||
| # Planning Scene ROS API Tutorial executable | ||
| planning_scene_ros_api_tutorial = Node( | ||
| name="planning_scene_ros_api_tutorial", | ||
| package="moveit2_tutorials", | ||
| executable="planning_scene_ros_api_tutorial", | ||
| prefix="xterm -e", | ||
| output="screen", | ||
| ) | ||
|
|
||
| return LaunchDescription([planning_scene_ros_api_tutorial]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.