314 (or so) Awesome Raspberry Pi Resources on Pi Day

I combed through my bookmarks, scoured links from old posts, and finally just started looking... everywhere. I discovered a lot of new people to follow, new material to read, and new projects to try out. I'll have no shortage of things to do and try out on the Pi now, and neither will you!

314 (or so) Awesome Raspberry Pi Resources on Pi Day

Update (May 19): The up-to-date version of this list is available on GitHub. Check it out, especially if you'd like to suggest additions or fixes.

I got this crazy idea a couple weeks ago to see if I could come up with 314 awesome <people, companies, projects, books, etc> for learning about and building with the Raspberry Pi. I mean, any search on Google turns up 314 million results, so surely I could come up with the best of the best right?

I combed through my bookmarks, scoured links from old posts, and finally just started looking... everywhere. I discovered a lot of new people to follow, new material to read, and new projects to try out. I'll have no shortage of things to do and try out on the Pi now, and neither will you!

In honor of Pi day, here are 314 (or so) awesome people/places/things/events/etc.

Getting Started

If you're brand new to the world of the Raspberry Pi, you might wonder what the heck it is and what you can do with it. Let's start at the start.

There are quite a few models at this point, but the latest and greatest are:

If you want to compare the various models, here are a couple charts:

Once you decide to make the investment, you'll need to figure out what to buy - and there is a lot you can do with and buy for the Pi. I'd stick with the basics at first - get used to navigating around the Pi, and get familiar with GPIO pins, connecting LEDs, and using resistors.

You might consider buying a kit if your budget allows it. I've personally bought kits from Vilros and CanaKit and had no problems with either, but there are others too - check out the stores below. Kits generally provide everything you need to get up and running - the bare-bones Pi doesn't even come with an adapter! Or you could use the list in one of the product's descriptions and source each part separately.

Operating Systems

You'll need to install an operating system before you can do anything else. If you purchase a kit, check the description - they might preinstall NOOBS on the SD card for you. NOOBS is a program that helps you install and switch between multiple OS's, and generally makes life easier when you're starting out.

There are plenty of other operating systems available too, some of which have a specific purpose like streaming media, but starting out you'll probably want to stick with Raspbian.

Scratch

Raspbian comes with Scratch, a program developed at MIT that lets you drag-and-drop blocks representing different coding constructs, and then "run" them to see the effect on cartoon characters that move around the screen. It's a decent intro to programming concepts, without getting all bogged down in a particular language's syntax.

After you get comfortable with Scratch, here's some other stuff to check out:

You can even use it to control the GPIO pins, when you're using it on the Pi.

It's also worth noting that there's an offshoot of Scratch called Snap! that was developed by Berkeley. Their version expands upon Scratch, and is geared more towards adults.

Python

Raspbian (like any Linux OS) supports pretty much any language, but Python has become the defacto language for the Raspberry Pi, and most of the tutorials you come across will use it.

A quick side note. You'll see some examples in Python 2 and others in Python 3. Usually, when a language is updated, the new version is backwards compatible. Python 3 is not.

Here's my two cents. If you need to support a Python 2 project, or have an idea that depends on legacy Python 2 libraries, then consider the older version. But if you're just learning, like for the Pi, then go with Python 3.

Coding with the IDLE

Python is installed by default on the Pi, but you'll need an environment to type code in. The first option is the Python IDLE (integrated development learning environment), a built-in editor that you get with Python (check under the Programming menu inside Raspbian).

Coding Online

You might consider these online editors for experimenting, although you'd need to copy the code onto your Pi to run it when you're ready to try it out.

Coding with IDEs

Here are some full-blown IDEs. An IDE is typically a full environment for programming in a language, keeping your project's files together, providing a compiler and debugger, hopefully some intellisense for helping with syntax, etc. They're typically more resource-intensive though, so running directly on the Pi is probably not an option.

  • PyCharm - will probably run directly on a Pi, but it'll be slow
  • NINJA-IDE - haven't tried it, but looks promising
  • spyder - it's an option... doesn't look as user friendly to setup, but I've never tried it
  • Thonny IDE - apparently made for Raspbian, so will probably perform better on the Pi

Mocking GPIO Pins

If your project requires access to the GPIO pins, but you're coding away from the Pi, you won't be able to run your code unless you can mock out the pins. I wrote a Python module for that purpose, which you might find helpful.

Python Tutorials

