Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Raspberry Pi Home Automation with Arduino - Second Edition

You're reading from  Raspberry Pi Home Automation with Arduino - Second Edition

Product type Book
Published in Feb 2015
Publisher
ISBN-13 9781784399207
Pages 148 pages
Edition 1st Edition
Languages
Author (1):
Andrew K. Dennis Andrew K. Dennis
Profile icon Andrew K. Dennis

Table of Contents (16) Chapters

Raspberry Pi Home Automation with Arduino Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. An Introduction to the Raspberry Pi, Arduino, and Home Automation 2. Getting Started – Setting Up Your Raspberry Pi and Arduino 3. Central Air and Heating Thermostat 4. Temperature Storage – Setting Up a Database to Store Your Results 5. Parcel Delivery Detector 6. Curtain Automation – Open and Close the Curtains Based on the Ambient Light 7. Water/Damp Detection – Check for Damp/Flooding in Sheds and Basements 8. Wrapping Up References Index

Updating the Raspberry Pi database


Our Arduino is now making HTTP requests when the pressure sensor is tripped. Therefore, we need to update the Raspberry Pi's database we created in the previous chapter to collect this information.

In order to write this data to the database, we will also need to create a small web service that captures the HTTP request and generates a SQL query.

We will start by updating our SQLite database to include a table to capture sensor data. Open control.db in SQLite and run the following query:

CREATE TABLE Parcel (ID INTEGER PRIMARY KEY AUTOINCREMENT, RoomIDINTEGER, DatetimeDATETIME, FOREIGN KEY(RoomID) REFERENCES RoomDetails(ID));

This creates a new table called Parcel. In this table, we record where the parcel was delivered and the time stamp, and also create a unique ID for the parcel.

Currently, we have only one room in the database; this is where you placed your Arduino thermostat. We now need to insert the details of the room where the Arduino parcel sensor...

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 $15.99/month. Cancel anytime}