AI

Electronic parts are the fundamental building blocks of modern devices. When we discuss "parts," we generally categorize them into two main groups: **Passive** and **Active** components.
---
### 1. Classification Table
This table outlines the primary differences between active and passive electronic components.
| Category | Description | Common Examples | Function |
| :--- | :--- | :--- | :--- |
| **Passive** | Cannot introduce energy into the circuit; they consume or store it. | Resistors, Capacitors, Inductors | Regulation, Storage, Filtering |
| **Active** | Can control the flow of electricity and provide gain (amplification). | Transistors, Diodes, Integrated Circuits (ICs) | Switching, Amplification, Processing |
---
### 2. Core Components Explained
#### A. Resistors (Ω)
Resistors limit the flow of electrical current. They are used to protect sensitive parts from receiving too much voltage or current.
* **Variable Resistor (Potentiometer):** Allows you to manually change resistance (like a volume knob).
#### B. Capacitors (F)
Capacitors act like tiny temporary batteries. They store energy in an electric field and are primarily used for:
* Smoothing out voltage spikes.
* Filtering signals.
#### C. Diodes & LEDs
Diodes allow current to flow in only **one direction**.
* **LED (Light Emitting Diode):** A diode that emits light when current passes through it.
* **Zener Diode:** Allows current to flow backward once a specific voltage is reached.
#### D. Transistors
Considered the most important invention of the 20th century. Transistors act as:
1. **Switches:** Turning current on or off.
2. **Amplifiers:** Taking a small signal and making it larger.
---
### 3. Integrated Circuits (ICs)
An IC is a collection of thousands or millions of resistors, transistors, and capacitors shrunk down onto a small silicon chip.
```cpp
// Example: Microcontrollers (like Arduino) are a type of IC
void setup() {
pinMode(13, OUTPUT); // Setting a pin to send power to an electronic part
}
void loop() {
digitalWrite(13, HIGH); // Turn LED on
delay(1000);
digitalWrite(13, LOW); // Turn LED off
delay(1000);
}
```
---
### 4. Connection Methods
To build circuits, components are connected using:
* **Breadboards:** For temporary testing and prototyping without solder.
* **PCBs (Printed Circuit Boards):** Permanent green boards found inside phones and computers.
* **Solder:** A metal alloy melted to create permanent electrical joints.
- ⤷
What is the difference between an analog and a digital signal in electronics?
- ⤷ How do I choose the correct resistor for an LED?
- ⤷ What are the basic tools needed to start a hobby in electronics?