Beginning Python Programming (Raspberry Pi Week 7 – Day 2)
Part of a larger couse from Suntimebox, this post covers the basics of Python. If you end up liking it, week 8 of their course covers Python in more depth.

Getting Started with GUIs
All of my Python modules up to this point have been command-line driven, but eventually you may want to create a nice GUI for someone to interact with your code.

Learn Python - Free Interactive Python Tutorial
An extensive tutorial, with code samples written in Python 3. They even have a Facebook group for community support.

Python for Everybody
A website dedicated to learning Python, from installing it, to learning it step-by-step. Created by Charles Severance.

Python For Beginners
From the official Python site, links to what you need to install, and where you can learn more.

Python Usage Documentation
From the Raspberry Pi Foundation, a brief intro to Python and the IDLE.

Python Tutorial for Beginners: Learn Programming Basics
A collection of beginner and intermediate tutorials covering a variety of concepts.

Python MOOCs (free online classes)

There's a whole lot of MOOCs for learning Python too (What's a MOOC?), some with start dates (mostly if an actual instructor will be available) but most you can join whenever and take at your own pace. A few of these might not sound beginner level, but the syllabi and reviews indicated they were.

If you get hooked on Python, consider following these enthusiasts (aka Pythonistas) on Twitter:

Tutorials

So you've got a little Python under your belt, or you're gonna skip it for now and learn as you go - what next? There are so many Pi tutorials available out there - here are just a few. I tried to split them up a bit, listing ones I thought were more "beginner" first, but it doesn't mean much since what's "beginner" for one person may be "advanced" for another.

Beginner

Circuit Basics - Raspberry Pi
Some nice guides for connecting various sensors and configuring accessories.

Conquer the Command Line
A special edition of The MagPi written by Richard Smedley, covering how to read and write text files, install software, and more.

How to take screenshots on the Raspberry Pi
You might want to share an image of something you've done, or an error you're getting. It's handy to know how to capture the screen when you need to.

Introduction to the Raspberry Pi
A nice page and couple of videos on getting started with the Pi, created by Harrison Kinsley. And there's no question he knows his way around Python, the defacto programming language for the Pi.

Raspberry Pi - The Unofficial Tutorial
Wow. Christian Cawley of MakeUseOf wrote a phenomenal article covering the Pi from top to bottom. A great place to get up to speed on the Pi.

RaspberryPi.org Projects
A couple hundred projects from the Raspberry Pi Foundation, broken down nicely into clearly-defined steps.

Raspberry Pi Workshop for Beginners
A collection of 30 videos introducing various topics, from NOOBS to Python to connecting peripherals.

The Raspberry Pi Platform and Python Programming for the Raspberry Pi
Taught by Ian Harris of the University of California, Irvine, this free course introduces the Pi, getting it setup, and getting started with Python.

Even More

Adafruit
You'll see Adafruit on this list a few times, for different reasons. They're a super active company, selling electronics and kits, and providing free tutorials.

Building a Raspberry Pi Baby Monitor
Hey, why not? There are lots of parents out there, and baby monitors can be expensive, especially with a video feed. Learn how to create one with a Pi that's accessible anywhere on your intranet.

Hackster.io
If you're looking for inspiration, it's probably here. They have hundreds (thousands?) of DIY projects, and you can filter by difficulty, product, etc.

Instructables
Lots of random projects from lots of random people. If you're looking for inspiration, you should be able find something here!

Interfacing with the Raspberry Pi
Another course by Ian Harris of the University of California, Irvine, this one is more advanced than the previously mentioned intro. It covers interfacing the Pi with various sensors and other electronics.

Pi My Life Up
Guides for common tasks you might find yourself tackling, like these:

Raspberry Pi Spy
Dozens of helpful tutorials, many showing how to interface with various hardware:

Reboot or shut down your Raspberry Pi using an Amazon Dash Button
Zach shows how to hack an Amazon Dash button in order to power down your Pi.

Solar Powered, Remote Controlled, Smart Garden
James Thomas wrote about using solar power to run a Pi that monitored a garden. I find it easier to figure out how to do something if I have a good why... and this seems like a fun project to tackle.

Teaching Physical Computing with Raspberry Pi and Python
James Robinson, of the Raspberry Pi Foundation and Picademy, created a course for interacting with the physical environment through sensors and electronics.

The MagPi Tutorials
The MagPi is an online magazine, covered in the next section below. They also provide a series of tutorials for different projects. They're not exactly starter tutorials (IMO), but they seem to be broken down nicely into steps, often including breadboard designs and the code to run.

The PiHut
Roughly 40 tutorials on configuring the Pi and assembling various accessories.

SparkFun
You'll have to do a little digging since their tutorials cover a wide range of topics, but there are a fair amount specific to the Pi.

Tinkernut
Some cool Pi project ideas, laid out nicely and with the required parts all listed upfront, many with prices so you can get an idea of how expensive a project might be.

52 Weeks of Pi
Full disclosure, this one's mine. And it's pretty embarrassing I didn't even make it to double digits. But there are a few things in there for you to try out, and I was diligent about including diagrams, photos, and all the code you'd need to get the projects to work.

YouTube

Lots of cool stuff on YouTube too, if you're looking for even more ideas. Here are some nice channels.

ExplainingComputers (Raspberry Pi 3)
A series of videos taking the Pi 3 out for a spin, from comparing it to the Pi 2, to talking about how to overclock it and multiboot with BerryBoot.

ExplainingComputers (Raspberry Pi)
A series of videos regarding the Pi. Some of the same videos as the previous playlist but not all, plus more about multiple versions of the Pi.

Gaven MacDonald
Gaven hasn't posted any new videos in awhile, but the videos that are there could be really helpful. As I said, figuring out how to use some of the sensors and various electronics with the Pi is tricky, and most of Gaven's videos deal with just that.

Newman Solutions
At least 80 videos covering a wide array of things you can try with the Pi. They seem nicely done, but personally I'd prefer a voiceover explaining what I'm watching over the music playing in each video.

Pi My Life Up
Dozens of videos about different projects you can try out with the Pi, including motion and temperature sensors, minecraft and plex servers, creating a photo frame, and more.

RaspberryPi
Official channel of the Raspberry Pi, you'll find general tutorials for the Pi and related technologies like Scratch and the Astro Pi mission involving the ISS.

Raspberry Pi IV Beginners
The videos on using various sensors should prove helpful. The Pi can work with a lot of sensors and accessories with a little bit of extra setup (like I did with an analog joystick), but you'll often find that sensors come with little or no instructions on how to use them.

RasPi.TV
Alex Eames has posted well over a hundred videos, some giving basic overviews of the Pi and related technologies, while others are more advanced like using a RasPiO Duino board to monitor his central heating system with the Pi.

Tech Erudio
A nice set of videos to get you up and running with the Pi, from setup to lighting an LED.

The MagPi
Tutorials and reviews of Pi-related technologies.

TheRaspberryPiGuy
Matt posts a lot of general tutorials and informational videos.

Other Languages

I mentioned earlier that Python is the most common language used on the Pi, but that it also supports many other languages. Here are some tutorials for other languages supported on the Pi.

C

Beginning C Programming (Raspberry Pi Week 7 – Day 3)
Part of a comprehensive course from Suntimebox, covering C programming on the Pi.

Learn C Essentials - The MagPi Magazine
A special edition of The MagPi, dedicated to programming in C on the Raspberry Pi.

C#, C++, Visual Basic (UWP Apps)

Getting started (with UWP): Choosing a programming language
The previous page uses C# for its examples, but when you're using Visual Studio you should be able to choose from at least C++, Visual Basic, and JavaScript too. Contains code samples and links to further reading, if you're interested in another language.

How To Create Custom GUI Apps For Raspberry Pi Using Visual Studio
And for those who prefer videos, here's a nice short video demonstrating creating a basic GUI in Visual Studio, then copying it to and running it on the Raspberry Pi (with the help of Mono).

Internet of Things - Working with Raspberry Pi and Windows 10 - Bruno Sonnino, MSDN
A thorough guide to getting Windows 10 IoT Core installed, and developing UWP (Universal Windows Platform) apps remotely for your Pi. Visual Studio is probably too intensive to run on the Pi itself.

The IoT Journey : Getting Started with the Raspberry Pi 3 - Ted Malone, MSDN
If you'd like to develop apps for Raspbian instead of Windows 10 IoT Core, here's a detailed walkthrough on using the Mono framework to develop cross-platform apps in C#. Again, it assumes Visual Studio on a separate machine. Mono supports a ton of languages, but if you use VS you'll be restricted to what VS supports.

C++

Beginning C++ Programming (Raspberry Pi Week 7 – Day 4)
A nice introduction to programming C++ on the Raspberry Pi. This is actually part of a larger, very comprehensive and completely free course.

How to code in C++ on my Raspberry Pi?
Just a thread from the SE network, asking how to code in C++ on the Pi, with a few tips on what to use.

Learn to Program Using C++ on the Raspberry Pi: An Easy Introduction to Programming for Beginners Using Linux and GNU C++
A nice-looking book for learning C++ on the Pi. The reviews are all positive.

Use C++ on a Raspberry Pi 3
Another thread from the SE network, with a few suggestions on what to use to develop C++ on the Pi.

Go / GoLang

That's actually just one language, but the two names seem to be used interchangeably.

Cross Compiling Golang Applications For Use On A Raspberry Pi
A very brief tutorial on how to compile your GoLang app in such a way that you can upload it to the Pi and run it.

Gobot - Golang framework for robotics, drones, and the IoT
If you're into Go, then maybe you'll want to check out Gobot, a framework for using Go to control robotics and other devices. They have instructions for the Pi.

Golang and Docker 1.13 on your Raspberry Pi
Covers a few different ways to get access to GoLang on the Pi.

Java

BlueJ IDE
A Java IDE that runs on the Pi. It uses the Pi4J library to give you access to the GPIO pins as well.

Efficient Java Development for the Raspberry Pi
Learn how to use Java on the Pi, via NetBeans running on another machine - probably because it's too intensive to run directly, even on a Pi 3. Looks very thorough, but be aware that NetBeans is moving from Oracle to Apache, and development on it is frozen, so it might be awhile before it supports the latest/greatest Java 9. Not an issue unless you need to use something from Java 9.

Greenfoot
A development environment that mixes characters you can move around (similar to Scratch) with the ability to use actual Java code to do it. Seems like it might be a good way to introduce programming to kids. There's a Debian (and hence Raspbian) installer on the downloads page. Not sure if it can access the GPIO pins directly like BlueJ (see above) can.

IoT Applications With Java and Raspberry Pi
The interesting stuff is on page 3, but you probably want to at least glance at the first two as well.

Java Programming on Raspberry Pi
A 2-hour series of videos by Daniel Ross, demonstrating the use of Java on the Pi.

LEDs on Raspberry Pi GPIO with Java Pi4J - Start to Finish
Using Java on the Pi to light an LED.

Raspberry Pi with Java: Programming the Internet of Things (IoT)
Looking at the reviews, it seems this is not a beginner's book in Java, but it is a good book for learning to accomplish things on the Pi with Java.

PHP

Installing PHP (Raspberry Pi Course Week 6 – Day 4)
Part of the a comprehensive course on the Pi at Suntimebox.com. This one's a brief intro to using PHP.

Programming PHP (Raspberry Pi Course Week 6 – Day 5)
Same as above. ;)

Stores

Many of your projects, including some of the ones above, are going to require accessories and peripherals. You might even want to tackle a robotics kit. Fortunately, there are a lot of places to shop, and odds are good you'll find what you're looking for.

Blogs / Magazines / Ezines

Once you really get going, you'll want to stay updated on new stuff going with Pi, or goings on in the Pi community, or just new projects to try. Here are some great blogs and magazines to check out.

Adafruit
In addition to selling kits, Adafruit provides a lot of helpful blog posts, and even shares blog posts and resources from around the web.

Christian Cawley, MakeUseOf.com
He writes a lot of tech-related articles (like, 1000+ a lot), a fair amount of which concern the Raspberry Pi. Dig around for some gems, like this one on creating DIY lego cases.

Electronics Weekly
Specializing in news about electronics (surprising, I know), Electronics Weekly provides news regarding the Pi and its related hardware, as well as the Raspberry Pi Foundation and other companies involved in Pi development.

Hackaday
Interesting articles about projects from around the web, including quite a few involving the Raspberry Pi.

Les @ Bigl.es
Les writes extensively about the Pi, on his site and elsewhere. He showcases some pretty creative projects, like this Harry Potter frame.

Pi Supply
Posts are few and far between, but Pi Supply occasionally announces the release of new hardware.

Raspberry Pi Pod
Various walkthroughs and tutorials for the Pi, from Mike Horne.

Raspberry Pi Starter Kits
They frequently post tutorials and other interesting news regarding the Pi.

SparkFun
SparkFun has an active blog, including some posts specific to new developments in Pi-related hardware.

