Skip to content

Commit 14b7d57

Browse files
author
David Palma
committed
Add the schematic description and remove the diagram.
1 parent c2ceda4 commit 14b7d57

File tree

6 files changed

+94
-9
lines changed

6 files changed

+94
-9
lines changed

ex00/README.md

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Exercise 0
22

3-
This exercise consists in the simplest thing to do with an Arduino to see the physical output: blinking the on-board LED.
3+
This exercise consists of performing the simplest task with an Arduino to observe physical output: blinking the on-board LED.
4+
5+
## Schematic Description
6+
7+
This exercise does not require an external schematic as it utilises the built-in LED present on the Arduino board.
8+
9+
### Built-in LED Description
10+
11+
| **Component** | **Pin/Connection** | **Arduino Pin** | **Description** |
12+
|-------------------|--------------------|-----------------|---------------------------------------------------------------------------------|
13+
| **Built-in LED** | LED_BUILTIN | 13 (or equivalent) | The built-in LED blinks ON and OFF according to the delay values in the code. |
414

515
## Code
616

@@ -21,3 +31,21 @@ void loop()
2131
delay(1000); // wait for a second
2232
}
2333
```
34+
35+
## Exercise Steps
36+
37+
1. **Understand the On-Board LED**:
38+
- The Arduino comes with a built-in LED, which is typically connected to the `LED_BUILTIN` pin. For most boards, this corresponds to pin 13.
39+
- This exercise uses the built-in LED to create a simple blinking effect.
40+
41+
2. **Upload the Arduino Code**:
42+
- Copy the provided code for blinking the on-board LED.
43+
- Open the Arduino IDE, paste the code, and upload it to the Arduino.
44+
45+
3. **Observe LED Behaviour**:
46+
- The on-board LED will turn ON for one second and OFF for one second in a continuous loop.
47+
- Modify the `delay()` values in the code if you wish to change the blinking speed.
48+
49+
4. **Experiment with Timing**:
50+
- Adjust the `delay()` durations to make the LED blink faster or slower.
51+
- Try adding additional logic, such as double blinking, to enhance the exercise.

ex01/README.md

+33-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,21 @@
22

33
This exercise is the same as the previous one with the only difference that a led connected to pin 13 is used instead of using the built-in led.
44

5-
## Schematic
5+
## Schematic Description
66

7-
<p align="center">
8-
<img src="./ex01_schem.png" height="503px" alt="Schematic"></img>
9-
</p>
7+
### Components and Connections
8+
9+
| **Component** | **Pin/Connection** | **Arduino Pin** | **Description** |
10+
|---------------|--------------------|-----------------|---------------------------------------------------------------------------------|
11+
| **LED** | Anode | 13 | Turns ON and OFF as programmed in the code to create a blinking effect. |
12+
| | Cathode | GND (via Resistor) | Connects to ground through a 220Ω resistor to ensure safe current flow. |
13+
14+
### Schematic Description Table
15+
16+
| **Connection** | **Pin** | **Purpose** |
17+
|--------------------------|--------------|---------------------------------------------------------------------------------------------|
18+
| LED to Arduino | 13 | Controls the ON/OFF state of the LED based on the programme logic. |
19+
| LED to Ground (via Resistor) | GND | Ensures safe operation of the LED by limiting current with a resistor. |
1020

1121
## Code
1222

@@ -30,3 +40,22 @@ void loop()
3040
delay(1000); // wait for a second
3141
}
3242
```
43+
44+
## Exercise Steps
45+
46+
1. **Connect the External LED**:
47+
- Connect the anode of an LED to digital pin 13 on the Arduino.
48+
- Use appropriate resistors (e.g., 220Ω) in series with the LED to limit current.
49+
- Connect the cathode of the LED to the GND rail.
50+
51+
2. **Upload the Arduino Code**:
52+
- Copy the provided code for blinking the LED.
53+
- Open the Arduino IDE, paste the code, and upload it to the Arduino.
54+
55+
3. **Observe LED Behaviour**:
56+
- The external LED connected to pin 13 will turn ON for one second and OFF for one second in a continuous loop.
57+
- Modify the `delay()` values in the code if you wish to change the blinking speed.
58+
59+
4. **Experiment and Modify**:
60+
- Try connecting the LED to a different pin and update the `led_pin` value in the code accordingly.
61+
- Experiment with different delay durations to observe variations in blinking speed.

ex01/ex01_schem.png

-33.7 KB
Binary file not shown.

ex02/README.md

+32-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,21 @@
22

33
This exercise makes use of array to turn ON and OFF multiple LEDs in sequence.
44

5-
## Schematic
5+
## Schematic Description
66

7-
<p align="center">
8-
<img src="./ex02_schem.png" height="600px" alt="Schematic"></img>
9-
</p>
7+
### Components and Connections
8+
9+
| **Component** | **Pin/Connection** | **Arduino Pin** | **Description** |
10+
|---------------|----------------------|-----------------|-------------------------------------------------------------------------------------------|
11+
| **LEDs (5x)** | Anode | 9, 10, 11, 12, 13 | Indicates sequence by turning ON and OFF in an order defined by the programme logic. |
12+
| | Cathode | GND (via Resistor) | Connects to ground through a 220Ω resistor to limit current. |
13+
14+
### Schematic Description Table
15+
16+
| **Connection** | **Pin** | **Purpose** |
17+
|--------------------------|--------------|---------------------------------------------------------------------------------------------|
18+
| LEDs to Arduino | 9, 10, 11, 12, 13 | Controls the ON/OFF state of LEDs in a sequence as programmed in the code. |
19+
| LEDs to Ground (via Resistors) | GND | Ensures safe operation of LEDs by limiting current with resistors. |
1020

1121
## Code
1222

@@ -49,3 +59,21 @@ void loop()
4959
}
5060
}
5161
```
62+
63+
## Exercise Steps
64+
65+
1. **Connect the LEDs**:
66+
- Connect five LEDs to digital pins 9, 10, 11, 12, and 13 on the Arduino.
67+
- Use appropriate resistors (e.g., 220Ω) in series with the LEDs to limit current.
68+
- Connect the cathode of each LED to the GND rail.
69+
70+
2. **Upload the Arduino Code**:
71+
- Copy the provided code for sequential LED blinking.
72+
- Open the Arduino IDE, paste the code, and upload it to the Arduino.
73+
74+
3. **Observe LED Behaviour**:
75+
- LEDs will turn ON and OFF in sequence from first to last and then from last to first.
76+
- Adjust the `between_HL` constant in the code if needed to modify the delay between LED toggling.
77+
78+
4. **Experiment and Modify**:
79+
- Experiment with adding more LEDs or changing the sequence logic in the code.

ex02/ex02_schem.png

-57.5 KB
Binary file not shown.

ex03/ex03_schem.png

-51.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)