Add move_to_pose_server and iiwa_msgs package with service definition
- Implement move_to_pose_server for motion planning using MoveIt - Create iiwa_msgs package with MoveToPose service definition - Update iiwa.launch.py to include move_to_pose_server node - Modify joint_limits.yaml to add position limits for joints - Remove iiwa_voice package and related files
This commit is contained in:
@@ -15,6 +15,7 @@ find_package(moveit_core REQUIRED)
|
||||
find_package(moveit_ros_planning REQUIRED)
|
||||
find_package(moveit_msgs REQUIRED)
|
||||
find_package(geometry_msgs REQUIRED)
|
||||
find_package(iiwa_msgs REQUIRED)
|
||||
|
||||
add_executable(motion_planning_cpp src/motion_planning_cpp.cpp)
|
||||
target_include_directories(motion_planning_cpp PUBLIC include)
|
||||
@@ -37,11 +38,17 @@ install(TARGETS
|
||||
)
|
||||
|
||||
install(PROGRAMS
|
||||
# scripts/motion_planning_test.py
|
||||
scripts/motion_planning.py
|
||||
scripts/motion_planning_test.py
|
||||
# scripts/motion_planning.py
|
||||
DESTINATION lib/${PROJECT_NAME}
|
||||
RENAME motion_planning
|
||||
)
|
||||
|
||||
install(PROGRAMS
|
||||
scripts/move_to_pose_server.py
|
||||
DESTINATION lib/${PROJECT_NAME}
|
||||
RENAME move_to_pose_server
|
||||
)
|
||||
|
||||
|
||||
ament_package()
|
||||
|
||||
Reference in New Issue
Block a user