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

Adding help and parameters to your Python Program


In this chapter, we have taken a single Python program and given it the ability to:

  • Scan logs to count the number of measurements and RPZ restarts

  • Manipulate log strings to summarize RPZ temperature data

  • Plot a graph of a range of RPZ temperature readings

  • E-mail someone a graph of RPZ temperature readings

  • Generate a CSV file of date/temperature readings

  • Push date/temperature readings to Google spreadsheets

Up until now, I have just been adding functions to the main function and executing everything or commenting out the functions I don't want to execute for that recipe. With a little code polishing, this little collection of functions can be turned into a more useful utility, giving the user a choice of which functions will actually execute, and providing information on what each function will do. Python makes it very easy to add user interactivity, so we can create just the CSV, or we can provide the summary and display a graph--or even do everything...