Quick Links

The Raspberry Pi makes a nice compact platform to attach an indicator light to for all sorts of projects---weather notification, new emails, etc. Read on as we show you how to hook up an LED module to your Pi and set up some basic notifications.

Why Do I Want to Do This?

Because it's fun. Unlike many of our tutorials where we include a little blurb at the top outlining exactly what benefit you'll derive from the project, the blurb is pretty short in this case because the benefit is simply having fun.

The Raspberry Pi is a perfect device to play around with, experiment with electronics, and learn some programming. Nobody needs an ambient rain indicator in their kitchen, for example, but building one is a fun exercise and a great reminder to bring your umbrella with you on potentially storm days.

What Do I Need?

To follow along with out tutorial you'll need a few things. First, we assume that you've already followed our previous tutorial: The HTG Guide to Getting Started with Raspberry Pi (and thus have a the basics covered up to installing Rasbian on our Raspberry Pi).

If you're looking to do this project on a budget, we can confidently tell you that the newest model Raspberry Pi is significant overkill for the job and we'd encourage you to blow the dust off an old Raspberry Pi you've got shoved in the closet or pick up a cheap used one off eBay or the like. Budget wise the long-in-the-tooth a Raspberry Pi 1 Model A  or Model B snagged off eBay for $10-15 is a perfect fit for this project over purchasing a brand new $35 current generation Pi.

In addition to having a functional Pi unit with Raspbian installed on it you'll need the following things:

Note: The clear/frosted Pi case is entirely optional but if you're currently using an opaque case then your LED indicator will be hidden inside. You'll either need to cut a hole in your case to let the light out or use a GPIO extension cable with a breakout kit---like this one from Adafruit Industries---to tether the LedBorg to your Raspberry Pi. While using the breakout cable adds about $8 to the expense of the project it does offer more potential for customizing the end product in that you can more easily place the LED inside things or under something you want to illuminate.

Installing the LedBorg

2013-03-05_175859

While you could certainly build yourself a completely-from-scratch LED indicator (and a search engine inquiry will turn up plenty of people who have done so) the Piborg organization produces such a compact and inexpensive LED module, the LedBorg, that we couldn't resist using it as the basis for our Raspberry Pi LED indicator project.

Installing the module is a snap as it's designed to fit directly over the GPIO pins on the Pi. First, power down your Pi and open the case.

The most important part of the installation process is that you orient the module so that the LedBorg icon is closest to the RCA module on the Raspberry Pi board (and thus the edge of the LedBorg is flush with the edges of the Pi board with the overhanging portion of the LedBorg hanging over the Pi board and not off the edge). See the photograph above.

While you have the Pi board open, now would be an excellent time to cover the on-board LED indicators (next to the USB ports), especially if you're using a clear case. You don't want it to be confusing to read your LedBorg indicator because the power and network indicator lights are so bright.

We covered ours with a layer of white electrical tape. This dimmed them enough so that we could still reference them but they were so much dimmer than the LedBorg it was no longer distracting.

Once you have the LedBorg installed and have, optionally, covered the Pi's LED indicators with electrical tape, it's time to close the case back up. Boot your Pi up before moving onto the next phase of the tutorial.

Installing the LedBorg Software

2013-03-05_184355

PiBorg provides a great software package for the LedBorg that includes both a GUI controller as well as drivers to access the LedBorg from the command line.

Before we get started you need to make sure you're grabbing the right package for your version of Rasbian and the revision # of your Raspberry Pi board.

If your Raspberry Pi board has no mounting holes, it is Revision 1. If your Raspberry Pi has mounting holes (located by the USB ports and between the power and HDMI port) then it is Revision 2. You also need to know the kernel version of your Rasbian installation. Open up the terminal and enter the following command to check:

uname -r

Once you have the Revision number and the kernel number, you can visit the Packages section here to grab the link for your package. In our case we're using a Revision 1 board with the 3.6.11 kernel so we would grab the raspbian-2013-02-09-rev1.zip file.

In order to install all the goodies we need to open up the terminal on the Pi.  and then input the following commands to install the LedBorg package.

Note: You must replace the URL in the third command with the URL of the package for your board/kernel combination.

mkdir ~/ledborg-setup

cd ~/ledborg-setup

wget -O setup.zip http://www.piborg.org/downloads/ledborg/raspbian-2013-02-09-rev1.zip

unzip setup.zip

chmod +x install.sh

./install.sh

At this point you now have the GUI wrapper for the LedBorg drivers and the drivers themselves installed. On your Raspbian desktop you'll see an icon for the GUI wrapper:

