Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Intel Galileo Networking Cookbook
Intel Galileo Networking Cookbook

Intel Galileo Networking Cookbook: Over 50 recipes that will help you use the Intel Galileo board to build exciting network-connected projects

eBook
$27.98 $39.99
Paperback
$48.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Intel Galileo Networking Cookbook

Chapter 2. Connecting External Sensors

In this chapter, we will go through the following recipes:

  • Using the Arduino IDE with the Galileo board
  • Connecting an analog sensor
  • Connecting a digital sensor
  • Connecting an LCD screen
  • Displaying the temperature on an LCD screen
  • Troubleshooting the usual issues with sensors

Introduction

In this chapter, we are going to learn how to connect sensors to your Galileo board. This is a very important chapter in this book, as we will be using sensors throughout the rest of the book, for example to log measurements to the cloud.

In this chapter, we are going to see how to connect commonly used sensors between Arduino systems and the Galileo board. We are going to see how to connect analog and digital sensors, as well as an LCD screen to display measured data.

Using the Arduino IDE with the Galileo board

Before we take measurements from the sensors, we need to be able to develop software to run on our Galileo board. There are two ways to do that; either by using the Arduino IDE (which has been modified for Galileo) or by using the onboard Linux machine that we configured in Chapter 1, Installing and Configuring Linux. In this chapter, as we will deal with basic sensors, we are only going to use the Arduino IDE, and we will see how to use it in this first recipe.

Getting ready

For this first recipe, you will need to get the Arduino IDE for Intel Galileo from the official page at https://communities.intel.com/docs/DOC-22226.

There, you have the choice between different versions of the Arduino IDE for the Galileo board, depending on your operating system:

Getting ready

At the time of writing, the latest version available was 1.6.0. After the software has been downloaded, simply install it using the onscreen instructions, depending on your operating system.

How to...

Connecting an analog sensor

In this recipe, we are going to see how to connect an analog sensor to our Galileo board. Analog sensors are widely used in measurement systems, and can be used to measure a wide range of data such as temperature, light levels, barometric pressure, and so on.

In this recipe, we are going to see how to measure the ambient temperature using an analog temperature sensor.

Getting ready

For this recipe, apart from the Intel Galileo board, you will need a TMP36 analog temperature sensor.

You will also need a breadboard and a few male/male jumper wires to make the connections between the different components. Note that you will use this breadboard and the wires for most of the recipes in this book.

This is the list of all the extra components you will need for this recipe:

How to do it...

The first step is to assemble...

Connecting a digital sensor

In this recipe, we are going to see how to use a digital sensor with the Intel Galileo board. Digital sensors are also widely used in electronics, from the simple motion sensor that we will use in this recipe, to more complex digital sensors such as the 3-axis digital accelerometers that can be found in smartphones.

Getting ready

For this recipe we will be using a simple PIR motion sensor. You can find this sensor at https://www.sparkfun.com/products/8630.

How to do it...

We are now going to assemble our project. Just as for previous recipes, first connect the power supply from the Galileo board to the breadboard.

Then, connect the PIR motion sensor to the breadboard. Connect the red wire (the left wire in the schematic, on pin number 1) from the motion sensor to the red power rail, and the black wire (the right wire in the picture) to the blue power rail.

Finally, connect the yellow (signal) wire in the middle of the PIR motion sensor to pin number 7 on the Galileo...

Connecting an LCD screen

We are going to connect an LCD screen to the Galileo board in this recipe. This LCD screen will be used to display useful information. In this recipe, we will simply see how to use the LCD screen. We will use an LCD screen that has a built-in I2C interface for this project, as they are really easy to use with the Galileo board.

Getting ready

For this project, you will need an LCD screen. I used a 4 x 20 lines LCD screen with an I2C interface (a SainSmart I2C LCD screen 4 x 20). You can use a smaller LCD screen, but you really need one with an I2C interface or it won't work. The link to the LCD screen I used for this project is http://www.sainsmart.com/sainsmart-iic-i2c-twi-serial-2004-20x4-lcd-module-shield-for-arduino-uno-mega-r3.html.

For the software, you will also need the library to control the I2C LCD screen we are using in this project:

https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library

To install this library, simply put the downloaded folder...

Displaying the temperature on an LCD screen

