forked from hello-robot/stretch_tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs_rt.yml
More file actions
119 lines (112 loc) · 3.64 KB
/
mkdocs_rt.yml
File metadata and controls
119 lines (112 loc) · 3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
site_name: ros2
site_url: https://docs.hello-robot.com/stretch_tutorials
site_description: "Hello Robot Stretch Tutorials"
copyright: 'Copyright © 2022 Hello Robot Inc'
site_author: Hello Robot Inc
use_directory_urls: True
docs_dir: ros2
site_dir: ../site
theme:
name: material
#font: Arial
palette:
- scheme: default
primary: hello-robot-light
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: slate
primary: hello-robot-dark
toggle:
icon: material/lightbulb
name: Switch to light mode
logo: images/hello_robot_logo_light.png
favicon: images/hello_robot_favicon.png
features:
- navigation.instant
extra_css:
- ./extra.css
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.keys
- admonition
- pymdownx.tabbed:
alternate_style: true
plugins:
- same-dir
# - simple:
# merge_docs_dir: true
# include_extensions: [".css", ".png"]
# include_folders: ['../hello_helpers']
- mike:
# these fields are all optional; the defaults are as below...
version_selector: true # set to false to leave out the version selector
css_dir: css # the directory to put the version selector's CSS
javascript_dir: js # the directory to put the version selector's JS
canonical_version: null # the version for <link rel="canonical">; `null`
# uses the version specified via `mike deploy`
- search
- tags
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
docstring_style: numpy
rendering:
show_root_heading: true
show_source: false
members_order: source
heading_level: 3
show_if_no_docstring: true
extra:
version:
provider: mike
default: latest
social:
- icon: material/home
link: https://hello-robot.com
- icon: material/twitter
link: https://twitter.com/HelloRobotInc
- icon: material/github
link: https://github.com/hello-robot
- icon: material/linkedin
link: https://linkedin.com/company/hello-robot-inc
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: ./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
- Examples:
- Move Stretch with Twist Controller: ./example_1.md
- Trajectory Control: ./follow_joint_trajectory.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