2013-03-05_133940

Go ahead and click on the LedBorg icon to launch the GUI wrapper. You will be treated to the color picker interface like so:

2013-03-05_134344

Now is the perfect time to make sure your module is functional. Pick any color, save for black, to try it out. We are going to test it by picking a few colors:

2013-03-05_184121

Looks good! It's bright and the frosted plastic of the case we ordered for the project offers moderate diffusion. If you want to play with the LED module more before moving on, click Demo Mode:

2013-03-05_134654

In demo mode you can cycle through all the colors at various speeds, check out the high/low output, and otherwise put the LED module through the paces.

It's here in the Demo Mode section that you can also turn your LedBorg into the first of many indicators. By selecting CPU in the Colours section the LED will begin changing from green to yellow to red to indicate load on the Raspberry Pi's ARM processor. We suggest changing the Speed to Slow while you're at it---Fast updates the LED too quickly and makes the CPU indicator distracting instead of useful.

In addition to using the GUI interface to select colors you can pick colors from the terminal using RGB values. Open up the terminal and enter the following command to turn the LED off:

        echo "000" > /dev/ledborg
    

The way the LedBorg handles RGB values is that 0 means the channel is off, 1 means the channel is half power, and 2 means the channel is full power. So for example 001 would set the Red channel at 0%, the Green channel at 0% and the Blue channel at 50% power.

Change the value to 002 and the LED output remains blue but becomes brighter because the Blue channel is now at 100% output. Change the value to 202 and the Red and Blue at full power combine to make a magenta color.

Now that we know how to manipulate the LED manually, let's look at using scripts to turn our LED from a simple light to an actual indicator.

Configuring Your LedBorg as a Rain Indicator

2013-03-05_184941

For this portion of the tutorial we'll be combing several things together in order to turn our LedBorg LED module into a rain indicator based on the weather forecast for our location. We'll use a Python script to call a weather API which will in turn read the chance of rain for the day, and then toggle the LED from off to bright blue to indicate the forecasted rain.

First, we need to get an API access key for Weather Underground. For personal use and small development projects the API is free. Visit the Weather API sign up page here and sign up for an API key.

Once you have your API key, visit the Weather Underground and search for the city you want to monitor. In our case we're going to monitor San Fransisco, CA. The URL for San Fransisco's forecast page is:

http://www.wunderground.com/US/CA/San_Francisco.html

The important part for our purposes is the last part of the URL: /CA/San_Francisco.html. We're going to use that to edit the forecast URL for the API tool. The base URL is:

http://api.wunderground.com/api/YOUR API KEY/forecast/q/STATE/CITY.json

You can generate the forecast for any US city by entering your API key, the two letter state code, and the city name from the URL you pulled from your Weather Underground search results.

Once you have the API URL with your API key and state/city inserted, you can then edit the following Python script by creating a new text document on your Pi using Leafpad and pasting the following code into it:

        from urllib2 import urlopen
import json
        req = urlopen('http://api.wunderground.com/api/YOUR API KEY/forecast/q/STATE/CITY.json<a href="http://api.wunderground.com/api/0e02b324b8e4dbd8/forecast/q/CA/San_Francisco.json')">')</a>
parsed_json = json.load(req)
pop = int(parsed_json['forecast']['txt_forecast']['forecastday'][0]['pop'])

# The following is a debugging value.

# Edit out the hash and change

# the integer to a 0-100 to test

# the LED response.

# pop = 0

        print 'Current chance of precipitation is {}.'.format(pop)
    
        # The default setting is to turn on the LED
# for any chance of rain above 20%. You can adjust
# the value in "if pop > 20:" as you wish.
        if pop > 20:
LedBorg = open('/dev/ledborg', 'w')
LedBorg.write('002')
del LedBorg
print ('Rain!')
else:
LedBorg = open('/dev/ledborg', 'w')
LedBorg.write('000')
del LedBorg
print ('No rain!')

Save the file as wunderground.py in the /home/pi/ directory. Open up the terminal and type in the following command:

python wunderground.py

If you have entered your API key and your state/city codes properly, it should kick back a response that looks like:

2013-03-05_145110

If precipitation is predicted for your area your LedBorg output should look like such:

2013-03-05_185624

Now waiting for a rainy day to properly test the script would be tedious. If there is no chance of rain in your area today and you want to see the LED light up, edit the wunderground.py script and replace the "pop = pop" passthrough value in line 13 with a value greater than 20 such as the 60 that our forecast returned. Just remember to change the line back to "pop = pop" when you're done.

