Practice Lab Guide

Project 1: Basic Circuit & Sensor Reading Lab

Build and analyze series, parallel, and digital input pull-down switch circuits on a breadboard.
Domain
Electronics Hardware
Difficulty
⭐☆☆☆☆ (Beginner)
Course Module
Electronics Fundamentals
Deliverables
Schematic, 4-Point Measurement Log
1. Series-Parallel & Pull-Down Schematic Layout

This lab expands on basic circuit concepts by routing a multi-segment configuration on a single breadboard block. Section A features a series circuit where current passes through a 220Ω resistor and a 470Ω resistor sequentially, dividing voltage drop. Section B hosts a parallel junction dividing current across two identical 1kΩ resistors. Section C demonstrates a switch-activated 10kΩ pull-down resistor configuration, which forms the hardware foundation for digital button inputs in microcontroller projects.

+ - SECTION A: SERIES (220Ω + 470Ω) SECTION B: PARALLEL (1kΩ || 1kΩ) SECTION C: PULL-DOWN INPUT 220Ω 470Ω Current flows sequentially R_total = 690Ω 1kΩ 1kΩ Current splits at parallel node R_total = 500Ω Signal Out 10kΩ Button Released: Signal = 0V (GND) Button Pressed: Signal = 5V (VCC)
2. Part 1: Detailed Assembly & Measurement Instructions

Construct each circuit segment independently on your breadboard, and execute the voltage and current measurements at the specified target zones.

STEP 1

Assemble the Series Circuit (Section A)

Wire two different resistors sequentially to observe how voltage divides across series resistances.

Wiring Steps: 1. Turn OFF the main power source. 2. Insert a red jumper wire from the positive red power rail to Column 5, Row A. 3. Insert one lead of a 220Ω resistor (Red, Red, Brown, Gold) into Column 5, Row B. 4. Insert the other lead of the 220Ω resistor into Column 10, Row B. 5. Insert one lead of a 470Ω resistor (Yellow, Violet, Brown, Gold) into Column 10, Row C. 6. Insert the other lead of the 470Ω resistor into Column 15, Row C. 7. Insert a black jumper wire from Column 15, Row D, to the negative blue ground rail.
We place the resistors in series to establish a single electrical loop, forcing the exact same current to flow through both resistors while dividing the total voltage across them.
STEP 2

Measure Voltage Drops in the Series Circuit

Use your multimeter in DC Voltage mode to measure the voltage drops across each resistor and confirm the voltage addition rule.

Measurement Actions: 1. Turn ON the power supply. 2. Turn the multimeter dial to DC Voltage (20V range). 3. Place the red probe on Column 5 and the black probe on Column 10. Record V_R1 (Voltage drop of 220Ω resistor). 4. Place the red probe on Column 10 and the black probe on Column 15. Record V_R2 (Voltage drop of 470Ω resistor). 5. Place the red probe on Column 5 and the black probe on Column 15. Record V_Total_Series (Total voltage across both resistors). 6. Verify that V_R1 + V_R2 matches V_Total_Series within a tiny measurement error.
We measure voltage drops across individual series resistors to verify that the sum of local voltages equals the total supply voltage, matching Kirchhoff's Voltage Law.
STEP 3

Assemble the Parallel Circuit (Section B)

Wire two identical resistors in parallel to observe how current divides while voltage remains constant across parallel paths.

Wiring Steps: 1. Turn OFF the main power source. 2. Insert a red jumper wire from the positive red power rail to Column 25, Row A. 3. Insert one lead of the first 1kΩ resistor (Brown, Black, Red, Gold) into Column 25, Row B. 4. Insert the other lead of this resistor into Column 30, Row B. 5. Insert one lead of the second 1kΩ resistor into Column 25, Row C. 6. Insert the other lead of this second resistor into Column 30, Row C. 7. Insert a black jumper wire from Column 30, Row D, to the negative blue ground rail.
We align the two identical resistors side-by-side between columns 25 and 30 to expose both resistors to the exact same supply voltage, splitting the current evenly between them.
STEP 4

Measure Voltage in the Parallel Circuit

Measure the voltage drop across both parallel resistors to verify they are identical to each other and to the input voltage.

Measurement Actions: 1. Turn ON the power supply. 2. Keep the multimeter dial in the DC Voltage (20V range) position. 3. Place the red probe on Column 25 and the black probe on Column 30. 4. Note the voltage drop. It should equal the voltage of your power source (approximately 5V). 5. Touch the probes directly to the leads of the first resistor, and then the second. Note that both read exactly the same voltage.
We check parallel voltages to confirm that all branches connected directly to the same node share an identical electrical potential, which is a key trait of parallel distribution networks.
STEP 5

