Knowledge Base

The AB Electronics UK Knowledge Base provides support solutions, tutorials and troubleshooting guides.

Knowledge Base

IO Pi Plus Tutorial 1 - The Blinking LED

Blinking an LED with the Raspberry Pi


This tutorial will start with a blinking LED and then build a binary counter using 8 LEDs. You will need your Raspberry Pi, an IO Pi Plus, 8 red LEDs and 8 500R resistors.

We will use the AB Electronics Python library to talk to the IO Pi Plus. To download the library, visit our Python Library and Demos knowledge base article.

You must enable i2c on your Raspberry Pi; see our other tutorial on i2c: I2C, SMBus and Raspbian Linux.

The AB Electronics Python library uses another library called python3-smbus; you can install it using apt-get with the following commands.

sudo apt-get update
sudo apt-get install python3-smbus

With the libraries installed and the Raspberry Pi configured to use i2c, we can begin building our first project.

Stage 1 – Blinking an LED

If you haven’t done so, install your IO Pi Plus onto the Raspberry Pi by connecting it to the GPIO header. Make sure your Raspberry Pi is turned off when you do this to minimise the risk of damaging the Raspberry Pi or the IO Pi.

Next, connect the LED and resistor in series between Bus 2 – Pin 1 of the IO Pi Plus and the ground pin, as shown in the picture.

The IO Pi Plus contains two MCP23017 I/O controller chips from Microchip. The MCP23017 is an i2c-based controller having 16 I/O pins, which can be configured individually as inputs or outputs. The two MCP23017 controllers are configured on different I2C addresses so you can control them independently from each other; for more information on setting the I2C addresses, see the IO Pi Plus product page.

The maximum current you can draw from any of the pins on the MCP23017 is 25mA, so by using the 500R resistor in series with the LED, we limit the current to a safe level of 10mA.

LED connected to an IO Pi Plus on a Raspberry Pi

We will start by creating a new Python program file called tutorial1.py for this tutorial. You can use your favourite text editor for writing the program. You can find a complete example of tutorial1.py in the ABElectronics_Python_Libraries/ABElectronics_IOPi/demos folder.

At the top of your program, you will need to import the IOPI library and time library.

#!/usr/bin/env python
from IOPi import IOPi
import time

The IOPI library is used for all communication with your IO Pi Plus; it gives you control over almost everything that can be done with the MCP23017 controller.

As we will only be using one of the MCP23017 controllers, we will create an instance of the IOPI class and call it bus. To use both controller chips, you must create two separate instances of the IOPI class with the I2C addresses for each chip.

bus = IOPi(0x21)

0x21 is the I2C address for the controller chip on bus 2; if you have changed the address selection jumpers on your IO Pi Plus, you must change this number to match the new address.

Using our new instance of the IOPI class, we can access all available methods for controlling the IO Pi Plus. Let’s begin by setting the pins as outputs.

bus.set_port_direction(0, 0x00)

The 16 channels on each I/O bus are split into two 8-pin ports. Port 0 controls pins 1 to 8, while port 1 controls pins 9 to 16. Having two 8-pin ports allows us to change the direction on 8 pins at once by sending an 8-bit byte of information to the IO Pi Plus. You can also set each pin separately using the set_pin_direction command, but for our tutorial today, we will use set_port_direction.

set_port_direction takes two variables; the first is the port you want to control, 0 for pins 1 to 8 and 1 for pins 9 to 16. The second variable is the command byte for setting the individual pin directions. Setting a pin to 0 makes it an output while setting it to 1 makes it an input; remember, 0 = out, 1 = in. 

As a byte in binary is 8 bits long, each bit represents one of the pins on the selected port. The least significant bit, or the one nearest the right, represents the lowest pin number, while the most significant bit or the one nearest the left, represents the highest pin number. If we wanted to set pins 1 to 4 as inputs and 5 to 8 as outputs, we could send the binary number 00001111. If we wanted pin 7 to be an input and everything else to be an output, we could send the binary number 01000000. 

When working in Python or most other languages, it’s the standard convention when dealing with bytes to use hexadecimal rather than binary numbers, so 00001111 would become 0x0F while 01000000 becomes 0x40. If you are not very good at converting binary and hexadecimal in your head, you can use our value converter.

As we want all of the pins to be outputs, we will send the binary number 00000000, which is converted to hexadecimal is 0x00.

Next, we will turn off all pins on port 0 with the write_port method.

bus.write_port(0, 0x00)

As with set_port_direction, write_port takes two variables: the port to write to 0 or 1 and the value to send to the port. Sending a 0 turns a pin off while sending a 1 turns the pin on.

The IO Pi Plus is now set up for blinking our LED with all the pins on port 0 set as outputs and switched off. So, how do we make an LED blink?

