-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
186 lines (169 loc) · 7.33 KB
/
mkdocs.yml
File metadata and controls
186 lines (169 loc) · 7.33 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
site_name: "Formula Trinity Autonomous Wiki"
site_url: "https://docs.formulatrinity.ie"
theme:
name: material
logo: media/FT_Logo.png
favicon: media/FT_Logo.png
icon:
logo: null # <- prevent book icon fallback
features:
- navigation.top
- navigation.expand
- navigation.sections
- navigation.footer
- content.code.copy
- content.code.annotate
- search.suggest
- search.highlight
- search.share
- toc.follow
- content.status
# custom_dir: docs/overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: red # pick your color
accent: red
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: red
accent: red
toggle:
icon: material/weather-sunny
name: Switch to light mode
markdown_extensions:
- admonition
- attr_list
- footnotes
- pymdownx.details
- pymdownx.superfences
- md_in_html
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_javascript:
- javascripts/mathjax.js
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- glightbox
- git-revision-date-localized:
enable_creation_date: true
fallback_to_build_date: true
type: custom # timeago | date | datetime | iso_date | iso_datetime | custom
custom_format: "%b %d, %Y" # e.g. "Oct 17, 2025"
timezone: Europe/Dublin
locale: en
nav: # This is the structure of the sidebar
- Home: index.md
- Hall of Fame: hall_of_fame.md
- Departments:
- Perception:
- Overview: departments/perception/overview.md
- Theory: departments/perception/theory.md
- LiDAR Only Solution: departments/perception/clustering_algo.md
- Calibration: departments/perception/calibration.md
- Debugging: departments/perception/debugging.md
- State Estimation:
- Overview: departments/state_estimation/overview.md
- Theory: departments/state_estimation/theory.md
- Path Planning:
- Overview: departments/path_planning/overview.md
- Theory: departments/path_planning/theory.md
- Control:
- Overview: departments/control/overview.md
- Theory: departments/control/theory.md
- Pure Pursuit: departments/control/pure_pursuit.md
- Pure Pursuit Callback: departments/control/pure_pur_callback.md
- Velocity Control: departments/control/velocity_control.md
- PID Tuning: departments/control/pid_tuning.md
- Hardware:
- Overview: departments/hardware/overview.md
- Electronics:
- Electronics Overview: departments/hardware/electronics/electronics_overview.md
- Code:
- Libraries:
- FTSerial: departments/hardware/electronics/code/libraries/ftserial.md
- Steering: departments/hardware/electronics/code/steering.md
- Wokwi: departments/hardware/electronics/code/wokwi.md
- Jetson Nano: departments/hardware/electronics/jetson_nano.md
- Microcontrollers: departments/hardware/electronics/microcontrollers.md
- Power Systems:
- Wiring Loom: departments/hardware/electronics/power_systems/wiring_loom.md
- Switchbox: departments/hardware/electronics/power_systems/switchbox.md
- LiPo: departments/hardware/electronics/power_systems/lipo.md
- Using High Power Electrical Systems: departments/hardware/electronics/power_systems/wirefire.md
- Mechanical:
- Mechanical Overview: departments/hardware/mechanical/mechanical_overview.md
- 3d Printing Reference: departments/hardware/mechanical/3dprinting.md
- Competition Mount:
- Mount overview: departments/hardware/mechanical/mount/mount_overview.md
- Lunchy: departments/hardware/mechanical/mount/lunchy.md
- Modem: departments/hardware/mechanical/mount/modem.md
- Rigby: departments/hardware/mechanical/rigby.md
- ADS:
- Systems Integration:
- Overview: ads/systems_integration/overview.md
- Computer Placement: ads/systems_integration/computer_placement.md
- Zed2i Placement: ads/systems_integration/zed2i_placement.md
- LiDar Placement: ads/systems_integration/lidar_placement.md
- AI/ADS Interface:
- Overview: ads/aiads_interface/overview.md
- Raspberry Pi Setup: ads/aiads_interface/raspberrypi.md
- Actuation Control:
- Overview: ads/actuation_control/overview.md
- Resources:
- General Competition Info: resources/competition.md
- General Git Info: resources/git.md
- General SSH Resources: resources/ssh.md
- General ROS2 Resources: resources/ros2.md
- General Python Resources: resources/python.md
- General C++ Resources: resources/cpp.md
- General Linux Resources: resources/linux.md
- The ROS2 Visualization Stack RVIZ2: resources/rviz2.md
- The ROS2 Transforms Library (TF2): resources/tf2.md
- ROS2 Python to C++ translator: resources/ros2-translator.html
- EUFS Sim: resources/eufs_sim.md
- IPG CarMaker: resources/ipg_carmaker.md
- Ros Can: resources/ros_can.md
- Why the F*ck is The Car Not Moving: resources/why_is_car_not_moving.md
- Other Relevant Sites: resources/relevant.md
- Tutorials:
- Getting Started Guide: tutorials/Getting_started.md
- Cutting Bags Down to Size: tutorials/cutting_bags.md
- Competition Launch Scripts; Configuration, Setup and Running them: tutorials/comp_launch_scripts.md
- Reducing Boot Time: tutorials/reducing_boot_time.md
- Running Code on Linux that are not Ubuntu: tutorials/run_code_not_ubuntu.md
- Path Planning Tutorial (Getting Started on ROS) (Kind of Deprecated): tutorials/path_planning_tutorial.md
- How to RDP into the FTA PC: tutorials/rdp_to_fta_pc.md
- How to SSH into the FTA Pc: tutorials/ssh_to_fta_pc.md
- Python to C++: tutorials/python_to_cpp.md
- LiDAR Setup: tutorials/lidar_setup.md
- YOLO Training: tutorials/yolo_training.md
- Webpage Setup: tutorials/webpage_setup.md
- Equipment:
- ADS-DV Vehicle: equipment/ads_dv.md
- Jetson Orin: equipment/jetson_orin.md
- Velodyne LiDAR: equipment/velodyne.md
- ZED2 Camera: equipment/zed2.md
- Jetson Nano: equipment/jetson_nano.md
- Livox Avia: equipment/livox_avia.md
- Software Stack:
- Time Synchronization: Software Stack/Time_sync.md
- Guidelines:
- Coding: guidelines/coding.md
- Documentation: guidelines/documentation.md
- Development Best Practices: guidelines/development_best_practices.md
- Troubleshooting: guidelines/troubleshooting.md
- Miscellaneous:
- Feedback: miscellaneous/feedback.md
extra_css:
- overrides/styles.css