Skip to content

Commit ff7c099

Browse files
committed
Add getting started md file and add details for sidebar in github pages site
1 parent 8b81c86 commit ff7c099

3 files changed

Lines changed: 85 additions & 1 deletion

File tree

04_output/04_03_lcd1602.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# LCD1602
1+
# LCD1602 Display
22

33
Display static text and a live-updating counter on an LCD1602 character display, controlled over I2C.
44

_config.yml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,78 @@
11
title: Introduction to Python and Microcontrollers
22
description: A hands on course using the Freenove Ultimate Starter kit for ESP32-S3 model FNK0082 to teach basic Python, Microcontroller and electronics concepts.
33
theme: jekyll-theme-minimal
4+
5+
navigation:
6+
- title: Getting Started
7+
link: /setup/getting_started.html
8+
- title: Module 1: First Examples
9+
link: /01_first_examples/
10+
sublist:
11+
- title: Blink (Built-in LED)
12+
link: /01_first_examples/01_01_blinking_led.html
13+
- title: Blink (External LED)
14+
link: /01_first_examples/01_02_blinking_external_led.html
15+
- title: Button and LED
16+
link: /01_first_examples/01_03_button_and_led.html
17+
- title: Button and LED On/Off Switch
18+
link: /01_first_examples/01_04_button_and_led_on_off_switch.html
19+
- title: Module 2: Input and Output
20+
link: /02_input_output/
21+
sublist:
22+
- title: Flowing Light
23+
link: /02_input_output/02_01_flowing_light.html
24+
- title: Flowing Light with PWM
25+
link: /02_input_output/02_02_flowing_light_with_pwm.html
26+
- title: Gradient Color Light
27+
link: /02_input_output/02_03_gradient_color_light.html
28+
- title: LED Pixel
29+
link: /02_input_output/02_04_led_pixel.html
30+
- title: Rainbow Light
31+
link: /02_input_output/02_05_rainbow_light.html
32+
- title: Read the Voltage of a Potentiometer
33+
link: /02_input_output/02_06_read_voltage_potentiometer.html
34+
- title: Soft Light
35+
link: /02_input_output/02_07_soft_light.html
36+
- title: Module 3: Sensors
37+
link: /03_sensors/
38+
sublist:
39+
- title: Night Lamp
40+
link: /03_sensors/03_01_night_lamp.html
41+
- title: Thermometer
42+
link: /03_sensors/03_02_thermometer.html
43+
- title: Joystick
44+
link: /03_sensors/03_03_joystick.html
45+
- title: Ultrasonic Ranging
46+
link: /03_sensors/03_04_ultrasonic_ranging.html
47+
- title: Ultrasonic Ranging (with the hcsr04 module)
48+
link: /03_sensors/03_05_ultrasonic_ranging_2.html
49+
- title: Hygrothermograph (DHT11)
50+
link: /03_sensors/03_06_hygrothermograph_dht11.html
51+
- title: Matrix Keypad
52+
link: /03_sensors/03_07_matrix_keypad.html
53+
- title: MPU6050 Attitude Sensor
54+
link: /03_sensors/03_08_mpu6050_attitude_sensor.html
55+
- title: Module 4: Output
56+
link: /04_output/
57+
sublist:
58+
- title: 7-Segment Display
59+
link: /04_output/04_01_seven_segment_display.html
60+
- title: Four Digit Seven Segment Display
61+
link: /04_output/04_02_four_digit_seven_segment.html
62+
- title: LCD1602 Display
63+
link: /04_output/04_03_lcd1602.html
64+
- title: Motor & Driver: Control Motor with Potentiometer
65+
link: /04_output/04_04_motor_driver.html
66+
- title: Servo Sweep
67+
link: /04_output/04_05_servo_sweep.html
68+
- title: Servo Knob
69+
link: /04_output/04_06_servo_knob.html
70+
- title: Stepper Motor
71+
link: /04_output/04_07_stepper_motor.html
72+
- title: Hygrothermograph (DHT11 + LCD1602)
73+
link: /04_output/04_08_hygrothermograph_dht11_2.html
74+
- title: Module 5: Advanced
75+
link: /05_advanced/
76+
sublist:
77+
- title: Interrupts
78+
link: /05_advanced/05_01_interrupts.html

setup/getting_started.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Getting Started
2+
3+
Setup your computer and microcontroller for the first time using one of the guides below then start at [Module 1: First Examples](../01_first_examples/)
4+
5+
## First time setup
6+
7+
- [Mac](./setup_macos.md)
8+
- [Linux](./setup_linux.md)
9+
- [Windows](./setup_windows.md)

0 commit comments

Comments
 (0)