We will first need a loop so that the same commands can run repeatedly. This can be done with a simple while loop.

while True:

As True is always true, the while loop will continue until you exit the program with a Ctrl-C.

We have an LED connected to pin 1, so we only need to talk to pin 1. We could use the write_port command, but that would update every pin on the port, so if we have anything else connected to the other pins, it would also affect them. We need a way to write to just one pin at a time and do that with the write_pin method.

bus.write_pin(1, 1)

write_pin takes two variables: the first is the pin you want to talk to, 1 to 16, and the second variable controls the state of that pin. 1 will turn the pin on, and 0 will turn the pin off.

We could now use another write_pin command to turn the LED off, but the program will switch the LED on and off so fast that you will see a glowing LED. We need a short delay between turning the pin on and off; we can do this using the time.sleep method.

time.sleep(1)

time.sleep takes one variable, a number representing the number of seconds to wait. 1 will make the program sleep for 1 second while 0.1 would wait for 100ms.

Next, we add another write_pin command to turn the LED off and another sleep command to wait for another second.

bus.write_pin(1, 0)
time.sleep(1)

That is everything we need to make an LED blink; your program should now look like this.

#!/usr/bin/env python
from IOPi import IOPi
import time

bus = IOPi(0x21)
bus.set_port_direction(0, 0x00)
bus.write_port(0, 0x00)
while True:
    bus.write_pin(1, 1)
    time.sleep(1)
    bus.write_pin(1, 0)
    time.sleep(1)

Save your program and run it in a command terminal using

python3 tutorial1.py

If everything goes as planned, your LED should turn on and off every second.

 

Stage 2 – Making a binary counter

Now we have one LED that blinks. Let us expand on that and make an LED counter that counts from 1 to 255 in binary.

Connect your remaining 7 LEDs and resistors to pins 2 to 8, as shown in the picture.

We will modify the previous program to make it display numbers on the LEDs; first, save your program to a new file called tutorial1a.py.

Everything until the while loop can stay as it was; we still need to set all the pins to outputs and turn them off. Remove all of the commands after while True:

8 LEDs connected to an IO Pi Plus on a Raspberry Pi

We want a counter that counts from 0 to 255; the easiest way is with a for loop.

for x in range(0,255):

The for loop will loop through the numbers from 0 to 255 and store the current number in the variable x.

Next, we will write out the current number to port 0 using the write_port command.

bus.write_port(0, x)

This will send the variable x to the port and display it as a binary number on the LEDs. We want to make the program sleep for half a second between each count, so we can see the numbers increase.

time.sleep(0.5)

Once the for loop has finished counting to 255, it will jump onto the following command in the program. We will send a final write_port command to turn all the LEDs off before the while loop starts the counter again.

bus.write_port(0, 0x00)

That is everything; your program should now look like this.

#!/usr/bin/env python
from IOPi import IOPi
import time

bus = IOPi(0x21)
bus.set_port_direction(0, 0x00)
bus.write_port(0, 0x00)
while True:
    for x in range(0,255):
        bus.write_port(0, x)
        time.sleep(0.5)
    bus.write_port(0, 0x00)

Save the program and run it at the command prompt.

python3 tutorial1a.py

You should see the LEDs change counting from 1 to 255 in binary. It will take about 2 minutes to count to 255; if you want it to go faster, change the time.sleep with a smaller number.


(images created with Fritzing)


Was this article helpful? Yes No

Please tell us how we can improve this article:

Submit
Created 02/10/2015 | Last Updated: 11/11/2023

Related Expansion Boards

Related Articles

IO Pi Plus Tutorial 1 - The Blinking LED
Blinking an LED with the Raspberry Pi
IO Pi Plus Tutorial 2 - Push the Button
Reading a button input using a Raspberry Pi and IO Pi
IO Pi Plus Tutorial 3 - Introducing Interrupts
Using Interrupts with the IO Pi Plus
IO Pi Plus Tutorial 4 - More Interrupts
Using the IO Pi interrupts with the Raspberry PI GPIO interrupts
IO Pi Plus Tutorial - MQTT Reading the Ports
Reading the GPIO pins on the IO Pi Plus using MQTT Message Queue Telemetry Transport
IO Pi Plus with Raspberry Pi Pico
Using the IO Pi with Raspberry Pi Pico and MicroPython
IO Pi Plus Tutorial - MQTT Control
Control the GPIO Pins on the IO Pi Plus using the MQTT Message Queue Telemetry Transport
Driving Relays or higher loads with the IO Pi Plus
Using the IO Pi Plus or Zero with relays or opto-isolators
Relay Board for the IO Pi Plus 2.1
Relay board project for the IO Pi Plus
16 Channel Opto-Isolated Input Board
For use with the IO Pi Plus and IO Pi Zero