The MagPi Magazine
The MagPi is an amazing resource for projects and other information. They publish on a monthly basis, and although you can pay to support them, the magazines are available for free. There are one-off special issues too, like the two that each have 200 pages of projects, and others that focus on specific tech like using cameras with the Pi.

The PiHut
Lots of "roundup" style blog posts, showcasing some cool Pi-related projects that people are working on from all over the community.

The Polyglot Programmer
Various articles covering an assortment of Pi-related topics.

Contests / Events

Ready to show off a bit? Or learn from what others are doing? Here are some events.

Adafruit Blog - Contests
Adafruit has a very active blog, and sometimes they post upcoming contests. Granted, looking at the older posts it's been a couple years since they posted contests regarding the Raspberry Pi, but it wouldn't hurt to keep an eye on them from time to time.

element14
They have challenges from time to time that focus a certain topic like "safe wearables", "upcycling", and using the Pi to improve the kitchen experience. I found these contests after stumbling on a project involving monitoring oven temperature.

PA Consulting's Raspberry Pi Competition
Only open to the UK. They pick a theme each year, then select a few winners to receive generous monetary prizes. You'll have to wait until next year though, since as of this writing registration closed about a week ago.

Pi Wars
A two-day Raspberry Pi robotics competition held in Cambridge, UK. They accept up to 76 teams from anywhere in the world. I love that they emphasize "non-destructive challenges" ... don't expect any Real Steel action when they hold the next competition in April.

PyCon
A week long conference on everything Python (default language of the Pi and all). I know conferences are tough to get to depending on location, but this one is in my backyard so I had to toss it out. If you decide to check it out, it's a relatively safe bet that by May we'll have warm weather... or at least, a minimal chance of frost.

Raspberry Jam
Community events held around the world, which focus on the Raspberry Pi. The Pi Foundation even put together a comprehensive guidebook for starting your own jam, packed with nearly 70 pages of advice.

Software

Here are some software projects, either to run on the Pi or to support your Pi development.

BerryBoot
If you're going to use multiple OS's for different projects at the same time, I'd just invest in several SD cards - they're cheap enough. However, if you're short on SD cards, or have a few with tons of space, or you've tried NOOBS and are unhappy with it, check out BerryBoot. Whereas NOOBS allows you to easily install multiple OS's and choose between them, changing your decision later on means wiping them all out and reinstalling your new selections - BerryBoot (as I understand it) allows you to have multiple OS's, switch between them, and change which OS's are loaded. However, I'm not sure it's as beginner-friendly as NOOBS.

DietPi
An OS optimized for minimal space, CPU and RAM requirements.

Edublocks
A tool for transitioning from drag-n-drop interfaces like Scratch to actually programming in Python. You can drag elements of Python3 onto a board, similar to Scratch, but then view the actual Python code and even download it.

Fritzing
A free program for creating circuit diagrams. I find this tool extremely helpful in documenting and sharing layouts, like when I wired up an analog joystick and created my simon clone.

Hass.io
If you're into home automation, here's an app written for the Pi that can help you out.

Jasper
An open source platform for designing voice-controlled apps, Jasper was made to run on a Raspberry Pi. The possibilities for this are pretty awesome.

Mopidy
This just sounds awesome. Mopidy lets you stream music from a Raspberry Pi, from disk but also other sources like Spotify and Google Play Music.

OctoPi
OctoPi brings OctoPrint to the Raspberry Pi, OctoPrint being a program that provides a web interface for controlling a 3D printer. Created by Gina Häußge.

openHAB
Another home automation tool. Check out their openHABian image, which lets your Raspberry Pi centralize all your home automation tasks.

PiBakery
I haven't tried it, but this is such a cool idea. It can take awhile to get the Pi setup the way you need, depending on the project you're tackling. PiBakery gives you a Scratch-like interface for creating a script that'll automate the process, and then you can export and share it - maybe with a class or code club, or to upload and make it part of a tutorial. Very cool! Created by David Ferguson.

Pi Cart: a Raspberry Pi Retro Gaming Rig in an NES Cartridge
This is so cool looking, I want to stop writing and go try it right now. Zach makes a single NES cartridge that houses 2400 games, and runs them on an emulator.

Pi-hole
Sick of ads? How many of us have ad blockers on Chrome, Firefox, tablets and phones, etc? Install Pi-hole on a Raspberry Pi and set it up so your router funnels all your network traffic through it, and it'll filter the ads out before they get to your devices.

