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
Internet of Things with Arduino Cookbook

You're reading from  Internet of Things with Arduino Cookbook

Product type Book
Published in Sep 2016
Publisher Packt
ISBN-13 9781785286582
Pages 188 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Marco Schwartz Marco Schwartz
Profile icon Marco Schwartz

Table of Contents (14) Chapters

Internet of Things with Arduino Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
1. Connecting an Arduino to the Web 2. Cloud Data Monitoring 3. Interacting with Web Services 4. Machine-to-Machine Interactions 5. Home Automation Projects 6. Fun Internet of Things Projects 7. Mobile Robot Applications Index

Building a simple GPS tracker


In the last recipe of this chapter, we are going to build a simple GPS tracker using the hardware we built in the previous recipe. We will send the current GPS location of the project to a cloud server, and then use this to display the position of the project in real time on a Google Maps widget.

Getting ready

You will, of course, need to have built the hardware in the previous recipe, and make sure that the GPS is working correctly. If that's not done yet, please refer to the previous recipe.

Let's now see how to configure the project so that it sends data to Dweet.io, which is a cloud server we already used in this book. As the code is quite long, I will only highlight the most important parts here.

First, let's define a new thing called gps_tracker:

String dweetThing = "gps_tracker';

Inside the loop() function of the sketch, we create a new request to Dweet.io, by including the latitude, longitude, and battery level inside the request:

uint16_t statuscode;
  int16_t...
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}