Assemble the Digital Input Pull-Down Switch Circuit (Section C)

Build a mechanical switch circuit with a pull-down resistor to produce clean high/low digital states for microcontroller inputs.

Wiring Steps: 1. Turn OFF the main power source. 2. Locate a 4-pin tactile push-button switch. Note that the pins are internally connected in pairs. 3. Insert the switch into the middle of the breadboard so its pins span across the center trench (e.g., pins on columns 40 and 42). 4. Connect a RED jumper wire from the positive red power rail to Column 40, Row A. 5. Connect one lead of a 10kΩ resistor (Brown, Black, Orange, Gold) to Column 42, Row B. 6. Connect the other lead of the 10kΩ resistor to the negative blue ground rail. 7. Connect a signal output jumper wire (e.g. green) to Column 42, Row C (this is the signal output node).
We install a pull-down resistor to tie the signal column to ground (0V) when the switch is open, preventing a floating high-impedance state that causes erratic digital readings.
STEP 6

Measure Pull-Down Input States (High vs. Low)

Use your multimeter to measure the signal output voltage when the push button is released vs. when it is held down.

Measurement Actions: 1. Turn ON the power supply. 2. Set the multimeter to DC Voltage (20V range). 3. Connect the black probe to the negative ground rail and keep it there. 4. Place the red probe tip on Column 42, Row C (the signal output wire). 5. Observe the voltage while the button is released. The meter should display 0.0V (logic LOW). 6. Press and hold down the push-button switch. Observe the voltage reading. The meter should jump to 5.0V (logic HIGH). 7. Release the button and watch the voltage drop back down to 0V immediately.
We measure the signal node to confirm that closing the switch overrides the pull-down resistor's weak ground connection, pulling the node to 5V and creating a clear digital toggle.
3. Scientific Mathematical Validation Pipeline

To verify that our physical circuits are wired correctly and matching theoretical engineering values, we process the measurements through a calculation pipeline. This verifies resistance sums, parallel branch splits, and pull-down logic thresholds.

1. Series Formulas R_eq = R1 + R2 220Ω + 470Ω = 690Ω I = 5V / 690Ω = 7.2mA 2. Parallel Formulas 1/R_eq = 1/R1 + 1/R2 1/1kΩ + 1/1kΩ = 1/500Ω R_eq = 500Ω I = 5V / 500Ω = 10mA 3. Digital Input Verify Released: V = 0V Pressed: V = VCC (5V) State: High/Low Clean
4. Part 2: Complete Calculation & Verification Table

Fill out the following structured Markdown log to record your calculated values against measured readings, checking that they fall within the 5% resistor tolerance limit.

# LAB REPORT: Series-Parallel and Digital Input Analysis ## 1. Series Circuit Measurements (V_in = 5.0 V) * Resistor 1 Nominal: 220 Ohms | Measured: ______ Ohms * Resistor 2 Nominal: 470 Ohms | Measured: ______ Ohms * Total Calculated Resistance (R_eq = R1 + R2): 690 Ohms * Calculated Voltage Drop V_R1 (V_in * (R1/R_eq)): 1.59 Volts DC * Measured Voltage Drop V_R1: ______ Volts DC * Calculated Voltage Drop V_R2 (V_in * (R2/R_eq)): 3.41 Volts DC * Measured Voltage Drop V_R2: ______ Volts DC * Sum of Measured Drops (V_R1 + V_R2): ______ Volts DC (Should equal V_in) ## 2. Parallel Circuit Measurements * Branch Resistor R3 Nominal: 1000 Ohms | Measured: ______ Ohms * Branch Resistor R4 Nominal: 1000 Ohms | Measured: ______ Ohms * Measured Voltage drop across R3: ______ Volts DC * Measured Voltage drop across R4: ______ Volts DC (Should match R3 drop) * Total Calculated Parallel Resistance: 500 Ohms * Total Measured Circuit Current (Series connection at input): ______ mA ## 3. Digital Input Pull-Down Measurements * State 1 (Button Released): Measured Output Voltage = ______ Volts DC (Logic 0 / LOW) * State 2 (Button Pressed): Measured Output Voltage = ______ Volts DC (Logic 1 / HIGH)
5. Deliverables Summary

Created Artifacts

  • Completed series-parallel analysis log table.
  • Detailed calculations showing percentage errors between measured and calculated currents.

Verification Proof

  • Close-up photograph of your breadboard showing all three completed segments (Series, Parallel, Pull-down switch).
  • A photo showing the digital multimeter probes touching Column 42 while pressing the switch, displaying 5V (HIGH).
6. Closing Explanation: Why We Did This & What It Accomplishes

Architectural Intent & Operational Impact

Why We Did This

What This Accomplishes