PiNet
Allows a group of people running Pis (say, a classroom or coding club) to setup one machine to act as the centralized location for user accounts and file storage. It's a neat idea, since that one machine could easily be backed up, instead of needing to keep track of dozens of fragile (and easily losable) SD cards. Created by Andrew Mulholland.

PiVPN
Configure your Pi with a VPN client, to give you secure and private connectivity to the Internet.

RetroPie
Turns your Pi into a retro gaming machine, capable of playing old arcade and console games.

Screenly
Turns your Pi into a media server, serving up video and images to other devices in your household.

Sonic Pi
Sonic Pi is the creation of Sam Aaron, and it allows you to actual program sounds and create music! It's a really cool app. I used it a couple times back in 2016, first to mimic a grandfather clock, and then to create a simon clone. Sam even wrote a special issue of The MagPi called Code Music with Sonic Pi. If you happen to see Scott Fradkin appear as a speaker anywhere, I learned of Sonic Pi during his livecoding session at Stirtrek a couple years ago, and it was an excellent session.

Things Gateway
Mozilla has designed an app that allows you to control all your IOT devices from a single interface running on a Pi, instead of using each device's individual web interface. Here's a full walkthrough.

Volumio
Turn your Raspberry Pi into an audio player that can stream all your music. Similar options include OSMC, OpenELEC, and Pi MusicBox.

Webfoot Games
A slew of retro arcade-style and card games they made available to the Pi, available for free!

Xbian
In their own words, "XBian is a small, fast and lightweight media center distribution for the Raspberry Pi."

YoYo Games
A few free games for the Pi, including "They need to be fed", "Super crate box", and "Maldita Castilla".

Hardware

There's some really amazing hardware out there that enhances and extends the functionality of the Pi, usually by interfacing through its GPIO pins.

JustBoom
An amplifier for your Pi.. if you're playing music with it and need an extra kick, I guess!

Flick
Tracks movement and gestures. This could have some pretty neat uses. Wonder if this is the same kinda tech they use in those magic wands in the Harry Potter World in Orlando?

Kano Computer Kit
Cute kits. Everything you need to build your own laptop out of a Pi.

Pibrella
A HAT that sits on your Pi, providing 3 lights, a button, and a speaker - no wiring necessary.

Pi-Car
This looks like a nice kit, and not too expensive either. It comes with everything to let you put together a remote-controlled car controlled by your Pi.

PiJuice
There's a lot you can do with the Pi, as long as the cord reaches! The PiJuice is an accessory that sits on top of the Pi like any other HAT, providing portable power for hours. Plus it is apparently capable of recharging using wind and thermoelectric plates to extend the runtime indefinitely.

Raspberry Shake
Turn your Pi into a seismograph! They're active on Facebook if you're into that.

Strato Pi
These little units extend the Pi to for commercial applications, such as power surge protection, UPS features (in case of main power loss), a hardware watchdog to monitor the Pi's health to alert the user of issues, etc.

Using Hot Wires / Snap Circuits with Raspberry Pi
I'm a huge fan of Snap Circuits, so I had to slip this in somewhere. It shows how Snap Circuits can be connected to a Pi. If you try this, you'll want to grab some Snap-to-Pin Connectors to connect your Snap Circuits set to a breadboard.

Robotics

I for one welcome our eventual Raspberry Pi overlords. Here are some hardware kits and related articles that are specific to robotics.

CamJam EduKit #3 - Robotics
Pretty much everything you need to create your first Pi robot.

GoPiGo
Some impressive robotics kits. You can read more about them at The MagPi.

Raspberry Pi Robotics
A series of videos showing how to use the GPIO pins, first to control some LEDs, then moving to robots.

Top 5 RaspberryPi Robot Projects
A 10 minute video with some interesting robots, if you're looking for inspiration.

Social Media

I'm more present on Twitter than Facebook, but I'll try to represent both. I tried to focus on organizations and individuals who post mostly about technology, especially (of course!) the Pi.

Twitter

Facebook

Pinterest

Educational Resources

What's the fun in learning something if you can't turn around and teach it to someone else? Here are some educational resources to help along the way.

Adafruit + Educators
Adafruit is a popular supplier, and offers discounts and other promotions to educators, so if you're planning something for a large group maybe you can save a few bucks.

Adventures in Raspberry Pi
A well-rated book, by author Carrie Anne Philbin, focused on the development side of the Pi.

