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.
Add Machine Tending Mock Hardware Configuration (#72)
- Loading branch information
1 parent
d71ab7a
commit 85ab61a
Showing
40 changed files
with
2,482 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,32 @@ | ||
# MoveIt Studio Workspace | ||
|
||
This is a sample user workspace for running MoveIt Studio with a generic Universal Robots arm. | ||
This is a sample user workspace for running MoveIt Studio with a generic Universal Robots (UR) arm. | ||
For more information, refer to the [MoveIt Studio Documentation](https://docs.picknik.ai/). | ||
|
||
Instructions for building your own MoveIt Studio configuration can be found [in the getting started guides.](https://docs.picknik.ai/en/stable/getting_started/getting_started.html) | ||
|
||
MoveIt Studio can be used with real robots and full simulators such as Gazebo and NVIDIA Isaac Sim. | ||
For testing purposes, you can also use the [ROS 2 Control Mock Components](https://control.ros.org/master/doc/ros2_control/hardware_interface/doc/mock_components_userdoc.html), which is what this repo is configured to use. | ||
|
||
--- | ||
## MoveIt Studio Configuration | ||
|
||
This package follows the recommended layout of a MoveIt Studio configuration package. | ||
Any configuration package or custom Behavior implementation can be included in the `src/` directory. | ||
Packages in `src/` will be compiled and sourced by MoveIt Studio at first launch. | ||
This workspace offers a reasonable starting point for those users looking to develop with MoveIt Studio using custom base and site configurations. | ||
For more information refer to the [online documentation](https://docs.picknik.ai/en/stable/). | ||
|
||
### Concepts | ||
## Universal Robots Configuration Packages | ||
|
||
MoveIt Studio supports two types of site configuration packages, a base config and site config. | ||
This workspace contains several MoveIt Studio configuration packages for UR arms that inherit from each other for different applications. | ||
|
||
[Base configs](src/picknik_ur_base_config/README.md) are used to configure all of the system components that remain unchanged when deploying the robot to a new location. | ||
```mermaid | ||
graph TB | ||
Base[picknik_ur_base_config] --> Site[picknik_ur_site_config] | ||
Base --> Mock[picknik_ur_mock_hw_config] | ||
Site --> Gazebo[picknik_ur_gazebo_config] | ||
Site --> Picknik[Other PickNik configs] | ||
``` | ||
|
||
[Site configs](src/picknik_ur_site_config/README.md) are used to override any parameters of the base configuration, or add additional features or constraints for a particular installation. | ||
Specifically: | ||
|
||
This workspace offers a reasonable starting point for those users looking to develop with MoveIt Studio using custom base and site configurations. | ||
For more information refer to the [online documentation](https://docs.picknik.ai/en/stable/). | ||
* `picknik_ur_base_config` contains common configuration for all UR arms, real or simulated. | ||
* `picknik_ur_mock_hw_config` provides overrides for a machine tending application simulated using mock components (no physics). | ||
* `picknik_ur_site_config` extends the base configuration with capabilities for robots with physics and perception. | ||
* `picknik_ur_gazebo_config` extends the site configuration with support for the Gazebo simulator. | ||
* Other hardware-specific configurations, such as the ones used on PickNik's UR arms, inherit from `picknik_ur_site_config`. |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# picknik_ur_base_config | ||
|
||
A MoveIt Studio base configuration for PickNik's UR5e simulation. | ||
A MoveIt Studio base configuration for PickNik's Universal Robots (UR) arms. | ||
|
||
For detailed documentation see: [MoveIt Studio 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
cmake_minimum_required(VERSION 3.22) | ||
project(picknik_ur_mock_hw_config) | ||
|
||
find_package(ament_cmake REQUIRED) | ||
|
||
install( | ||
DIRECTORY | ||
config | ||
description | ||
meshes | ||
objectives | ||
waypoints | ||
DESTINATION | ||
share/${PROJECT_NAME} | ||
) | ||
|
||
if(BUILD_TESTING) | ||
find_package(ament_lint_auto REQUIRED) | ||
ament_lint_auto_find_test_dependencies() | ||
endif() | ||
|
||
ament_package() |
Oops, something went wrong.