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.
PickNik ur mujoco base config (#284)
Co-authored-by: Nathan Brooks <[email protected]> Co-authored-by: Sebastian Jahr <[email protected]> Co-authored-by: David Yackzan <[email protected]>
- Loading branch information
1 parent
d82234b
commit e76d2a3
Showing
73 changed files
with
841,469 additions
and
121 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
108 changes: 0 additions & 108 deletions
108
src/picknik_ur_base_config/description/environment.xacro
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
cmake_minimum_required(VERSION 3.22) | ||
project(picknik_ur_mujoco_config) | ||
|
||
find_package(ament_cmake REQUIRED) | ||
|
||
install( | ||
DIRECTORY | ||
config | ||
description | ||
launch | ||
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_mujoco_config | ||
|
||
A MoveIt Pro MuJoCo simulation for PickNik's Universal Robots (UR) arms. | ||
|
||
For detailed 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,87 @@ | ||
# | ||
# This contains information for a unique instance of a robot. | ||
# | ||
|
||
# Name of the package to specialize | ||
based_on_package: "picknik_ur_base_config" | ||
hardware: | ||
# Parameters used to configure the robot description through XACRO. | ||
# A URDF and SRDF are both required. | ||
# [Required] | ||
robot_description: | ||
urdf: | ||
package: "picknik_ur_mujoco_config" | ||
path: "description/picknik_ur.xacro" | ||
srdf: | ||
package: "picknik_ur_mujoco_config" | ||
path: "config/moveit/picknik_ur.srdf" | ||
urdf_params: | ||
- mujoco_model: "description/scene.xml" | ||
|
||
moveit_params: | ||
servo: | ||
package: "picknik_ur_mujoco_config" | ||
path: "config/moveit/ur_servo.yaml" | ||
joint_limits: | ||
package: "picknik_ur_mujoco_config" | ||
path: "config/moveit/joint_limits.yaml" | ||
servo_joint_limits: | ||
package: "picknik_ur_mujoco_config" | ||
path: "config/moveit/hard_joint_limits.yaml" | ||
|
||
# Configuration for loading behaviors and objectives. | ||
# [Required] | ||
objectives: | ||
# List of plugins for loading custom behaviors. | ||
# [Required] | ||
behavior_loader_plugins: | ||
# This plugin will load the core MoveIt Pro Behaviors. | ||
# Add additional plugin loaders as needed. | ||
core: | ||
- "moveit_studio::behaviors::CoreBehaviorsLoader" | ||
- "moveit_studio::behaviors::MTCCoreBehaviorsLoader" | ||
- "moveit_studio::behaviors::ServoBehaviorsLoader" | ||
- "moveit_studio::behaviors::VisionBehaviorsLoader" | ||
# Specify source folder for objectives | ||
# [Required] | ||
objective_library_paths: | ||
sim_objectives: | ||
package_name: "picknik_ur_mujoco_config" | ||
relative_path: "objectives" | ||
# Specify the location of the saved waypoints file. | ||
# [Required] | ||
waypoints_file: | ||
package_name: "picknik_ur_mujoco_config" | ||
relative_path: "waypoints/ur_waypoints.yaml" | ||
|
||
|
||
# Configuration for launching ros2_control processes. | ||
# [Required, if using ros2_control] | ||
ros2_control: | ||
config: | ||
package: "picknik_ur_mujoco_config" | ||
path: "config/control/picknik_ur.ros2_control.yaml" | ||
# MoveIt Pro will load and activate these controllers at start up to ensure they are available. | ||
# If not specified, it is up to the user to ensure the appropriate controllers are active and available | ||
# for running the application. | ||
# [Optional, default=[]] | ||
controllers_active_at_startup: | ||
- "force_torque_sensor_broadcaster" | ||
- "robotiq_gripper_controller" | ||
- "joint_state_broadcaster" | ||
- "servo_controller" | ||
# Load but do not start these controllers so they can be activated later if needed. | ||
controllers_inactive_at_startup: | ||
- "joint_trajectory_controller" | ||
# Any controllers here will not be spawned by MoveIt Pro. | ||
# [Optional, default=[]] | ||
controllers_not_managed: [] | ||
# Optionally configure remapping rules to let multiple controllers receive commands on the same topic. | ||
# [Optional, default=[]] | ||
controller_shared_topics: [] | ||
|
||
# Octomap manager configuration parameters | ||
octomap_manager: | ||
# Input point cloud topic name. The *output* point cloud topic published by | ||
# the Octomap manager node is defined in sensors_3d.yaml. | ||
input_point_cloud_topic: "/wrist_camera/points" |
Oops, something went wrong.