Chapter 7. Exploring the Raspberry Pi's GPIO Pins

In this chapter we will explore the next piece of the Raspberry Pi's hardware, the GPIO pins.

GPIO stands for general purpose input/output. The pins can be used to connect external electronic devices to the Raspberry Pi. This also allows us to build our own circuits and control them using software we have written in languages such as C, Assembly, and Python.

In this chapter we will cover:

We will start by walking through the GPIO pins and looking at what each type is.

The GPIO pins can be divided into a number of categories. These are:

Let's begin by looking at the standard GPIO pins and understanding what they do. A diagram with a breakdown of the pins can be downloaded from https://www.raspberrypi.org/documentation/usage/gpio-plus-and-raspi2/images/physical-pin-numbers.png.

A general overview of the GPIO pins can also be found at the Raspberry Pi website at https://www.raspberrypi.org/documentation/hardware/raspberrypi/gpio/README.md.

The I2C standard is used to allow one microchip to talk to another. The Raspberry Pi 2 supports I2C using pins 3 and 5. In Chapter 10, Integrating with Third-Party Microcontrollers, we explore how to use this methodology to communicate between the Raspberry Pi and a microcontroller.

You can read more about I2C at https://learn.sparkfun.com/tutorials/i2c.

With I2C support, we can connect multiple devices to the Raspberry Pi 2 and assign each a unique address. In order to see what devices are hooked up, we can use the i2c-tool application.

To install the toolkit, start by running the following command:

This installs a Python module that allows SMBus access via the I2C interface on Raspbian.

A guide to using this module in Python applications can be found at https://pypi.python.org/pypi/smbus-cffi/0.4.1.

Once the installation is complete, you can then run apt-get to install i2c-tools if this wasn't included when you installed python-smbus:

A guide to the tools can be found at http://elinux.org/Interfacing_with_I2C_Devices#i2c-tools.

Let's try checking whether the software installed successfully. Run the i2cdetect command with the –l flag:

i2cdetect –l

The command returns a list of installed buses on the Raspberry Pi 2 and for the moment should return no values.

Let's now add kernel support for I2C so we can use it in future if we want. Open up the modules file:

Now edit the file so it looks like the following:

Here we have added these two lines to the bottom of the original file:

Save the file and exit.

Next we need to edit the boot config.txt file:

This wraps up the enabling of the I2C port. A huge number of projects are available on the Web that leverage this technology.

The website https://learn.adafruit.com/adding-a-real-time-clock-to-raspberry-pi demonstrates how to build a real time clock using I2C support.

Let's now move on and take a look at Rx and Tx pins.

The Rx and Tx pins are responsible for serial communication. Serial communication is the process of sending data one bit at a time in sequence over a communications medium.

Typically, these ports can be used for console input and output. Thus another serial device can be connected to the Raspberry Pi 2 and the serial data read and displayed to the user, allowing them to debug problems.

This is particularly helpful, for example, during the boot process.

You can see whether the console shell is enabled by running the following command from the terminal window:

You should see the following line in the output:

However, if we wish to use the serial ports to communicate with another serial device such as a modem, then the console login feature would need to be disabled.

This is very simple to do via the raspi-config application.

Your serial pins are now available to experiment with serial devices. Later in this book you will experiment with using serial pins to communicate with an Arduino microcontroller.

To learn more about the subject of serial communication, check out https://learn.sparkfun.com/tutorials/serial-communication.

Serial Peripheral Interface (SPI) is a bus designed for synchronous serial communication.

It is useful for communicating between peripheral devices quickly over short distances.

The Raspberry Pi 2 comes with a single SPI bus that has two chip selects. This bus can be interacted with via the SPI pins on the P1 header.

By default, the SPI master drive is disabled, but we can enable it in a similar fashion to switching the Rx/Tx console off via raspi-config or by manually editing the raspi-blacklist.conf file:

A guide to interacting with the SPI bus can be found on the official Raspberry Pi website at https://www.raspberrypi.org/documentation/hardware/raspberrypi/spi/README.md

This link also provides information on the nomenclature used when interacting with SPI.

Later in this chapter, we will install the wiringPi library, which also provides a number of tools for interacting with the GPIO pins, including SPI.

Finally, we have a number of standard GPIO pins that can be used for PWM and PPM. PWM stands for Pulse Width Modulation. This methodology can be used to control the amount of power sent to an electrical motor, thus controlling its speed. The principle behind this is the implementation of a square wave.

You can read more about PWM and see a diagram of the square wave at https://en.wikipedia.org/wiki/Pulse-width_modulation.

It is also possible to generate a software-based PWN square wave using any of the standard GPIO pins. The wiringPi library comes equipped with instructions on how to achieve this at http://wiringpi.com/reference/software-pwm-library/. It also includes a number of example projects.

The second acronym, PPM, can also be used to control electrical motors. PPM stands for Pulse Position Modulation and is popularly implemented for servos.

Servos—short for servomechanisms—are a type of electrical component, such as a motor, that uses error sensing negative performance to correct its position.

If you wish to undertake any projects that control R/C devices, such as R/C cars and boats, via your Raspberry Pi, this will be of interest to you as they typically implement servos.

You can find a comparison between PPM and PWM at http://www.endurance-rc.com/ppmtut.php.

You can find example servo projects at https://learn.adafruit.com/adafruits-raspberry-pi-lesson-8-using-a-servo-motor/overview.

Finally, further information and reading on the GPIO pins can be found at https://www.raspberrypi.org/documentation/usage/gpio-plus-and-raspi2/.

Next, we will discuss the power voltages and pins.