-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
92 lines (92 loc) · 3.17 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
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
site_name: HULKs Documentation
remote_branch: docs
theme:
name: material
logo: logo.svg
features:
- content.code.annotate
- content.tabs.link
- navigation.indexes
- navigation.tabs
- navigation.tracking
palette:
- media: "(prefers-color-scheme: light)"
primary: green
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: green
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
nav:
- Introduction: index.md
- Setup:
- Overview: setup/overview.md
- Main Setup & Webots: setup/main_setup.md
- NAO Image & SDK: setup/nao_image_and_sdk.md
- NAO Setup: setup/nao_setup.md
- Framework:
- Overview: framework/overview.md
- Directory Structure: framework/directory_structure.md
- Process Entrypoint: framework/process_entrypoint.md
- Runtime: framework/runtime.md
- Cyclers: framework/cyclers.md
- Nodes: framework/nodes.md
- Databases & Types: framework/databases_and_types.md
- Configuration: framework/configuration.md
- Communication: framework/communication.md
- Hardware Interface: framework/hardware_interface.md
- Thread Communication: framework/thread_communication.md
- Filtering: framework/filtering.md
- Macros: framework/macros.md
- Error Handling: framework/error_handling.md
- Logging: framework/logging.md
- Tooling:
- Overview: tooling/overview.md
- Aliveness: tooling/aliveness.md
- Pepsi: tooling/pepsi.md
- Twix: tooling/twix.md
- Depp: tooling/depp.md
- Fanta: tooling/fanta.md
- Machine Learning: tooling/machine-learning.md
- Behavior-Simulator & Sprite: tooling/sprite.md
- Debugging with GDB/LLDB: tooling/debugging.md
- Operating System:
- Overview: operating_system/overview.md
- Partitioning: operating_system/partitioning.md
- Home Directory: operating_system/home_directory.md
- Linux: operating_system/linux.md
- WiFi: operating_system/wifi.md
- HULA: operating_system/hula.md
- Robotics:
- Overview: robotics/overview.md
- Perception:
- Vision: robotics/perception/vision.md
- Audio: robotics/perception/audio.md
- Filters: robotics/perception/filters.md
- SPL Network: robotics/perception/spl_network.md
- Behavior: robotics/behavior/behavior.md
- Motion:
- Step planning: robotics/motion/step_planning.md
- Walking: robotics/motion/walking.md
- Kicking: robotics/motion/kicking.md
- Motion Files: robotics/motion/motion_files.md
- Workflow:
- Overview: workflow/overview.md
- Leadership: workflow/leadership.md
- Development: workflow/development.md
- Competition: workflow/competition.md
- GitHub Webhooks: workflow/github_webhooks.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- pymdownx.tilde