Skip to content

Commit 4ca8d35

Browse files
committed
Improve indexes of modules
1 parent a3edb20 commit 4ca8d35

6 files changed

Lines changed: 67 additions & 8 deletions

File tree

01_first_examples/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Module 1 - First Examples
2+
3+
The goal of the first module is to learn to create basic circuits, modify and load code onto the microcontroller.
4+
5+
## Projects
6+
7+
- [Blink (Built-in LED)](./01_01_blink.md)
8+
- [Blink (External LED)](./01_02_blink_external_led.md)
9+
- [Button and LED](./01_03_button_and_led.md)
10+
- [Button and LED On/Off Switch](./01_03a_button_and_led_on_off.md)
11+
- [Breathing LED](./01_04_breathing_LED.md)

02_input_and_output/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Module 2 - Input and Output
2+
3+
The goal of the second module is to show how to read more complex inputs and create more complex outputs.
4+
5+
## Projects
6+
- [Flowing Light](./02_01_flowing_light.md)
7+
- [Flowing Light with PWM](./02_02_flowing_light_with_pwm.md)
8+
- [Gradient Color Light](./02_03_gradient_color_light.md)
9+
- [LED Pixel](./02_04_led_pixel.md)
10+
- [Rainbow Light](./02_05_rainbow_light.md)
11+
- [Read the Voltage of a Potentiometer](./02_06_read_voltage_potentiometer.md)
12+
- [Soft Light](./02_07_soft_light.md)

03_sensors/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Module 3 - Sensors
2+
3+
The goal of the third module is to use various input methods to read input from sensors or other input devices
4+
5+
## Projects
6+
7+
- [Night Lamp](./03_01_night_lamp.md)
8+
- [Thermometer](./03_02_thermometer.md)
9+
- [Joystick](./03_03_joystick.md)
10+
- [Ultrasonic Ranging](./03_04_ultrasonic_ranging.md)
11+
- [Ultrasonic Ranging (with the hcsr04 module)](./03_05_ultrasonic_ranging_2.md)
12+
- [Hygrothermograph (DHT11)](./03_06_hygrothermograph_dht11.md)
13+
- [Matrix Keypad](./03_07_matrix_keypad.md)
14+
- [MPU6050 Attitude Sensor](./03_08_mpu6050_attitude_sensor.md)

04_output/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Module 4 - Output
2+
3+
The goal of the fourth module is to drive interesting external devices via the microcontroller.
4+
5+
## Projects
6+
7+
- [7-Segment Display](./04_01_seven_segment_display.md)
8+
- [Four Digit Seven Segment Display](./04_02_four_digit_seven_segment.md)
9+
- [LCD1602 Display](./04_03_lcd1602.md)
10+
- [Motor & Driver - Control Motor with Potentiometer](./04_04_motor_driver.md)
11+
- [Servo Sweep](./04_05_servo_sweep.md)
12+
- [Servo Knob](./04_06_servo_knob.md)
13+
- [Stepper Motor](./04_07_stepper_motor.md)
14+
- [Hygrothermograph (DHT11 + LCD1602)](./04_08_hygrothermograph_dht11_2.md)

05_advanced/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Module 5 - Advanced
2+
3+
The goal of the fifth module is to learn some microcontroller specific concepts.
4+
5+
## Projects
6+
- [Interrupts](./05_01_interrupts.md)

_config.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,20 @@ navigation:
66
- title: Getting Started
77
link: /setup/getting_started.html
88
- title: Module 1 - First Examples
9-
link: /01_first_examples/
9+
link: /01_first_examples/index.html
1010
sublist:
1111
- title: Blink (Built-in LED)
12-
link: /01_first_examples/01_01_blinking_led.html
12+
link: /01_first_examples/01_01_blink.html
1313
- title: Blink (External LED)
14-
link: /01_first_examples/01_02_blinking_external_led.html
14+
link: /01_first_examples/01_02_blink_external_led.html
1515
- title: Button and LED
1616
link: /01_first_examples/01_03_button_and_led.html
1717
- title: Button and LED On/Off Switch
18-
link: /01_first_examples/01_04_button_and_led_on_off_switch.html
18+
link: /01_first_examples/01_03a_button_and_led_on_off.html
19+
- title: Breathing LED
20+
link: /01_first_examples/01_04_breathing_led.html
1921
- title: Module 2 - Input and Output
20-
link: /02_input_output/
22+
link: /02_input_output/index.html
2123
sublist:
2224
- title: Flowing Light
2325
link: /02_input_output/02_01_flowing_light.html
@@ -34,7 +36,7 @@ navigation:
3436
- title: Soft Light
3537
link: /02_input_output/02_07_soft_light.html
3638
- title: Module 3 - Sensors
37-
link: /03_sensors/
39+
link: /03_sensors/index.html
3840
sublist:
3941
- title: Night Lamp
4042
link: /03_sensors/03_01_night_lamp.html
@@ -53,7 +55,7 @@ navigation:
5355
- title: MPU6050 Attitude Sensor
5456
link: /03_sensors/03_08_mpu6050_attitude_sensor.html
5557
- title: Module 4 - Output
56-
link: /04_output/
58+
link: /04_output/index.html
5759
sublist:
5860
- title: 7-Segment Display
5961
link: /04_output/04_01_seven_segment_display.html
@@ -72,7 +74,7 @@ navigation:
7274
- title: Hygrothermograph (DHT11 + LCD1602)
7375
link: /04_output/04_08_hygrothermograph_dht11_2.html
7476
- title: Module 5 - Advanced
75-
link: /05_advanced/
77+
link: /05_advanced/index.html
7678
sublist:
7779
- title: Interrupts
7880
link: /05_advanced/05_01_interrupts.html

0 commit comments

Comments
 (0)