-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
executable file
·76 lines (74 loc) · 2.62 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
site_name: 'BIPES'
nav:
- CoderDojo Mentor Resources: https://coderdojotc.github.io/bipes/
- BIPES Home: index.md
- Introduction:
- About BIPES: intro/01-intro.md
- Getting Started: intro/02-getting-started.md
- Working With BIPES: intro/03-working-with-bipes.md
- Raspberry Pi Pico:
- Introduction: pico/01-intro.md
- Basic Examples:
- Blink (Internal LED): pico/basics/blink.md
- Blink (External LEDs): pico/basics/blinkExternal.md
- Fade in and out: pico/basics/fadeInAndOut.md
- Button:
- Button Overview: pico/basics/button.md
- Polling: pico/basics/buttonPolling.md
- Interrupt: pico/basics/buttonInterrupt.md
- Potentiometer: pico/basics/potentiometer.md
- Displays:
- SSD1306 OLED: pico/displays/ssd1306.md
- NeoPixel: pico/displays/neopixel.md
- Sensors:
- Photo sensor: pico/sensors/photoSensor.md
- Ping sensor: pico/sensors/pingSensor.md
- Temperature and humidity sensor (DHT11): pico/sensors/dht11Sensor.md
- Inertial measurement sensor (MPU6050): pico/sensors/mpu6050Sensor.md
- Actuators:
- RC Servo: pico/actuators/servo.md
- Music: pico/music/tunes.md
- Raspberry Pi Pico W:
- Introduction: picoW/01-intro.md
- Connect to WiFi: picoW/connect.md
- Web Server: picoW/webServer.md
- Getting Data: picoW/httpGet.md
- TCP/IP Socket: picoW/starWars.md
- Maker PI RP2040:
- Introduction: makerpi/01-intro.md
- Basic Examples:
- Blink: makerpi/basics/blink.md
- Buttons, Interrupts, and Functions: makerpi/basics/buttons.md
- OptumBot:
- Build: makerpi/optumbot/build.md
- Motors: makerpi/optumbot/motors.md
- Follow the Hand: makerpi/optumbot/follow.md
- Reading from the UART: makerpi/optumbot/readUART.md
- Glossary: glossary.md
- Contributing: contributing.md
- Contacts: contacts.md
site_description: 'Resources for teaching BIPES to CoderDojo Twin Cities students. All content licensed Creative Commons ShareAlike Attribution Noncommercial'
site_author: 'Dan McCreary and Jim Tannenbaum'
repo_name: 'GitHub Repo'
repo_url: 'https://github.com/CoderDojoTC/bipes'
# CoderDojo Standards from here down
edit_uri: 'blob/master/docs'
theme:
# should be name: material
name: material
logo: img/coderdojo-logo.png
palette:
primary: '#642580'
accent: '#41BAC1'
custom_dir: 'theme'
include_sidebar: true
plugins:
- search
# - mermaid2 - takes too long to build - use a screen image for now
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight:
linenums: true
- pymdownx.details
- pymdownx.superfences