

Inductors are passive electrical components that store energy in a magnetic field when electric current flows through them. They are typically constructed as coils of wire and are characterized by their inductance, measured in henries (H). Inductors resist changes in current, making them essential in various electronic applications.








Inductors are generally two-terminal components. Below is a table describing the terminals:
| Pin | Description |
|---|---|
| Pin 1 | Input terminal for current flow. |
| Pin 2 | Output terminal for current flow. |
For surface-mount inductors, the pins are typically labeled as A and B or may not have explicit markings. Ensure correct orientation based on circuit design.
Inductors are often used in conjunction with microcontrollers like the Arduino UNO for tasks such as filtering or energy storage. Below is an example of using an inductor in a simple low-pass filter to smooth a PWM signal:
// Arduino code to generate a PWM signal on pin 9
// This PWM signal can be smoothed using an inductor-capacitor filter
void setup() {
pinMode(9, OUTPUT); // Set pin 9 as an output
}
void loop() {
analogWrite(9, 128); // Generate a 50% duty cycle PWM signal
// Adjust the value (0-255) to change the output voltage
}
Inductor Overheating:
Unexpected Noise or EMI:
Circuit Not Functioning as Expected:
Core Saturation:
By following these guidelines, you can effectively use inductors in your electronic projects and troubleshoot any issues that arise.