Skip to content

Raspberry Pi GPIO

Jamie Bainbridge edited this page Aug 23, 2016 · 2 revisions

GPIO Introduction

General Purpose Input Output is a feature of the Raspberry Pi which lets you interact with real-world components like LEDs, switches, sensors, motors, and much more.

The GPIO pins are:

Start with this Adafruit learning series: https://learn.adafruit.com/series/learn-raspberry-pi

Project Ideas

There are many project ideas linked in the sidebar of r/raspberry_pi.

Here is a rough progression of things a beginner could try:

  • Blink an LED
  • Make a row of LEDs follow back and forward like Night Rider
  • Read some data from the real world like a temperature/humidity sensor
  • Make something happen when you press a button
  • Detect movement/objects with a PIR or ultrasonic sensor

Component Kits

You can get many cheap kits of parts off eBay/Amazon but they tend to just be random things thrown in together. Once you start doing a particular project, you often find the kit doesn't have the part you need and you end up having to buy stuff from the electronics store.

The best kits are the ones that come with a book, and the kit lets you do everything described in the book, but those are also the most expensive ones.

A good kit will have a breadboard, DuPont wires, some LEDs, a large collection of resistors of at least a dozen resistances, and a variety of modules with breadboard spacing.

Power Requirements and Arduino Compatibility

The Pi uses 3.3V TTL. Many components, including those intended for Arduino, use 5V TTL. If you feed your Raspberry Pi 5V TTL you will fry it, so learning to make a voltage divider circuit and use a level shifter IC should be on your todo list. You'll almost certainly need these as you progress onto a wider range of projects:

As a rule of thumb, if a component needs 5V power, it probably supplies 5V TTL.

Don't power anything requiring more than 16mA off the GPIO pins, and don't power anything requiring more than 50mA off the 3.3V GPIO pin. The 5V GPIO pins come thru from the power supply, limits are discussed more on the Raspberry Pi Power page. If you're doing motors keep this in mind, those can draw over 200mA under load.

Education and Research

As you might have picked up, Adafruit and Sparkfun are good places to start learning about components and concepts:

If you have a particular sensor you wish to use, search Google for the part number and "raspberry pi". This will often provide tutorials and Python libraries, so you can get up and running using your component as quickly as possible.

For example, if we want to use a DS1307 Real Time Clock, search for DS1307 raspberry pi.

If you are using Python, you should also search the Python Package Index at https://pypi.python.org/ or by using pip search partnumber on the commandline, there may be a library in there too.

If you cannot find a pre-existing library, then look up the manufacturer's page for the component and get the Data Sheet. This wil explain how to interface with the component, though it's not always easy to figure out, and is probably a task for advanced users.

Further Reading

About

This is a wiki of useful advice I commonly give or have seen on places like StackExchange and Reddit. Sometimes I will link directly to useful posts, sometimes I will make a page on here and curate content.

License

Unless otherwise noted per-page, all information here is provided under Creative Commons - Attribution - Share Alike. Anyone can steal this stuff, but you must give credit and you must provide others the same rights.

Money

If you wish to give a financial thanks for any advice, please do not send me anything. Instead, make a donation to an animal rescue charity or environmental charity in your area.

Clone this wiki locally