CamJam EduKit
At only £5 (or $7), this minimal set looks perfect for teaching classes or hosting clubs. For a few bucks more, they sell a sensor kit that comes with a couple of sensors instead of a button.

Hello World
A free magazine published by the Raspberry Pi Foundation several times a year, Hello World focuses on the educational opportunities provided by the Pi. Looks like a good resource for anyone who finds themselves in a teaching role. (read more)

Picademy
The "Raspberry Pi Foundation's free face-to-face professional development programme", Picademy is for anyone in an education-related field. At the end of the program, you could become a Raspberry Pi Certified Educator as well.

Pi Supply kits
Some of the products they sell are geared towards educational purposes, and marked accordingly, like the junior science and experimentation kit and BBC micro:bit (a HAT with buttons and LEDs built-in).

Raspberry Pi Foundation
The Raspberry Pi Foundation also provides a lot of material to assist in ongoing education, including:

The MagPi Educator's Edition
There are some special editions of The MagPi, including a couple "educator edition" issues:

Electronics Fundamentals

Some of the electronics you'll use to extend the Pi are surprisingly fragile, so it's good to have a basic understanding of them. Here are some tutorials covering the more common electronics you'll encounter - diodes, resistors, capacitors, buttons, etc.

A simple guide to electronic components - bigclivedotcom, YouTube
An illustration of how various electronic components like capacitors and resistors work.

Basic Electricity - Resistance and Ohm's law - Afrotechmods, YouTube

Basic Electronics Tutorials
Links to well over a hundred tutorials covering various electrical components, like capacitors and resistors.

Capacitors - SparkFun
A nice illustration of capacitors from SparkFun.

Capacitors - Chris Woodford, ExplainThatStuff!
An overview of how capacitors function, their various uses, and how they even occur in nature.

Choosing the Resistor to Use With LEDs: 3 Steps
Covers a few ways to calculate the correct resistor to protect your LEDs. It's a 10 year old article but the still applies. It even links to a couple of calculators you can use to make your life easier, and amazingly they're both still active.

Connecting a Push Switch
A walkthrough you can follow to practice using a button. There's a diagram of a button in there that's actually quite helpful in visualizing how it works.

Current Limiting Resistor
A brief overview of resistors, including how to calculate which one you need - a very handy calculation to have once you start designing your own circuits.

Diodes - SparkFun
They have a series of tutorials on different components. Here's one that covers diodes.

Diodes and LEDs - Chris Woodford, ExplainThatStuff!
An overview of how diodes and LEDs function and their various uses. An interesting fact about LEDs is that current only flows in one direction, which can be taken advantage of in a technique called charlieplexing.

Introduction to Electronics - Drs. Ferri and Robinson, Jr of Georgia Tech
An introduction to the basic components of electronics, including diodes, transistors, and op amps. Haven't taken it, but the reviews look generally positive.

Picking Resistors for LEDs
A comprehensive overview of resistors, and how to pick the right one for your project.

Push Button with Raspberry Pi - Hardik Rathod, Hackster.io
A nice demo of how to use a simple button, with several diagrams, a video, and the accompanying Python code - everything you need to try it yourself.

Resistors - SparkFun
An illustration of resistors from SparkFun.

Resistors - Chris Woodford, ExplainThatStuff!
An overview of how resistors function, their various uses, and how to pick the right one based on the colors of the stripes on their sides.

Simple Button Input with the Raspberry Pi - Gaven MacDonald, YouTube
A good illustration of what pullup and pulldown resistors are, and why you may need them in your circuit. Covers using an external resistor as well as the Pi's internal resistors.

Transistors - SparkFun
A tutorial on transistors, with links to further resources. Parts like these often come in electronics kits if you buy one; unfortunately, they frequently contain little documentation.

Using PullUp and PullDown Resistors on the Raspberry Pi
This one's mine. One of the first times I messed around with resistors I saw some unexpected behavior, and a little research led me to the concepts of pullup and pulldown resistors, so I wrote about it.

What is a Circuit? - SparkFun
Yet another SparkFun tutorial, this one covers the basics of what a circuit is. Understanding circuits is a prerequisite to doing pretty much anything else with the Pi's GPIO pins.

Reference Guides / Help

Just some random reference pages, places to get more help, and cheat sheets that might be handy to print and keep nearby.