We are now going to see how to combine several of the concepts we learned in the previous recipes. We are going to read data from the same analog temperature sensor we used earlier in this chapter, and display the readings from this sensor on the LCD screen we used in the previous recipe.

Getting ready

For this project, you will need an LCD screen. I used a 4 x 20 lines LCD screen with an I2C interface. You can use a smaller LCD screen, but you really need one with an I2C interface or it won't work. You will also need a TMP36 temperature sensor.

This is the link for all the parts I used for this recipe:

As in the previous recipe, you will also need the I2C display library to control the LCD screen from your Galileo board, which can be found at the...

Introduction


In this chapter, we are going to learn how to connect sensors to your Galileo board. This is a very important chapter in this book, as we will be using sensors throughout the rest of the book, for example to log measurements to the cloud.

In this chapter, we are going to see how to connect commonly used sensors between Arduino systems and the Galileo board. We are going to see how to connect analog and digital sensors, as well as an LCD screen to display measured data.

Left arrow icon Right arrow icon

Description

Arduino is an electronic prototyping platform used by millions of people around the world. Intel Galileo is fully Arduino compatible; hence it combines the high performance of Intel with the simplicity of Arduino Software Development Environment. This makes it the ideal platform to build exciting projects, especially in the field of web-based connected applications and the Internet of Things. The book features several recipes all based on the Intel Galileo board, and that exploit the powerful features of the board. Each chapter explores a given field using the Galileo board. The book is mainly divided in three parts. The first part is all about learning the basics of the Intel Galileo board, but it uses some of the powerful features of the board such as connecting external sensors and complex hardware devices, compared with more basic Arduino boards. Then, the book dives into the topics related to networking and the Internet of Things. You will learn how to run a web server on the board and log data using a cloud-based service. Finally, the book ends with a chapter that aims to build a complete home automation hub using the Galileo board. This chapter uses everything that was learned in the book to make a home automation system using the Galileo board and Arduino.

Who is this book for?

If you have already worked on ARM boards like Arduino, but now want to learn Intel Galileo, then this book is for you. Knowledge of C programming language is required.

What you will learn

  • Set up your Galileo board for the Internet of Things
  • Connect external sensors to the Intel Galileo
  • Create and run a web server on the Galileo board
  • Control hardware devices from the Galileo
  • Host webbased applications on the Intel Galileo
  • Monitor data from the cloud using the Galileo
  • Build a complete home automation hub using the Galileo board

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Aug 26, 2015
Length: 174 pages
Edition : 1st
Language : English
ISBN-13 : 9781785281723
Vendor :
Intel
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Aug 26, 2015
Length: 174 pages
Edition : 1st
Language : English
ISBN-13 : 9781785281723
Vendor :
Intel
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 130.97
Intel Galileo Blueprints
$48.99
Intel Galileo Networking Cookbook
$48.99
Internet of things with Intel Galileo
$32.99
Total $ 130.97 Stars icon
Banner background image

Table of Contents

9 Chapters
1. Installing and Configuring Linux Chevron down icon Chevron up icon
2. Connecting External Sensors Chevron down icon Chevron up icon
3. Controlling Hardware Devices Chevron down icon Chevron up icon
4. Creating a Web Server Chevron down icon Chevron up icon
5. Hosting Applications on the Galileo Board Chevron down icon Chevron up icon
6. Local Network Monitoring Chevron down icon Chevron up icon
7. Cloud Data Monitoring Chevron down icon Chevron up icon
8. Building a Home Automation System Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(1 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
ruben Sep 12, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is a great book, it is divided in three parts the fisrt one explains everything about the board the main things about the configuration of the board, I congratulate the author because He explains very straight.In the second part it covers all the practices about networking with the boardit helps me how to configure the Galileo Arduino board like a web server, how to control the galileo from a remote place, how to connect sensors to the analig inputs, it is a great chapter because it has all the necesary to work in a network environment this information is very important because this board has the powerful of working as a networking device to control and monitor a real process.in the third part is a great section because explains how to make a home automation system using this galileo board. I like this information it has explained everything together, this chapter includes all the sections that the books has with all the information I can make the project.I want to congratulate Marco Schwartz because of his book it has helped a lot in my classes, applying this in projects, sharing this information with my students. Thanks.I want to recommend this fantastic book.Wrote: Ruben Oliva Ramos
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.