The final step is to set up a cron job to automatically run the script we just saved on a regular interval in order to keep the LED indicator current. Since this task is necessary for both this script and the email indicator that follows, we're going to cover setting up a cron job after we've shown you how to set up the other script.

Configuring Your LedBorg as a Gmail Indicator

2013-03-05_185314

Who doesn't like the dopamine fix that comes with seeing new email in their inbox? In this portion of the tutorial we are going to show you how to use the LedBorg as an new Gmail indicator. Just like last time, we are going to combine an external input (in this case an Atom feed instead of an API) and a simple script to drive our LED.

We need to expand the functionality of our Python installation a little bit by installing FeedParser, a Python RSS/Atom feed reading tool. Open up the terminal and enter the following command:

sudo easy_install feedparser

Once the installation is complete we can set to work creating our Gmail checking script. Again, using Leafpad, paste the following text into the editor. Change the username and password to match the username and password of the Gmail account you wish to check.

        import feedparser
    
        
# Enter your Gmail username
# and password. Don't include
# the @gmail.com portion of
# your username.
        username = "username"
password = "password"
        mail = int(feedparser.parse("https://" + username + ":" + password +"@mail.google.com/gmail/feed/atom")["feed"]["fullcount"])
    

# The following is a debugging value.

# Edit out the hash and change

# the integer to a 0 or 1 to test

# the LED response.

# mail = 0

        if mail > 0 :
LedBorg = open('/dev/ledborg', 'w')
LedBorg.write('020')
del LedBorg
print ('Mail!')
else:
LedBorg = open('/dev/ledborg', 'w')
LedBorg.write('000')
del LedBorg
print ('No mail!')

Save the script as gmailcheck.py. Open up the terminal and type the following command:

python gmailcheck.py

If you have email sitting in your Gmail inbox the LED will turn green and you will get a response like such:

2013-03-05_152152

If you have mail in your Gmail inbox your LedBorg will look like so:

2013-03-05_185935

Just like the rain checking script, we have included a debugging value. If you don't have any new email you could either send yourself an email to raise your inbox count to 1 or you could edit out the comment hash and change the debugging line to "mail = 1" to test the script. Remember to revert the line when you're done testing.

Hop into the next section of the tutorial to set your Gmail script to run on a schedule.

Setting Up a Cron Job to Run Your Script

2013-03-05_170817

Now that we have two scripts to play with, we need to set up a cron job in order to run them throughout the day to keep the LED indicator current.

The first thing we want to do is to turn off the LED if it is currently on from our previous experiments. At the terminal type:

echo "000" > /dev/ledborg

While you're still at the command line, you can open up the cron editor. If you have never set up a cron job before, we would strongly suggest checking out our guide to using it here. That said, we'll walk you through setting up a basic schedule right here.

At the terminal type:

sudo crontab --e

This will open up the Raspbian cron table in the Nano text editor. Use the arrow keys to scroll down to the very bottom. This is where we're going to setup the recurring cron job for our Python scripts.

If you want to set up the rain script, enter the following line into the cron table:

*/5 * * * * python /home/pi/wunderground.py

Press CTRL+X to exit; select yes to save and overwrite the existing cron table. The value we entered in the cron table "*/5 * * * *" sets the script to run every 5 minutes, forever.

Every 5 minutes is a fine span of time for a script that checks for forecasted rain---you could even argue it's a bit too aggressive---but if you're trying to keep on top of your email it's a bit too long a span for notification. If you're setting up the schedule for the Gmail notification script enter the following line in the cron table:

*/1 * * * * python /home/pi/wunderground.py

This entry runs the gmailcheck.py script every minute for a much speedier update notification.


That's all there is to it! You can experiment with your own Python scripts by lifting the if/else statements out of ours and trying them out with brand new variables. If you can find an input source for the data you can turn it into a variable in your Python script---stock market averages, pollen counts, Twitter mentions, if there is an API for it you can turn it into an ambient LED indicator.

Finally, I want to give thanks to all the great resources I used to work on this project. It has been a bit over a decade since I was actively writing programs and it took a few knocks to get the dust and rust out. The contributors at /r/LearnPython helped me muck about in the API output for Weather Underground, studying how Michael over at Mitch Tech dealt with the Gmail Atom feed made parsing it for the LedBorg easy, and studying the Python learning modules at Code Academy was a great way to pick up the basic syntax and structure of a language I'd never used before.