|
2 | 2 |
|
3 | 3 | This exercise makes use of array to turn ON and OFF multiple LEDs in sequence.
|
4 | 4 |
|
5 |
| -## Schematic |
| 5 | +## Schematic Description |
6 | 6 |
|
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. | |
10 | 20 |
|
11 | 21 | ## Code
|
12 | 22 |
|
@@ -49,3 +59,21 @@ void loop()
|
49 | 59 | }
|
50 | 60 | }
|
51 | 61 | ```
|
| 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. |
0 commit comments