Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Raspberry Pi Embedded Projects Hotshot

You're reading from   Raspberry Pi Embedded Projects Hotshot Enter the world of mechatronic systems with the Raspberry Pi to design and build 12 amazing projects

Arrow left icon
Product type Paperback
Published in Feb 2015
Publisher
ISBN-13 9781849696227
Length 250 pages
Edition 1st Edition
Concepts
Arrow right icon
Toc

Table of Contents (15) Chapters Close

Preface 1. Hello World FREE CHAPTER 2. A Raspberry WebIDE Example 3. The Arduino Raspberry Pi Interface 4. Christmas Light Sequencer 5. Internet of Things Example – An E-mail Alert Water Fountain 6. Raspberry Pi as a Personal Assistant 7. Raspberry Pi-based Line Following Robot 8. Connect Four Desktop Game using Raspberry Pi 9. The Raspberry Pi-enabled Pet/Wildlife Monitor 10. Raspberry Pi Personal Health Monitor 11. Home Automation using Raspberry Pi 12. Using a Raspberry Pi for Science and Education 13. Tips and Tricks Index

Setup of the e-mail alerts in the fountain

In this task, we will review setting up e-mail alerts from Gmail accounts. We can blink an LED (as shown in this step) or flash the RGB LED strip (this has to be executed by the reader) when an e-mail of a specific category is received (for example, work e-mail).

Prepare for lift off

We will get started by installing the python-feedparser tool. Google provides a read-only inbox feed and we will make use of the feedparser module to determine whether we received any new e-mails.

sudo apt-get install python-feedparser

Engage thrusters

  1. In order to log in and parse through the e-mail feed, we get started by importing the feedparser module:
    import sys
    import feedparser
  2. We will define the variables, including the Gmail username and password (changed to generic names below) along with the function that retrieves all unread e-mails. Refer to the following example:

    Note

    In this example, we are just retrieving the count of any new unread e-mails. It is possible to...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime