-
Notifications
You must be signed in to change notification settings - Fork 7
Improvements to the ROS2 Navigation menu, examples, and overview pages. #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 6 commits
5d102d1
b9488ab
0dfb17f
f6892d6
9cfbc2c
cffa482
230b014
a32e456
42af21f
716e8f6
10801d1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,38 +82,43 @@ extra: | |
|
||
|
||
nav: | ||
- Getting Started: ./getting_started.md | ||
- Motion Commands: ./jogging.md | ||
- Robot Drivers: ./robot_drivers.md | ||
# - Writing Nodes: ./writing_nodes.md # TODO | ||
- Navigation with Nav2: | ||
- Overview: ./README.md | ||
- Creating Packages & Nodes: ./writing_nodes.md | ||
- Simulation Tutorial: ./stretch_simulation.md | ||
- Teleoperation: ./teleoperating_stretch.md | ||
- RViz Tutorial: ./rviz_basics.md | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Rviz tutorial is missing how to visualize points clouds, imagery, lidar, etc. |
||
- Follow Joint Trajectory & Joint States: ./follow_joint_trajectory.md | ||
- Motion Commands via hello_utils: ./jogging.md | ||
Comment on lines
+93
to
+94
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's combine these two. |
||
- Robot Driver: ./robot_drivers.md | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needs to be fleshed out: https://github.com/hello-robot/stretch_tutorials/blob/feature/ros2-nav/ros2/robot_drivers.md There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can move the sensor stuff into |
||
- Twist Control: ./twist_control.md | ||
- Sensors Tutorial: ./sensors_tutorial.md | ||
- Nav Stack Tutorial: | ||
- Overview: ./navigation_overview.md | ||
- Nav2 Basics: ./navigation_stack.md | ||
- Nav2 Simple Commander: ./navigation_simple_commander.md | ||
# - Manipulation with MoveIt2: # TODO | ||
# - MoveIt Basics: ./moveit_basics.md # TODO | ||
# - MoveIt with RViz: ./moveit_rviz_demo.md # TODO | ||
# - MoveGroup C++ API: ./moveit_movegroup_demo.md # TODO | ||
- FUNMAP: https://github.com/hello-robot/stretch_ros2/tree/humble/stretch_funmap#overview | ||
# - Mapping: ./writing_nodes.md #TODO | ||
# - Navigation: ./writing_nodes.md #TODO | ||
# - Manipulation: ./writing_nodes.md # TODO | ||
- Perception: ./perception.md | ||
- Perception Tutorial: ./perception.md | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Merge this into rviz_basics.md |
||
- Deep Perception: ./deep_perception.md | ||
- ArUco Markers: ./aruco_marker_detection.md | ||
- Offloading Computation Tutorial: ./remote_compute.md | ||
- Autonomy Demos: | ||
- Hello World: ./demo_hello_world.md | ||
- Grasp Object: ./demo_grasp_object.md | ||
- Handover Object: ./demo_handover_object.md | ||
- Open Drawer: ./demo_open_drawer.md | ||
- Surface Cleaning: ./demo_surface_cleaning.md | ||
- FUNMAP Tutorial: ./funmap_tutorial.md | ||
- Examples: | ||
- Move Stretch with Twist Controller: ./example_1.md | ||
- Trajectory Control: ./follow_joint_trajectory.md | ||
- Voice Teleop: ./voice_teleop.md | ||
- Speech to Text: ./speech_to_text.md | ||
- Lidar Based Sensing: ./lidar_filtering.md | ||
- Custom RViz Marker: ./rviz_markers.md | ||
- Effort Value Plotting: ./joint_effort_plotting.md | ||
- Tf2 Listener and Broadcaster: ./tf2_transforms.md | ||
- Realsense Camera: ./realsense_camera.md | ||
- Align to ArUco Tutorial: ./align_to_aruco.md | ||
- ArUco Locator: ./aruco_locator.md | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's merge aruco_locator.md and aruco_marker_detection.md |
||
- Joint States: ./joint_states.md | ||
- Collision Avoidance: ./collision_avoidance.md | ||
- Obstacle Avoidance: ./obstacle_avoider.md | ||
- Collision Avoidance: ./example_3.md | ||
- Rviz Markers: ./example_4.md | ||
- Offloading Computation: ./remote_compute.md | ||
- Align to ArUco: ./ros2/align_to_aruco.md | ||
- ArUco Locator: ./example_12.md | ||
- Joints: | ||
- Joint States: ./example_5.md | ||
- Static Transformations: ./example_10.md | ||
- Joint Effort: ./example_6.md | ||
- Deep Perception: ./ros2/deep_perception.md | ||
- Filter Laser Scans: ./example_2.md | ||
- Realsense Camera: ./example_7.md | ||
- Microphones: ./example_8.md | ||
- Voice Teleop: ./example_9.md | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,7 +102,7 @@ Stretch comes preconfigured to identify ArUco markers. The ROS node that enables | |
|
||
## Computing Transformations | ||
|
||
If you have not already done so, now might be a good time to review the [tf listener](https://docs.hello-robot.com/latest/ros2/example_10/) tutorial. Go on, we can wait... | ||
If you have not already done so, now might be a good time to review the [tf listener](https://docs.hello-robot.com/latest/ros2/tf2_transforms/) tutorial. Go on, we can wait... | ||
|
||
Now that we know how to program stretch to return the transform between known reference frames, we can use this knowledge to compute the transform between the detected marker and the robot's base_link. From its current pose, for Stretch to align itself in front of the marker, we need to command it to reach there. But even before that, we need to program Stretch to know the goal pose. We define the goal pose to be 0.75 meter outward from the marker in the marker negative y-axis (Green axis). This is easier to visualize through the figure below. | ||
|
||
<p align="center"> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# FUNMAP Tutorial | ||
|
||
{% | ||
include-markdown "https://raw.githubusercontent.com/hello-robot/stretch_ros2/refs/heads/humble/stretch_funmap/README.md" | ||
rewrite-relative-urls=false | ||
%} |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
|
||
## Example 2 | ||
|
||
!!! note | ||
ROS 2 tutorials are still under active development. | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
|
||
## Example 4 | ||
|
||
!!! note | ||
ROS 2 tutorials are still under active development. | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This tutorial needs to be written: https://github.com/hello-robot/stretch_tutorials/blob/feature/ros2-nav/ros2/writing_nodes.md