-
Notifications
You must be signed in to change notification settings - Fork 27
/
mkdocs.yml
293 lines (274 loc) · 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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
# Copyright (c) 2016-2018 Martin Donath <[email protected]>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Project information
site_name: LattePanda Documentation
site_description: This is a tutorial site for LattePanda products
site_author: LattePanda Team
site_url: http://docs.lattepanda.com/
# Repository
repo_name: LattePandaTeam/Docs
repo_url: https://github.com/LattePandaTeam/Docs
edit_uri: blob/master/docs
# Copyright
copyright: 'Copyright © 2016 - 2024 LattePanda Team'
# Configuration
theme:
name: material
# Default values, taken from mkdocs_theme.yml
language: en
features:
# - announce.dismiss
- content.code.annotate
- content.code.copy
# - content.code.select
# - content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
# - navigation.prune
# - navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
palette:
- scheme: default
primary: brown
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: brown
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
#favicon: assets/images/favicon.ico
favicon: assets/logo/LattePandaLogo1.png
#icon:
#logo: material/library
logo: assets/logo/LattePandaLogo2.png
# Plugins
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
- glightbox
# Customization
extra:
social:
- icon: fontawesome/solid/globe
link: https://www.lattepanda.com
- icon: fontawesome/brands/github
link: https://github.com/LattePandaTeam
- icon: fontawesome/brands/twitter
link: https://twitter.com/LattePandaCN
- icon: fontawesome/brands/facebook
link: https://www.facebook.com/lattepandacn
- icon: fontawesome/brands/discord
link: https://discord.com/invite/UHgtJbf978
# alternate:
# - name: Chinese
# link: /zh/
# lang: zh
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.critic
# - markdown.extensions.meta
extra_css:
- stylesheets/extra.css
# Page tree
nav:
- Single Board Computer:
- Overview: index.md
- LattePanda V1:
- Power on Device: content/1st_edition/power_on.md
- Building Connectivity: content/1st_edition/wifi.md
- Optional Peripherals: content/1st_edition/peripheral.md
- Connect Touch Display: content/1st_edition/display.md
- Multiple OS Support: content/1st_edition/os.md
- Tools: content/1st_edition/tools.md
- Hardware Introduction: content/1st_edition/hardware_introduction.md
- Physical Programming: content/1st_edition/vs_programming.md
- Programming Reference: content/1st_edition/io_programming_reference.md
- Read Sensor Data via WebClient: content/1st_edition/webclient_demo.md
- Projects:
- 3D Printer Server: content/1st_edition/3d_printer_server.md
- Face Recognition: content/1st_edition/face_recog.md
- Setup Azure IoT Hub: content/1st_edition/setup_azure_iot_hub.md
- IoT Edge Data to Azure: content/1st_edition/data_to_cloud.md
- Node-RED: content/1st_edition/nodered.md
- Troubleshooting: content/1st_edition/troubleshooting.md
- LattePanda Alpha:
- Get Started: content/alpha_edition/get_started.md
- Powering: content/alpha_edition/powering.md
- Displays and Touch: content/alpha_edition/touch_and_display.md
- 4x OS Support: content/alpha_edition/os.md
- Drivers: content/alpha_edition/drivers_and_software.md
- Tools Recommended: content/alpha_edition/ide.md
- Hardware Inteface Introduction: content/alpha_edition/io_playability.md
- Mutiple Internet Connections: content/alpha_edition/connectivity.md
- Physical Programming /w Python: content/alpha_edition/python_arduino_bridge.md
- Read Sensor Data /w Python: content/alpha_edition/python_read_sensor.md
- FAQ: content/alpha_edition/faq.md
- LattePanda Delta:
- Get Started: content/delta_edition/get_started.md
- Powering: content/delta_edition/powering.md
- Displays and Touch: content/delta_edition/touch_and_display.md
- 2x OS Support: content/delta_edition/os.md
- Drivers: content/delta_edition/drivers_and_software.md
- Tools Recommended: content/delta_edition/ide.md
- Hardware Inteface Introduction: content/delta_edition/io_playability.md
- Mutiple Internet Connections: content/delta_edition/connectivity.md
- Physical Programming /w Python: content/delta_edition/python_arduino_bridge.md
- Read Sensor Data /w Python: content/delta_edition/python_read_sensor.md
- FAQ: content/delta_edition/faq.md
- LattePanda 3 Delta:
- Tech Specs: content/3rd_delta_edition/specification.md
- Initial Setup: content/3rd_delta_edition/get_started.md
- Power Options: content/3rd_delta_edition/powering.md
- Display Connections: content/3rd_delta_edition/touch_and_display.md
- Multiple OS Support:
- Compatible List: content/3rd_delta_edition/os.md
- Windows: content/3rd_delta_edition/Operating_Systems_Windows.md
- Ubuntu: content/3rd_delta_edition/Operating_Systems_Ubuntu.md
- Android: content/3rd_delta_edition/Operating_Systems_Android.md
- Mutiple Network: content/3rd_delta_edition/connectivity.md
- Hardware Inteface:
- Pinout and Layout: content/3rd_delta_edition/io_playability.md
- External Interface: content/3rd_delta_edition/io_playability_External.md
- Internal Interface: content/3rd_delta_edition/io_playability_Internal.md
- BIOS Setup:
- Entering BIOS Menu: content/3rd_delta_edition/bios.md
- Auto Power-on Function: content/3rd_delta_edition/bios_Auto_power_on.md
- USB-A Port Power Control Settings: content/3rd_delta_edition/bios_USB_Port_Power_Control.md
- Bootable Device Order: content/3rd_delta_edition/bios_bootable_device_order.md
- Deep Sleep EUP Support: content/3rd_delta_edition/bios_Deep_Sleep_EUP_Support.md
- Update BIOS Firmware: content/3rd_delta_edition/bios_update_BIOS_firmware.md
- Watchdog Timer: content/3rd_delta_edition/watchdog_timer.md
- Download Resources:
- OS Image: content/3rd_delta_edition/OS_image_download.md
- Driver: content/3rd_delta_edition/drivers_and_software.md
- BIOS Firmware: content/3rd_delta_edition/BIOS_Firmware_3_delta.md
- FAQ: content/3rd_delta_edition/faq.md
- LattePanda Sigma:
- Tech Specs: content/sigma_edition/Specification.md
- Initial Setup: content/sigma_edition/Getting_Started.md
- Power Options: content/sigma_edition/Powering_On.md
- Display Connections: content/sigma_edition/Display_Connection.md
- Multiple OS Support:
- Compatible List: content/sigma_edition/Operating_Systems.md
- Windows: content/sigma_edition/Operating_Systems_Windows.md
- Ubuntu: content/sigma_edition/Operating_Systems_Ubuntu.md
- Proxmox VE: content/sigma_edition/Operating_Systems_PVE.md
- Windows Server: content/sigma_edition/Operating_Systems_WinServer.md
- VMWare EXSi: content/sigma_edition/Operating_Systems_ESXi.md
- Mutiple Network: content/sigma_edition/Internet_Connection.md
- Hardware Inteface:
- Pinout and Layout: content/sigma_edition/IO_Playability.md
- External Interface: content/sigma_edition/IO_Playability_External.md
- Internal Interface: content/sigma_edition/IO_Playability_Internal.md
- BIOS Setup: content/sigma_edition/BIOS_Setup.md
- Download Resources:
- OS and Driver: content/sigma_edition/Driver.md
- BIOS Firmware: content/sigma_edition/BIOS_Firmware.md
- EC Firmware: content/sigma_edition/EC_Firmware.md
- FAQ: content/sigma_edition/FAQ.md
- Compute Module:
- LattePanda Mu:
- Introduction: content/mu_edition/introduction.md
- Tech Specs: content/mu_edition/specification.md
- Dev Status: content/mu_edition/dev_status.md
- Initial Setup: content/mu_edition/get_started.md
- Multiple OS Support:
- Compatible List: content/mu_edition/os_compatible.md
- Windows: content/mu_edition/os_windows.md
- Linux: content/mu_edition/os_linux.md
- BIOS Setup: content/mu_edition/bios_setup.md
- Download Resources: https://github.com/LattePandaTeam/LattePanda-Mu/tree/main/Softwares/Drivers
- Carriers:
- Lite Carrier: content/mu_edition/lite_carrier.md
- Full Eval Carrier: content/mu_edition/full_eval.md
- FAQ: content/mu_edition/faq.md
- Accessory:
# - Overview: index1.md
- Streaming Cable:
- Get Started: content/streaming_cable/get_started.md
- Setup Server Computer - Win: content/streaming_cable/set_up_windows_host.md
- Setup Client Computer RDP - Win: content/streaming_cable/set_up_win_rdp_client.md
- Setup Client Computer RDP - Mac: content/streaming_cable/set_up_mac_rdp_client.md
- Setup Client Computer RDP - Ubu: content/streaming_cable/set_up_ubu_rdp_client.md
- NoMachine - Config Client Computer: content/streaming_cable/set_up_nomachine_client.md
- FAQ: content/streaming_cable/faq.md
- IO Playability:
- Pinpong Library - Introduction: content/IO_Playability/InstallPinpongLibrary.md
- Pinpong Library - Blink: content/IO_Playability/Blink.md
- Pinpong Library - ADC: content/IO_Playability/ADC.md
- Pinpong Library - PWM Output: content/IO_Playability/PWM.md
- Pinpong Library - IRQ Interrupts: content/IO_Playability/IRQ.md
- Pinpong Library - I2C Communication: content/IO_Playability/I2C.md
- Arduino Control - Windows Volume: content/IO_Playability/ArduinoControlVolume.md
- Arduino Control - Windows Sleep or Wakeup: content/IO_Playability/ArduinoControlSleepWakeup.md
- Contact Us: contact_us.md