Binit Shah a2871b1fa4 | 9 months ago | |
---|---|---|
.. | ||
config | 1 year ago | |
launch | 1 year ago | |
nodes | 1 year ago | |
scripts | 3 years ago | |
urdf | 1 year ago | |
worlds | 3 years ago | |
CMakeLists.txt | 3 years ago | |
LICENSE.md | 9 months ago | |
README.md | 10 months ago | |
package.xml | 9 months ago |
stretch_gazebo is an implementation of simulating a Stretch robot with Gazebo simulator.
The urdf directory contains a xacro file that extends the capabilities of the original xacro files living in stretch_description package to include Gazebo functionality.
The config directory contains rviz files and ros_control controller configuration files for various parts of the robot including:
The launch directory includes two files:
The script directory contains a single python file that publishes ground truth odometry of the robot from Gazebo.
# Terminal 1:
roslaunch stretch_gazebo gazebo.launch rviz:=true
# Terminal 2:
roslaunch stretch_core teleop_twist.launch twist_topic:=/stretch_diff_drive_controller/cmd_vel linear:=1.0 angular:=2.0 teleop_type:=keyboard # or use teleop_type:=joystick if you have a controller
This will launch an Rviz instance that visualizes the sensors and an empty world in Gazebo with Stretch and load all the controllers. Although, the base will be able to move with the joystick commands, the joystick won't give joint commands to arm, head or gripper. To move these joints see the next section about Running Gazebo with MoveIt! and Stretch.
keyboard_teleop_gazebo : node that provides a keyboard interface to control the robot's joints within the gazebo simulation.
# Terminal 1:
roslaunch stretch_gazebo gazebo.launch rviz:=true
# Terminal 2:
rosrun stretch_gazebo keyboard_teleop_gazebo
# Terminal 1:
roslaunch stretch_gazebo gazebo.launch dex_wrist:=true rviz:=true
The simulated Stretch differs from the robot in the following ways.
Sensor | Gazebo | Stretch | Notes |
---|---|---|---|
LIDAR | ✔️ | ✔️ | |
Base IMU | ✔️ | ✔️ | |
Wrist Accelerometer | ✔️ | ✔️ | Modeled as an IMU |
Realsense D435i | ✔️ | ✔️ | |
Respeaker (Mic Array) | ❌ | ✔️ | |
Cliff Sensors | ❌ | ✔️ |
Notes: Although there is no microphone in Gazebo, Respeaker can be represented with a ROS node that accesses compputer's microphone. Cliff sensors are not modeled but they can also be represented as 1D LIDAR sensors. See LIDAR definition in stretch_gazebo.urdf.xacro file.
Actuators are defined as ros_control transmission objects in Gazebo using PositionJointInterfaces. MoveIt is configured to use three different action servers to control the body parts of stretch in Gazebo through the srdf file in stretch_moveit_config package. See the section above about MoveIt for details. Please note that this behavior is different than stretch_core as it works with a single Python interface to control all the joints.
We provide stretch_calibration to generate a calibrated URDF that is unique to each robot. The calibrated URDF is generated from the nominal description of Stretch, the xacro files that live in stretch_description. The simulated Stretch is generated from the gazebo xacro description in the urdf directory and is not calibrated.
For license information, please see the LICENSE files.