-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
executable file
·64 lines (61 loc) · 2.12 KB
/
mkdocs.yml
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
site_name: SailbotVT Documentation
site_url: https://localhost:8000
nav:
- Home: index.md
- Getting Started:
- Installing Docker: getting_started/installing_docker.md
- Setting Up the Development Container: getting_started/setting_up_dev_environment.md
- What Did You Just Install?: getting_started/what_did_you_just_install.md
- Adding Documentation: getting_started/adding_documentation.md
- Examples:
- Running the Simulation: examples/running_simulation.md
- Running a Custom Simulation: examples/running_a_custom_simulation.md
- Running Individual Nodes for Testing: examples/running_individual_nodes.md
- Resources:
- Flow of Information Between Groundstation and Autopilot Node: resources/diagram_of_groundstation_telemetry.md
- Diagram of How the Simulation Works and Communicates with ROS: resources/diagram_of_simulations.md
- Hardware:
- Wiring Color Scheme: hardware/wiring_color_scheme.md
- Squircuit: hardware/squircuit.md
- Nodes/Messages:
- Autopilot: nodes/autopilot.md
- Telemetry: nodes/telemetry.md
- Compass: nodes/compass.md
- GPS: nodes/gps.md
- MCU (Micro Controller Unit): nodes/mcu.md
- Microros: nodes/microros.md
- RC (Remote Controller): nodes/rc.md
- Sailbot Messages: nodes/sailbot_msgs.md
- Simulation: nodes/simulation.md
- Wind Sensor: nodes/wind_sensor.md
- What About the Other Nodes: nodes/what_about_the_other_nodes.md
- Misc:
- Installing µROS: misc/installing_uROS.md
- Potential Security Risks: misc/potential_security_risks.md
- Known Issues: misc/known_issues.md
- TODO: misc/todo.md
theme:
name: material
palette:
scheme: slate
features:
- content.code.copy
- content.code.select
# theme:
# name: readthedocs
markdown_extensions:
# - pymdownx.highlight:
# anchor_linenums: true
# line_spans: __span
# pygments_lang_class: true:
# - toc:
# toc_depth : "1-1"
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- admonition