No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.
Repository Summary
Checkout URI | https://github.com/peterdavidfagan/mujoco_ros.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-05-30 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
mujoco_ros_py | 0.0.0 |
README
mujoco_ros
MuJoCo simulation instances that are compatible with the ROS 2 ecosystem. For environment generation see mujoco_robot_environments; for example use cases of this package see ros2_robotics_research_toolkit.
Example Usage
import os
import time
import mujoco
import mujoco.viewer
import mujoco_ros
from mujoco_ros.franka_env import FrankaBase
model_filepath = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'models', 'base.mjb')
if __name__=="__main__":
m = mujoco.MjModel.from_binary_path(model_filepath)
d = mujoco.MjData(m)
env = FrankaBase(
m,
d,
command_interface="effort",
control_steps=5,
control_timer_freq=1e-2,
)
env.reset()
with mujoco.viewer.launch_passive(
model=m,
data=d,
show_left_ui=False,
show_right_ui=False,
) as viewer:
# run interactive viewer application
while viewer.is_running():
time.sleep(0.05)
env.is_syncing = True
viewer.sync()
env.is_syncing = False
ROS 2 Control Joint Trajectory Controller + MoveIt 2
Please note that the controller isn’t perfectly tuned for the simulation but this is provided as an example of the interactivity you can accomplish with this package.
CONTRIBUTING
No CONTRIBUTING.md found.
No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.