├── .clang-format ├── .github ├── dependabot.yml ├── mergify.yml └── workflows │ ├── ci-format.yml │ ├── humble-binary-main.yml │ ├── humble-binary-testing.yml │ ├── humble-semi-binary-main.yml │ ├── humble-semi-binary-testing.yml │ ├── jazzy-binary-main.yml │ ├── jazzy-binary-testing.yml │ ├── jazzy-semi-binary-main.yml │ ├── jazzy-semi-binary-testing.yml │ ├── kilted-binary-main.yml │ ├── kilted-binary-testing.yml │ ├── kilted-semi-binary-main.yml │ ├── kilted-semi-binary-testing.yml │ ├── reusable_ici.yml │ ├── rolling-binary-main.yml │ ├── rolling-binary-testing.yml │ ├── rolling-semi-binary-main.yml │ ├── rolling-semi-binary-testing.yml │ └── sphinx_build.yml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ci_status.md ├── doc_requirements.txt ├── ur_simulation_gz.humble.repos ├── ur_simulation_gz.jazzy.repos ├── ur_simulation_gz.kilted.repos ├── ur_simulation_gz.rolling.repos └── ur_simulation_gz ├── CHANGELOG.rst ├── CMakeLists.txt ├── config └── ur_controllers.yaml ├── doc ├── conf.py ├── index.rst ├── installation.rst ├── migration │ └── jazzy.rst ├── migration_notes.rst ├── resources │ ├── gz_simulation_custom_world.png │ ├── gz_simulation_moveit.png │ ├── test_world.sdf │ └── ur_controllers_test.yaml └── usage.rst ├── launch ├── ur_sim_control.launch.py └── ur_sim_moveit.launch.py ├── package.xml ├── test ├── test_common.py ├── test_description.py └── test_gz.py └── urdf ├── ur_gz.ros2_control.xacro └── ur_gz.urdf.xacro /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/workflows/ci-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/ci-format.yml -------------------------------------------------------------------------------- /.github/workflows/humble-binary-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/humble-binary-main.yml -------------------------------------------------------------------------------- /.github/workflows/humble-binary-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/humble-binary-testing.yml -------------------------------------------------------------------------------- /.github/workflows/humble-semi-binary-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/humble-semi-binary-main.yml -------------------------------------------------------------------------------- /.github/workflows/humble-semi-binary-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/humble-semi-binary-testing.yml -------------------------------------------------------------------------------- /.github/workflows/jazzy-binary-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/jazzy-binary-main.yml -------------------------------------------------------------------------------- /.github/workflows/jazzy-binary-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/jazzy-binary-testing.yml -------------------------------------------------------------------------------- /.github/workflows/jazzy-semi-binary-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/jazzy-semi-binary-main.yml -------------------------------------------------------------------------------- /.github/workflows/jazzy-semi-binary-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/jazzy-semi-binary-testing.yml -------------------------------------------------------------------------------- /.github/workflows/kilted-binary-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/kilted-binary-main.yml -------------------------------------------------------------------------------- /.github/workflows/kilted-binary-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/kilted-binary-testing.yml -------------------------------------------------------------------------------- /.github/workflows/kilted-semi-binary-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/kilted-semi-binary-main.yml -------------------------------------------------------------------------------- /.github/workflows/kilted-semi-binary-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/kilted-semi-binary-testing.yml -------------------------------------------------------------------------------- /.github/workflows/reusable_ici.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/reusable_ici.yml -------------------------------------------------------------------------------- /.github/workflows/rolling-binary-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/rolling-binary-main.yml -------------------------------------------------------------------------------- /.github/workflows/rolling-binary-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/rolling-binary-testing.yml -------------------------------------------------------------------------------- /.github/workflows/rolling-semi-binary-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/rolling-semi-binary-main.yml -------------------------------------------------------------------------------- /.github/workflows/rolling-semi-binary-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/rolling-semi-binary-testing.yml -------------------------------------------------------------------------------- /.github/workflows/sphinx_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.github/workflows/sphinx_build.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/README.md -------------------------------------------------------------------------------- /ci_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ci_status.md -------------------------------------------------------------------------------- /doc_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/doc_requirements.txt -------------------------------------------------------------------------------- /ur_simulation_gz.humble.repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz.humble.repos -------------------------------------------------------------------------------- /ur_simulation_gz.jazzy.repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz.jazzy.repos -------------------------------------------------------------------------------- /ur_simulation_gz.kilted.repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz.kilted.repos -------------------------------------------------------------------------------- /ur_simulation_gz.rolling.repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz.rolling.repos -------------------------------------------------------------------------------- /ur_simulation_gz/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/CHANGELOG.rst -------------------------------------------------------------------------------- /ur_simulation_gz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/CMakeLists.txt -------------------------------------------------------------------------------- /ur_simulation_gz/config/ur_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/config/ur_controllers.yaml -------------------------------------------------------------------------------- /ur_simulation_gz/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/conf.py -------------------------------------------------------------------------------- /ur_simulation_gz/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/index.rst -------------------------------------------------------------------------------- /ur_simulation_gz/doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/installation.rst -------------------------------------------------------------------------------- /ur_simulation_gz/doc/migration/jazzy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/migration/jazzy.rst -------------------------------------------------------------------------------- /ur_simulation_gz/doc/migration_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/migration_notes.rst -------------------------------------------------------------------------------- /ur_simulation_gz/doc/resources/gz_simulation_custom_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/resources/gz_simulation_custom_world.png -------------------------------------------------------------------------------- /ur_simulation_gz/doc/resources/gz_simulation_moveit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/resources/gz_simulation_moveit.png -------------------------------------------------------------------------------- /ur_simulation_gz/doc/resources/test_world.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/resources/test_world.sdf -------------------------------------------------------------------------------- /ur_simulation_gz/doc/resources/ur_controllers_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/resources/ur_controllers_test.yaml -------------------------------------------------------------------------------- /ur_simulation_gz/doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/doc/usage.rst -------------------------------------------------------------------------------- /ur_simulation_gz/launch/ur_sim_control.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/launch/ur_sim_control.launch.py -------------------------------------------------------------------------------- /ur_simulation_gz/launch/ur_sim_moveit.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/launch/ur_sim_moveit.launch.py -------------------------------------------------------------------------------- /ur_simulation_gz/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/package.xml -------------------------------------------------------------------------------- /ur_simulation_gz/test/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/test/test_common.py -------------------------------------------------------------------------------- /ur_simulation_gz/test/test_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/test/test_description.py -------------------------------------------------------------------------------- /ur_simulation_gz/test/test_gz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/test/test_gz.py -------------------------------------------------------------------------------- /ur_simulation_gz/urdf/ur_gz.ros2_control.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/urdf/ur_gz.ros2_control.xacro -------------------------------------------------------------------------------- /ur_simulation_gz/urdf/ur_gz.urdf.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalRobots/Universal_Robots_ROS2_GZ_Simulation/HEAD/ur_simulation_gz/urdf/ur_gz.urdf.xacro --------------------------------------------------------------------------------