quadruped_ros2_control/descriptions/xiaomi/cyberdog_description/README.md

45 lines
1.1 KiB
Markdown
Raw Normal View History

2024-09-20 17:56:00 +08:00
# Xiaomi Cyberdog Description
2024-10-10 22:44:32 +08:00
This package contains the URDF description of the Xiaomi Cyberdog robot
from [Cyberdog Simulator](https://github.com/MiRoboticsLab/cyberdog_simulator.git).
![cyberdog](../../../.images/cyberdog.png)
2024-09-20 17:56:00 +08:00
## Build
2024-10-10 22:44:32 +08:00
2024-09-20 17:56:00 +08:00
```bash
cd ~/ros2_ws
2024-10-10 22:44:32 +08:00
colcon build --packages-up-to cyberdog_description --symlink-install
2024-09-20 17:56:00 +08:00
```
## Visualize the robot
2024-10-10 22:44:32 +08:00
2024-09-20 17:56:00 +08:00
To visualize and check the configuration of the robot in rviz, simply launch:
```bash
source ~/ros2_ws/install/setup.bash
2024-10-10 22:44:32 +08:00
ros2 launch cyberdog_description visualize.launch.py
2024-10-01 13:48:49 +08:00
```
## Launch ROS2 Control
2024-10-10 22:44:32 +08:00
### Mujoco Simulator
2024-10-01 13:48:49 +08:00
* Unitree Guide Controller
```bash
source ~/ros2_ws/install/setup.bash
ros2 launch unitree_guide_controller mujoco.launch.py pkg_description:=cyberdog_description
2024-10-01 13:48:49 +08:00
```
* OCS2 Quadruped Controller
```bash
source ~/ros2_ws/install/setup.bash
2024-10-18 11:47:31 +08:00
ros2 launch ocs2_quadruped_controller mujoco.launch.py pkg_description:=cyberdog_description
2024-10-01 13:48:49 +08:00
```
2024-10-10 22:44:32 +08:00
### Gazebo Simulator
* Unitree Guide Controller
```bash
source ~/ros2_ws/install/setup.bash
ros2 launch cyberdog_description gazebo.launch.py
2024-10-10 22:44:32 +08:00
```