This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--------- Co-authored-by: Sebastian Castro <[email protected]>
- Loading branch information
Showing
36 changed files
with
1,958 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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 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
File renamed without changes.
This file contains 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,21 @@ | ||
cmake_minimum_required(VERSION 3.22) | ||
project(picknik_ur_multi_arm_config) | ||
|
||
find_package(ament_cmake REQUIRED) | ||
|
||
install( | ||
DIRECTORY | ||
config | ||
description | ||
objectives | ||
waypoints | ||
DESTINATION | ||
share/${PROJECT_NAME} | ||
) | ||
|
||
if(BUILD_TESTING) | ||
find_package(ament_lint_auto REQUIRED) | ||
ament_lint_auto_find_test_dependencies() | ||
endif() | ||
|
||
ament_package() |
This file contains 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,25 @@ | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
* Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. |
This file contains 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,5 @@ | ||
# picknik_ur_multi_arm_config | ||
|
||
A MoveIt Pro example configuration package for using multiple UR5e arms using mock hardware. | ||
|
||
For further documentation see: [MoveIt Pro Documentation](https://docs.picknik.ai/) |
This file contains 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,68 @@ | ||
# Placeholders for camera configuration. | ||
# Cameras are not a requirement for running MoveIt Pro, but this is provided as an | ||
# example for plugging in Realsense D415 camera topics to the application. | ||
|
||
- scene_camera: | ||
camera_name: "scene_camera" | ||
type: "sim" | ||
use: True | ||
serial_no: "0" | ||
device_type: "D415" | ||
framerate: 6 | ||
image_width: 640 | ||
image_height: 480 | ||
enable_pointcloud: False | ||
|
||
# information about the topics the camera publishes the raw image and info | ||
rgb_info: "/scene_camera/color/camera_info" | ||
rgb_image: "/scene_camera/color/image_raw" | ||
|
||
registered_rgb_depth_pair: | ||
depth_info: "/scene_camera/color/camera_info" | ||
depth_image: "/scene_camera/depth/image_rect_raw" | ||
registered_info: "/scene_camera/color/camera_info" | ||
registered_image: "/scene_camera/depth/image_rect_raw" | ||
|
||
- left_wrist_mounted_camera: | ||
camera_name: "left_wrist_mounted_camera" | ||
type: "sim" | ||
use: True | ||
serial_no: "0" | ||
device_type: "D415" | ||
framerate: 6 | ||
image_width: 640 | ||
image_height: 480 | ||
enable_pointcloud: True | ||
|
||
# information about the topics the camera publishes the raw image and info | ||
rgb_info: "/left_wrist_mounted_camera/color/camera_info" | ||
rgb_image: "/left_wrist_mounted_camera/color/image_raw" | ||
|
||
# By adding registered_rgb_depth_pair, This camera can be used for "Set Transform From Click" | ||
registered_rgb_depth_pair: | ||
depth_info: "/left_wrist_mounted_camera/depth/camera_info" | ||
depth_image: "/left_wrist_mounted_camera/depth/image_rect_raw" | ||
registered_info: "/left_wrist_mounted_camera/depth_registered/camera_info" | ||
registered_image: "/left_wrist_mounted_camera/depth_registered/image_rect" | ||
|
||
- right_wrist_mounted_camera: | ||
camera_name: "right_wrist_mounted_camera" | ||
type: "sim" | ||
use: True | ||
serial_no: "0" | ||
device_type: "D415" | ||
framerate: 6 | ||
image_width: 640 | ||
image_height: 480 | ||
enable_pointcloud: True | ||
|
||
# information about the topics the camera publishes the raw image and info | ||
rgb_info: "/right_wrist_mounted_camera/color/camera_info" | ||
rgb_image: "/right_wrist_mounted_camera/color/image_raw" | ||
|
||
# By adding registered_rgb_depth_pair, This camera can be used for "Set Transform From Click" | ||
registered_rgb_depth_pair: | ||
depth_info: "/right_wrist_mounted_camera/depth/camera_info" | ||
depth_image: "/right_wrist_mounted_camera/depth/image_rect_raw" | ||
registered_info: "/right_wrist_mounted_camera/depth_registered/camera_info" | ||
registered_image: "/right_wrist_mounted_camera/depth_registered/image_rect" |
Oops, something went wrong.