Click here to Skip to main content
15,881,804 members
Articles / Internet of Things / Raspberry-Pi

Getting Started with Raspberry Pi - Part II - GPIO

Rate me:
Please Sign up or sign in to vote.
3.48/5 (14 votes)
14 Nov 2016CPOL4 min read 30.6K   314   22   13
In this article, we would be discussing about the Raspberry Pi - GPIO (General Purpose Input Output) Pins

Note: Request you to please vote and provide comments.

Introduction

In my previous article - Getting Started with Raspberry Pi , we talked about GPIO (General Purpose Input Output). In this article, we will discuss more about the GPIO pins, function of each pin on the Pi board and GPIO numbering.

Getting Started

The main difference between a Raspberry Pi (tiny computer) and other computers is the GPIO (General Purpose Input Output) pins (see Figure 1).

Fig_1

Figure 1

Desktop computers are UBIQUITIOUS, i.e., they have a standard input and output (files, keyboard, mouse, touch, print, screen, etc.) and they take information from fixed input, process it and give the results back to the standard output. This means a normal computer / machine does not have an interface to connect with electronic devices like sensor and actuators, this is where the Raspberry pi (tiny computers) GPIO pins play an important role and make Raspberry Pi different from other computers.

The Pi has GPIO pins that stick out from the top of the board. These pins act as an interface between the Raspberry pi and the physical world. These pins are used to communicate (both input / output) with other circuitry such as sensors, actuators, extension boards and custom circuits.

Understanding the Pins

As seen in Figure 2 above, the GPIO pins vary based on the Raspberry Pi model. The previous models have 26 pins and latest models - Raspberry Pi 2 Model B and Raspberry Pi 3 Model B both have 40 Pins.

Fig_2

Figure 2

To maintain backward compatibility, the first 26 pins from previous models still have the same functionality in the new Raspberry pi models (See Figure 3).

Fig_3

Figure 3

As seen in Figure 4, each pin on the Raspberry pi has a function to do and also an alternate function assigned. You can consider these pins like switches which have a function / Alternate function to do and which can be turned on or off. Apart from the regular function / standard I/O pins (GPIO), the alternate functions these pins have are GND (ground), SPI (Serial Peripheral Interface Bus), I2C (inter integrated circuits), power pins and UART (Universal asynchronous receiver /transmitter) pins.

GPIO Numbering

As seen in Figure 4 above the GPIO pins diagram it seems to be pretty complex and confusing and there is no easy way to remember each of the pins, you need to keep a printed reference sheet on top when using them.

Fig_4

Figure 4

There is a solution to this problem and in the Raspberry Pi world, there are two different numbering schemes used when referencing Pins.

  1. Using the BCM – Broadcom chip-specific pin number – example GPIO10, GPIO23, GPIO24, etc.
  2. Physical numbering – where each number is based on the physical position of the pin. (Hold the Raspberry Pi up facing you vertically with the pins on the right side, then start counting from top left as pin 1 and next pin as 2 on the first row and the pin below 1 as 3 and below 2 as 4 and so on).

Fig_5 Fig_6

Figure 5                  Figure 6

Note: You are free to use any of the above GPIO numbering systems, but while invoking the GPIO pins in programs (like Python or C#), your code should reference one of the numbering systems you are going to use.

Example in a Python program – code looks like this:

import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(18,GPIO.OUT)

GPIO.BOARD – is the physical numbering system and GPIO.BCM is the Broadcom number system.

In the next article, we will talk about the difference in each of the Raspberry Pi models and the pros and cons.

Don’t worry if you don’t understand the above code. We will learn all about it in future articles.

Important Warning: You have to be careful when connecting devices, the GPIO pins directly with wires (called jumper cables)- if these wires are connected to wrong pins, it might damage the Pi board, so please read the instructions carefully before connecting wires directly to the pins.

I would highly recommend using a Breadboard – where you can create the dummy circuits on the breadboard and then connect only to the required pins on the Pi. I would also recommend using a “breakout circuit” to connect the Raspberry Pi with breadboard. One end breakout board is connected to the Raspberry Pi and the other end into the breadboard.

This article was published on my website – hussainpatel.

References

  1. Microsoft IoT
  2. Raspberry Pi Org

In the next article, we would talk about Breadboard and make our first circuit.

Hope this helps. Please leave your comments and feedback.

Happy learning! Happy making!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
United States United States
Husband, Father, TheWorkingProgrammer

Comments and Discussions

 
QuestionGreat awaiting the rest :) Pin
joer004-Nov-16 3:43
joer004-Nov-16 3:43 
AnswerRe: Great awaiting the rest :) Pin
Hussain Patel4-Nov-16 5:23
professionalHussain Patel4-Nov-16 5:23 
PraiseRaspberry Pi Pin
sikandar Ali3-Nov-16 0:27
sikandar Ali3-Nov-16 0:27 
GeneralRe: Raspberry Pi Pin
Hussain Patel3-Nov-16 1:50
professionalHussain Patel3-Nov-16 1:50 
GeneralEagerly awaiting third instalment Pin
Member 121315162-Nov-16 23:14
Member 121315162-Nov-16 23:14 
GeneralRe: Eagerly awaiting third instalment Pin
Hussain Patel3-Nov-16 1:51
professionalHussain Patel3-Nov-16 1:51 
SuggestionImages Pin
JosepLluis2-Nov-16 7:20
JosepLluis2-Nov-16 7:20 
GeneralRe: Images Pin
Hussain Patel2-Nov-16 10:08
professionalHussain Patel2-Nov-16 10:08 
GeneralRe: Images Pin
Nelek6-Nov-16 21:06
protectorNelek6-Nov-16 21:06 
GeneralRe: Images Pin
Nelek6-Nov-16 21:06
protectorNelek6-Nov-16 21:06 
GeneralRe: Images Pin
Jochen Arndt7-Nov-16 3:44
professionalJochen Arndt7-Nov-16 3:44 
Please don't suggest to host images externally. Images should be hosted at CP.

It is not a CP problem. The images should be ideally generated using an image processing application or at least scaled properly (they are actually scaled by using non-proportional width/height values). I have noted this already during the approval process.

BTW: Countered the downvote of your post.
GeneralRe: Images Pin
Hussain Patel7-Nov-16 5:20
professionalHussain Patel7-Nov-16 5:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.