📝 update READMEs

This commit is contained in:
Ilya Uraev 2022-01-19 17:22:13 +04:00
parent 3951b0b5ea
commit c9371b0a0b
4 changed files with 106 additions and 59 deletions

42
rasmt_support/README.md Normal file
View file

@ -0,0 +1,42 @@
# Robossembler package for description of robot2
This package consists of files describing the AQUA model of the robot, the entire scene and the gripper device. It also contains startup files for launching robot controllers and simulations in gazebo.
```
.
├── CMakeLists.txt
├── config
│ ├── rasmt_ros2_controllers.yaml # File describing the robot controllers
│ └── rasmt.rviz
├── launch
│ ├── rasmt_control.launch.py # Launch file for running robot controlles
│ ├── rasmt_gazebo.launch.py # File for running gazebo simulation
│ └── rviz.launch.py # File for running RViz visualisation
├── meshes
│ ├── collision
│ │ ├── Base_Link.STL
│ │ ├── cube5x.STL
│ │ ├── Dock_Link.STL
│ │ ├── Fork_1.STL
│ │ ├── Fork_2.STL
│ │ ├── Fork_3.STL
│ │ ├── Grip_Body.STL
│ │ ├── Grip_L.STL
│ │ ├── Grip_R.STL
│ │ ├── Link_1.STL
│ │ └── Link_2.STL
│ └── visual
├── package.xml
├── README.md
└── urdf
├── cube5x.sdf # The cube inside which the robot works
├── rasmt.xacro # Main Robot scene description file
├── robot # Single robot description files
│ ├── rasmt_single_control.xacro
│ ├── rasmt_single_gazebo.xacro
│ └── rasmt_single_macro.xacro
└── tools # Robot tool description files
├── rasmt_hand_control.xacro
├── rasmt_hand_gazebo.xacro
└── rasmt_hand_macro.xacro
```