Book Image

Raspberry Pi Zero Cookbook

Book Image

Raspberry Pi Zero Cookbook

Overview of this book

The Raspberry Pi Zero, one of the most inexpensive, fully-functional computers available, is a powerful and revolutionary product developed by the Raspberry Pi Foundation. The Raspberry Pi Zero opens up a new world for the makers out there. This book will give you expertise with the Raspberry Pi Zero, providing all the necessary recipes that will get you up and running. In this book, you will learn how to prepare your own circuits rather than buying the expensive add–ons available in the market. We start by showing you how to set up and manage the Pi Zero and then move on to configuring the hardware, running it with Linux, and programming it with Python scripts. Later, we integrate the Raspberry Pi Zero with sensors, motors, and other hardware. You will also get hands-on with interesting projects in media centers, IoT, and more.
Table of Contents (17 chapters)
Raspberry Pi Zero Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Sending an e-mail from a Python Script


The ability to send e-mail is the way to have your Raspberry Pi Zero contact you no matter where you are. Python's vast library collection includes one that makes sending e-mail simple. Let's expand our program to e-mail someone with a graph attachment of our Raspberry Pi Zero temperature output. If you have a project where your device is remote but still able to access the Internet, you might want to get a regular e-mail showing how things are working without having to log on.

Getting ready

If you have been following along, you can continue adding to your rpz_log_analysis.py program. If you want to see the completed code for this recipe, it is available in the /ch4/ directory of the Git repository, named rpz_log_analysis_email.py.

I used Google's SMTP to send my e-mail. There are a lot of ways you can do it, but this makes it easy to do from pretty much anywhere. All you'll need is a Google account and e-mail.

  1. In your Google account settings, under the...