Lab 0: Getting Started

We learn through play

Purpose

Note

You are typically expected to read and understand the lab description before coming to the lab. There is also a weekly Pre-Lab-quiz on Canvas.

For this week, we are just getting started. So just follow along.

Motivation

The purpose of this lab is to become familiar with some common electronics components such as bread boards, power supplies and resistors and to gain experience using a common electronics measurement tool, the digital multimeter (DMM).

We are also introducing the Raspberry Pi computer this week. Soon, your Pi will be used to conduct measurements and you will need to know how to operate and program it.

Building electronic circuits and using small computers for prototyping systems are important skills that you might encounter in your professional career (think Internet of things - IoT).

Learning Goals

The goals of this lab are to:

  • Review circuit concepts of resistance, voltage and current that you learned in ISAT 152
  • Gain experience using a breadboard and digital multimeter
  • Gain experience constructing simple circuits on a breadboard
  • Measure the behavior of resistors in series vs. parallel
  • Learn now to use the Raspberry Pi
  • Understand that the Raspberry Pi can be use to control a physical system
    • i.e. make an LED blink

Background

This lab consists of two connected activities that will help you acclimatize to the labs.

  1. Set up the Raspberry Pi and install the software

  2. We will do a short activity to get started with breadboards and the digital multimeter you will be using for several labs. Doing these exercises will make lab 1 go more smoothly.

  3. After that, we will familiarize ourselves with the Raspberry Pi and how to run a simple program. Starting Lab 4 you will be working every week with the Pi and this will help you get the basics.

Materials

  • Breadboard
  • Digital multimeter
  • A collection of resistors
  • LED
  • Wires
  • 9V battery with connectors
  • Raspberry Pi with cables and accessories

Procedure

Working with Breadboard and DMM

  1. Using the resistor value guide at the end of this lab, obtain the nominal resistance of the resistors in front of you. Record the colors of the bands and the corresponding nominal resistance.

  2. Refer to the breadboard illustration in the (Appendix Figure 4) to familiarize yourself with the breadboard layout and use the DMM on the continuity setting (Figure 1) to confirm the connections

Figure 1: Testing Continuity with a Multimeter
  1. Set the DMM to read ohms (Ω) and make sure that you have plugged the cables into the correct outlet. When the DMM is set on Ω, never insert it into a circuit! Measure the actual resistance of your resistors and compare them to the values obtained in step 1.

    Question:

    Did you read the nominal values from the guide correctly?

  2. Refer to the figure “Measuring Resistance values using 10K Ohm resistors in series” (Appendix: Figure 5) to measure the resistance of several resistors in series.

    1. What are the individual resistances of the resistors you placed in series?
    2. What do you notice about the total resistance of the resistors in series?
  3. Refer to the figure “Measuring Resistance values using 10K Ohm resistors in parallel” (Appendix: Figure 6) to measure the resistance of several resistors in parallel.

    1. What are the individual resistances of the resistors you placed in series?
    2. What do you notice about the total resistance of the resistors in series?
  4. Compare the total resistances of steps 4 and 5 and think about what this means for circuits. It may also be a good idea to review this a bit from your ISAT 152 notes …

  5. Build a small circuit by connecting an LED and a resistor in series. Make sure that you include a resistor, otherwise the current from the battery will fry your LED.

  6. Have an instructor check your circuit and connect the 9V battery to power the circuit.

    Note

    The long pin of the LED needs to be connected to the (+) lead of the battery

Question:

Are the power outlets in your home wired in series or in parallel?

Working with the Raspberry Pi

The Raspberry Pi is a small, inexpensive ($35) computer that was originally produced in 2009 by the Raspberry Pi Foundation to help teach students basic computer science. It was originally intended to help developing nations that could not afford computers.

Your Pi runs a Linux operating system with a graphical user interface similar to a Windows PC or Mac.

  1. Start the Raspberry Pi by connecting the power cable (and any other cables that might be missing).

  2. The Connect the Raspberry Pi to the JMU-Guest wifi network. Dr. Gerken will share login credentials with you. You will need to open the web-browser to complete the sign-in. Navigate to www.google.com and your browser will likely warn you of an insecure connection. This is fine, go to advanced and accept the connection to wifi sign-in window.

  3. Keeping files and folders organized is important. Open the Terminal (also on the top left of the screen) and create a new folder names ISAT_Labs in your home directory, navigate into the folder and create another folder named Lab0.

    You will see a prompt like this ~$ that allows you to enter commands.

    The command to create a folder is mkdir followed by the folder name.

    You change directories with the cd command followed by the target folder.

     ~$ mkdir ISAT_Labs
     ~$ cd ISAT_Labs 
     ~/ISAT_Labs $ mkdir Lab0  
    Note

    Linux commands have the general structure of a command like cd followed by one or several arguments separated by spaces. See the examples for mkdir or cd above.

    You can check the terminal cheat sheet on the resource page for more handy terminal commands.

  4. Write your first program:

    Important

    This and the next step require a working python-3 installation, which should come as a standard with the Pi. You can confirm that by checking whether the lower window of Thonny shows something like:

    Python 3.9.2. (/usr/bin/python3)

    Check with your instructor, if you don’t see this. Or if the first python program does not run.

    1. Open the Thonny Python Integrated Development Environment (IDE). You can find it in the Programming tab on the Pi-Start Thonny menu in the top left corner.

      You can also start it from the terminal like this:

      ~$ thonny
    2. Write your first Python program on the Raspberry Pi and check whether the python installation is working properly.

    3. It is custom to start with a very simple program that will print out some text.

    1. Type or copy the below text into the editor.

      print('Hello ISAT 300')
    2. Save the file with the name hello_isat.py into the Lab0 folder.

    3. Click the play button and check whether your program worked and Hello ISAT 300 is printed into the shell window below.

  5. Next we will do something a bit more interesting. We will use the PI to switch on and off an LED.

    Important

    In addition to a working Python3 installation, the next program also requires you to import the RPi.GPIO module.

    If running the program produces an error message like this

    Traceback (most recent call last):
     File"<string> ...
    ModuleNotFoundError: No module named 'RPi.gpio'

    we need to install the RPi module first. Your instructor can help with this.

    1. Your Pi is equipped with General Purpose Input and Output pins (GPIO) that enable easy communication with external sensors and controllers.

    2. Connect the LED to the RPi as shown in the diagram below (Figure 2)

      GPIO Output Configuration
      Figure 2: GPIO pin configuration and numbering, Credit: Raspberry Pi Ltd, CC BY-SA 4.0
      Note

      ​GPIO = General Purpose Input / Output –used to connect external devices (we will use these in this lab). ANY of the pins with GPIO designation could be used to operate the LED.

    3. Switch off the Raspberry Pi and wire the LED as shown in the figure below (Figure 3).

      Warning

      ​Always switch off the Raspberry Pi before connecting and disconnecting wires from the GPIO.

      ​Always have an instructor check your wiring before switching it back on, or otherwise you might damage the Pi or the sensors.

      Figure 3: Wiring diagram for LED connection
    4. Have an instructor check your work and switch the PI back on.

    5. Download and save the python program to the Lab0 folder.

    6. Run the program and see whether the LED lights up. The LED light might be very faint and you might need to shield it with your hand to see (or you might have the LED connected the wrong way around).

    7. Remember back to your programming class and create a loop that makes the LED blink several times. Below is an example of a for loop with will execute 10 times.

          for i in range(10):
              <do something>
    8. Look at the program line by line and try to understand what each line is doing.

Deliverables

There is no deliverable for this week.

Important

There are no deliverables for today, but you will see all of the things done today again and again and your lab experience will be much smoother if you remember how to do them. This is also a good time to review some of your python coding.

Here are some things that you should know or know how to do:

  • Build simple circuits of resistors in series or parallel
  • Measure resistance of a resistor in a circuit
  • Navigate the Raspberry Pi to open Thonny
  • Create folders using the command line
  • Write and execute a simple program on the Pi

Acknowledgements

Special Thanks for Chris Bachman for putting together the Appendixes.

Appendix 1 Resistors

Function

Resistors restrict the flow of electric current; for example, a resistor is placed in series with a light-emitting diode (LED) to achieve a certain specific current passing through the LED. Resistance is measured in ohms, and the symbol for ohm is an omega (Ω). One Ω is very small, so resistor values are often given in kΩ or MΩ: 1 kΩ = 1000 Ω and 1 MΩ = 1000000 = 106 Ω).

Resistors are indicated in circuit diagrams as:

Resistor values - the resistor color code

Resistor values are normally shown using colored bands. Each color represents a number as shown in the table. Most resistors have four bands:

  • The first band gives the first digit of the resistance.

  • The second band gives the second digit of the resistance.

  • The third band indicates the number of zeros after the 2nd digit.

  • The fourth band is used to show the tolerance of the resistor; that is, the ±% deviation from the nominal value of the resistor.

  • If there are five bands, then the first three bands give the first, second and third digits, the fourth band gives the number of zeros after the third digit, and the fifth band gives the tolerance of the resistor.

Examples of different resistors with different numbers of bands and color chart for decoding resistor values (note the multiplier can be either in the 3rd or 4th position)

Appendix 2: Breadboard Basics

We will use these in several labs.

Figure 4: Illustration of a breadboard

Resistors in Series

Circuit with resistors placed in series
Figure 5: Measuring resistance values using 10K Ohm resistors in series

Resistors in Parallel

Circuit with resistors placed in parallel
Figure 6: Measuring resistance values using 10K Ohm resistors in Parallel

History

Revision Description Author
2024-01-29 (S25) Added warnings about python installation Tobias Gerken
2024-01-21 (S25) Annual Revisions Tobias Gerken
2024-01-15 (S24) Updated to Web and Extension with Pi Activities Tobias Gerken
Initial Word Version Tobias Gerken