Binit Shah a120750850 | 11 months ago | |
---|---|---|
.. | ||
README.md | 1 year ago | |
aruco_marker_detection.md | 1 year ago | |
autodocking_nav_stack.md | 1 year ago | |
example_1.md | 1 year ago | |
example_2.md | 1 year ago | |
example_3.md | 1 year ago | |
example_4.md | 1 year ago | |
example_5.md | 1 year ago | |
example_6.md | 1 year ago | |
example_7.md | 1 year ago | |
example_8.md | 1 year ago | |
example_9.md | 1 year ago | |
example_10.md | 1 year ago | |
example_11.md | 1 year ago | |
example_12.md | 1 year ago | |
example_13.md | 1 year ago | |
follow_joint_trajectory.md | 1 year ago | |
gazebo_basics.md | 1 year ago | |
getting_started.md | 1 year ago | |
internal_state_of_stretch.md | 1 year ago | |
intro_to_nav.md | 1 year ago | |
moveit_basics.md | 1 year ago | |
navigation_stack.md | 1 year ago | |
perception.md | 1 year ago | |
respeaker_microphone_array.md | 11 months ago | |
rviz_basics.md | 1 year ago | |
teleoperating_stretch.md | 1 year ago |
Despite the name, ROS is not an operating system. ROS is a middleware framework that is a collection of transport protocols, development and debugging tools, and open-source packages. As a transport protocol, ROS enables distributed communication via messages between nodes. As a development and debugging toolkit, ROS provides build systems that allows for writing applications in a wide variety of languages (Python and C++ are used in this tutorial track), a launch system to manage the execution of mutiple nodes simultaneously, and command line tools to interact with the running system. Finally, as a popular ecosystem, there are many open-source ROS packages that allow users to quickly prototype with new sensors, actuators, planners, perception stacks, and more.
This tutorial track is for users looking to get familiar with programming Stretch robots via ROS. We recommend going through the tutorials in the following order:
Tutorial | Description | |
---|---|---|
1 | Getting Started | Setup instructions for ROS on Stretch. |
2 | Gazebo Basics | Use Stretch in a simulated environment with Gazebo. |
3 | Teleoperating Stretch | Control Stretch with a keyboard or xbox controller. |
4 | Internal State of Stretch | Monitor the joint states of Stretch. |
5 | RViz Basics | Visualize topics in Stretch. |
6 | Navigation Stack | Motion planning and control for the mobile base using Nav stack. |
7 | Follow Joint Trajectory Commands | Control joints using joint trajectory server. |
8 | Perception | Use the Realsense D435i camera to visualize the environment. |
9 | ArUco Marker Detection | Localize objects using ArUco markers. |
10 | ReSpeaker Microphone Array | Learn to use the ReSpeaker Microphone Array. |
11 | FUNMAP | Fast Unified Navigation, Manipulation and Planning. |
To help get you get started on your software development, here are examples of nodes to have the stretch perform simple tasks.
Tutorial | Description | |
---|---|---|
1 | Teleoperate Stretch with a Node | Use a python script that sends velocity commands. |
2 | Filter Laser Scans | Publish new scan ranges that are directly in front of Stretch. |
3 | Mobile Base Collision Avoidance | Stop Stretch from running into a wall. |
4 | Give Stretch a Balloon | Create a "balloon" marker that goes where ever Stretch goes. |
5 | Print Joint States | Print the joint states of Stretch. |
6 | Store Effort Values | Print, store, and plot the effort values of the Stretch robot. |
7 | Capture Image | Capture images from the RealSense camera data. |
8 | Voice to Text | Interpret speech and save transcript to a text file. |
9 | Voice Teleoperation of Base | Use speech to teleoperate the mobile base. |
10 | Tf2 Broadcaster and Listener | Create a tf2 broadcaster and listener. |
11 | PointCloud Transformation | Convert PointCloud2 data to a PointCloud and transform to a different frame. |
12 | ArUco Tag Locator | Actuate the head to locate a requested ArUco marker tag and return a transform. |
13 | 2D Navigation Goals | Send 2D navigation goals to the move_base ROS node. |