Resistor, LED, Multimeter
First hands-on session — understanding resistors, lighting an LED, and learning to measure with a multimeter.
Resistors
A resistor opposes the flow of current. More resistance → less current for the same voltage.
Unit: Ohm (Ω). Named after Georg Ohm.
Color Codes (4-band)
Resistors are too small to print numbers on, so they use colored bands:
- Band 1 & 2: significant digits
- Band 3: multiplier (power of 10)
- Band 4: tolerance (gold = ±5%)
Color → digit: Black Brown Red Orange Yellow Green Blue Violet Grey White = 0–9
A 470Ω resistor: Yellow (4) · Violet (7) · Brown (×10) · Gold (±5%)
Standard values follow the E12 or E24 series — you can’t buy arbitrary values. Common ones: 100, 220, 330, 470, 1k, 2.2k, 4.7k, 10k, 100k.
Power Rating
Resistors also have a maximum power they can dissipate before burning. P = I²R. Most hobbyist resistors are 1/4W. For most low-voltage circuits this is fine.
LEDs
A Light Emitting Diode emits light when current flows through it in the forward direction.
Key specs:
- Forward voltage (Vf): The voltage drop across the LED when conducting. Red ≈ 2V, Green ≈ 2.1V, Blue/White ≈ 3.3V.
- Forward current (If): Typically 20mA max for standard LEDs. Run at 10–15mA for safety.
Polarity matters: current can only flow anode (+) → cathode (−). Wrong way = no light, no damage. No resistor = burnout.
Identifying polarity
- Longer leg = anode (+)
- Flat side of the housing = cathode (−)
- Inside: smaller post = anode, larger “anvil” = cathode
Resistor calculation
To safely drive an LED from a 9V supply:
R = (Vsupply - Vf) / If
R = (9V - 2V) / 0.015A
R = 466Ω → use 470Ω (nearest standard value)
Lit it up. Worked first try.
Multimeter
Three essential measurements:
Voltage (DC)
Probe in parallel with the component. Red → higher potential, Black → lower (GND). Start on high range, dial down. Read volts across the LED: ~2V. Across the resistor: ~7V. They add up to 9V. Makes sense — Kirchhoff’s Voltage Law.
Resistance
Power off first — live circuits give wrong readings. Probes across the resistor: reads ~465Ω for a 470Ω resistor. Within 5% tolerance.
Continuity
The most useful mode for debugging. Beep = connected path. Silence = open circuit. Used it to verify every wire on the breadboard before powering up.
The Breadboard
Holes are connected internally in columns (the middle section) and horizontally along the power rails (the long red/black rows on each side).
The biggest beginner trap: assuming a wire is connected when it isn’t seated properly. Continuity mode catches this instantly.
What I Noticed
Coming from software, debugging feels similar: form a hypothesis, measure, compare to expectation, adjust. The multimeter is just a print statement for circuits.