Linux Commands Cheatsheet
As you do more with the Pi and find yourself using the command line, a good cheat sheet will help you remember all those pesky Linux commands. ;)

Linux Commands Cheat Sheet: A Great Beginners Guide
Another cheat sheet / brief overview of the more common Linux commands, from Pi My Life Up.

Pibrella Commands (pdf)
A handy cheat sheet for the Pibrella HAT. (from TeCoEd)

Raspberry Pi Cheat Sheet (pdf)
A handy cheat sheet for the Pi. (from TeCoEd)

Raspberry Pi Pinout
An interactive guide for the Raspberry Pi, it tells you what each GPIO pin does and a little bit about them. Includes guides for dozens of other accessories too, such as the Sense HAT used in the Astro Pi mission.

Raspberry Pi Commands Cheat Sheet (Raspberry Pi Starter Kits)
A couple pages of Pi commands, which you'd run from the command line.

Raspberry Pi @ StackExchange
Amongst the 170+ sites making up the StackExchange network, there's one dedicated solely to the Raspberry Pi. You can ask questions and get answers (and eventually, provide answers!) from other enthusiasts and experts.

Sonic Pi Cheat Sheet (pdf)
A handy cheat sheet for Sonic Pi. (from TeCoEd)

TeCoEd - Rapspberry Pi
Lots of resources, cheat sheets, and tutorials for using the Pi and related technologies (like Python and Sonic Pi).

The MagPi Troubleshooting Special
Issue 60 of the MagPi was dedicated to solving problems on the Raspberry Pi.

42 of the Most Useful Raspberry Pi Commands
A list of commands you'll find handy while navigating around the Debian OS on your Pi.

Books

For those of us who prefer reading, some books. I specifically looked for those with good ratings, and whose reviews weren't robo-reviews (i.e. 15 five-star reviews in a 1-week period)... although I'd encourage you to read the reviews as well. If nothing else, they remind us that what one person finds easy, another person finds hard.

Be aware that as these books age (even 2-3 years), you're likely to run into snags like having a newer version of the Pi than the author, or software that's been updated and changed. Same thing could happen with any decent online tutorial though.

Interfacing with Arduino

This is outside my wheelhouse, since I don't have an Arduino; but it's a popular microcontroller and you might be interested in connecting it to a Raspberry Pi for certain projects.

A List of Lists

If this list isn't enough list for you... have more lists!

Programming Guide For Video-Gamers
Would you like to write your own games someday? Here's a list of resources, on how games are created, and on what a career in game development is like. (Thanks to Dylan and the Denver G.A.T.E. Coalition for sending this one in!)

Raspberry Pi Awesome List
A curated list on GitHub to check out after this one! It's not mine, and I deliberately didn't look at it so it wouldn't influence what I included here. No doubt there's some overlap, but (I hope) a whole lot of additional value too.

Raspberry Pi: Top 31 projects to try yourself
A list of 31 more projects involving the Pi to check out. In case you need more. :)

RPi Tutorials @ elinux.org
There's so much going on here I don't even know what to make of it. Tons of links to tutorials, guides, projects, etc. It's hard to tell how much of it might be outdated, but there could be some real gems in there.

101+ Raspberry Pi Projects For Electronics Students
Links to tons of (well, 101 I suppose) other projects, with a brief summary of each.

Pi Day

And last but not least, some fun Pi facts and Pi Day activities!

A Brief History of Pi
I had no idea the concept of Pi goes back millenia. Exploratorium shares this and other interesting facts in its brief history of Pi.

Find Your Pi Day
Enter your birth date (or any date.. or any number for that matter) and it'll find it in Pi and display it back to you. Check it out.. it's neater than I'm making it sound. Read more about how they did it.

Huge list of FREE Pi Day Activities for All Ages
Bethany, aka Math Geek Mama, shares some literature and a long list of links to other Pi-related activities she's collected from around the web.

Lesson Plans and Other Activities for Pi Day
In Education World, Gary Hopkins shares his own long list of links to activities from around the web, as well as lesson plans.

Numbers of Pi
Exploratorium shares the first million digits... just be patient as the page renders. 😬

TeachPi.org Activities
More activities! In case all of the above didn't float your boat.

What are your resources?

Do you have any favorite Raspberry Pi resources? Would you mind sharing them below? I'm always looking for something else that makes creating with the Raspberry Pi easier or more interesting, and I'm sure lots of other people feel the same way. Thanks!

Happy Pi Day!

cake-92597_1280