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
IoT Projects with Bluetooth Low Energy
IoT Projects with Bluetooth Low Energy

IoT Projects with Bluetooth Low Energy: Harness the power of connected things

Arrow left icon
Profile Icon Madhur Bhargava
Arrow right icon
Can$12.99 Can$39.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.9 (12 Ratings)
eBook Aug 2017 278 pages 1st Edition
eBook
Can$12.99 Can$39.99
Paperback
Can$49.99
Subscription
Free Trial
Arrow left icon
Profile Icon Madhur Bhargava
Arrow right icon
Can$12.99 Can$39.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.9 (12 Ratings)
eBook Aug 2017 278 pages 1st Edition
eBook
Can$12.99 Can$39.99
Paperback
Can$49.99
Subscription
Free Trial
eBook
Can$12.99 Can$39.99
Paperback
Can$49.99
Subscription
Free Trial

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

IoT Projects with Bluetooth Low Energy

Setting Up

In theory, there is no difference between theory and practice. In practice, there is.
- Anonymous

We established quite a theoretical foundation in the last chapter by covering the pillars on which Bluetooth Low Energy is designed upon. In this chapter, we will be setting up our development environment, which will help us to put all that theory into practice.

We will eventually set up our development environment by covering the following topics:

  • Introduction to Bluetooth Low Energy Sensors
  • Setting Up Your System to Write Android Applications
  • Setting Up Your System to Write iOS Applications
  • Configuring the Firebase Cloud Backend
  • Introduction to Raspberry Pi
  • Introduction to GitHub

Introduction to Bluetooth Low Energy Sensors

Almost every BLE device that you will be interacting with in the real world and during the course of this book, will be a sensor that senses and stores data, waiting to be read. For example, a Fitbit senses heart rate, quality of sleep, and the number of steps walked. We will be interacting with a Fitbit device in the next chapter to understand how it stores the sensed data and how it makes that data available to us:

Figure 1: A Fitbit charge 2 device; source: www.fitbit.com

Temperature and humidity sensors can also use Bluetooth Low Energy as their communication protocol to transfer data to handheld devices or hubs. We will be creating an IoT + BLE solution for one such use case involving temperature and humidity sensors in Chapter 6, Weather Monitoring Using BLE in Warehouses:

Figure 2: Temperature and humidity sensor by Xiaomi...

Setting Up Your System to Write Android Applications

For those who came late, here is a little bit of history on Android.

Android is a mobile operating system initially developed by Google. The initial release of Android happened on September 23, 2008. Alongside the release, Google also took the initiative to form the Open Handset Alliance (OHA), which is a group of 84 companies including Sony, Dell, Samsung Electronics, HTC, and Motorola to name a few. Note that Android was and is a platform, and the primary purpose of the OHA was to develop open standards for mobile devices and promote the Android platform.

For more information about the Android operating system, visit https://www.android.com/.

Looking at the historical timeline of Android releases, you will realize that Android has really come a long way since 2008:

Figure 5: Android version history timeline; source: www.wikipedia...

Setting Up Your System to Write iOS Applications

Just like Android, iOS needs no formal introduction; however, we will go over some key knowledge factors related to it. iOS or iPhone OS is a mobile operating system which was developed by Apple Inc. and first introduced in June 2007 exclusively for Apple devices:

Figure 11: Devices supported by iOS; source: www.macworld.com

Note that one of the biggest differences between Android and iOS is that Apple designed iOS as an operating system, which was exclusively designed for Apple hardware. On the other hand, Android took more of a platform approach, which dictated a set of requirements and then the phone manufacturers could roll out devices adhering to these requirements. Also, this implies that iOS is closed source whereas Android is open source.

Just like Android, iOS also has a version history starting right from iPhone OS 1...

Configuring the Firebase Cloud Backend

Firebase, in technical terms, is backend as a service. To clarify what this means, let's look at an example: Let's say you would like to write an app, which shows screening times for various movies playing in the city. For this, you will need to store the movie details and the show times in a backend, which can then later be fetched and displayed by various mobile clients. However, you don't want to get into writing a full-fledged server on your own and it would probably be best if you could lay your hands on a pre-cooked solution where you could just store and read your data when needed. This is where Firebase comes in. Firebase is a technology/service that helps developers who want to write apps, which interact with a backend but avoids them creating/programming their own full-fledged backend. This will become clearer...

Introduction to Raspberry Pi

In this section, we will be introducing you to Raspberry Pi, which is a completely functional computer built on a single circuit board:

Figure 28: A Raspberry Pi, Model 3B; source: www.wikipedia.com

Equivalent to the size of a credit card, this single board computer offers the following:

  • 1GB RAM
  • 4 USB ports
  • 40 GPIO pins
  • A full HDMI port
  • An Ethernet port
  • Combined 3.5mm audio jack and composite video
  • A Camera interface (CSI)
  • A Display interface (DSI)
  • A micro SD card slot
  • A VideoCore IV 3D graphics core
  • A 1.2GHz 64-bit quad-core ARMv8 CPU
  • An 802.11n Wireless LAN
  • Bluetooth 4.1
  • Bluetooth Low Energy (BLE)
Figure 29: Raspberry Pi, Model 3b, layout details; source: www.smarthomesage.com

For less than 40 euros (which is the approximate cost of this board), for starters, you can simply connect a USB 2.0 mouse and keyboard to the USB ports, hook up a monitor...

Introduction to GitHub

To understand GitHub, you should first know what a Git is.

To explain what it is in simple terms, we should first understand how the actual software is crafted. It is carried out by multiple engineers working together in a team, often on the same source code files. When the software is being crafted, it often happens that within the development cycle, requirements might get changed or some of the features of the software might not even be required at all by the time of final release.

Perhaps an actual dialog between a product owner and a technical team lead might help you understand this situation better:

Ben (Product Owner)Hey Jerry, remember that hourly alarms feature we added to our app, the management has decided to remove that from this release.

Jerry (Lead Developer)Sure. What I am going to do is disable that for now and then make...

Summary

In this chapter, we've explored two of the most popular mobile operating systems, namely, Android and iOS, in a very hands-on manner by setting up development environments for both of them. We also went to our backend environment, Firebase, which allowed us to make the data from our Bluetooth Low Energy devices available to rest of the world. Not limiting ourselves to just software, we've learned about the Raspberry Pi, a very sophisticated piece of hardware, which we will later magically transform into a Bluetooth Low Energy beacon. Finally, we also learnt about GitHub, the world's largest host of source code, where we will be storing our code. We are all set up now and ready to take BLE knowledge to the next level.

Next up, to get an intuitive understanding of how Bluetooth Low Energy is implemented in wearables (for example, fitness trackers), with our...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Build hands-on IoT projects using Bluetooth Low Energy and learn about Bluetooth 5 and its features.
  • Build a health tracking system, and indoor navigation and warehouse weather monitoring projects using smart devices.
  • Build on a theoretical foundation and create a practice-based understanding of Bluetooth Low Energy.

Description

Bluetooth Low Energy, or Bluetooth Smart, is Wireless Personal Area networking aimed at smart devices and IoT applications. BLE has been increasingly adopted by application developers and IoT enthusiasts to establish connections between smart devices. This book initially covers all the required aspects of BLE, before you start working on IoT projects. In the initial stages of the book, you will learn about the basic aspects of Bluetooth Low Energy—such as discovering devices, services, and characteristics—that will be helpful for advanced-level projects. This book will guide you through building hands-on projects using BLE and IoT. These projects include tracking health data, using a mobile App, and making this data available for health practitioners; Indoor navigation; creating beacons using the Raspberry Pi; and warehouse weather Monitoring. This book also covers aspects of Bluetooth 5 (the latest release) and its effect on each of these projects. By the end of this book, you will have hands-on experience of using Bluetooth Low Energy to integrate with smart devices and IoT projects.

Who is this book for?

If you're an application developer, a hardware enthusiast, or just curious about the Internet of Things and how to convert it into hands-on projects, then this book is for you. Having some knowledge of writing mobile applications will be advantageous.

What you will learn

  • Learn about the architecture and IoT uses of BLE, and in which domains it is being used the most
  • Set up and learn about various development platforms (Android, iOS, Firebase, Raspberry Pi, Beacons, and GitHub)
  • Create an Explorer App (Android/iOS) to diagnose a Fitness Tracker
  • Design a Beacon with the Raspberry Pi and write an app to detect the Beacon
  • Write a mobile app to periodically poll the BLE tracking sensor
  • Compose an app to read data periodically from temperature and humidity sensors
  • Explore more applications of BLE with IoT
  • Design projects for both Android and iOS mobile platforms

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Aug 31, 2017
Length: 278 pages
Edition : 1st
Language : English
ISBN-13 : 9781788396837
Vendor :
Google
Category :

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 31, 2017
Length: 278 pages
Edition : 1st
Language : English
ISBN-13 : 9781788396837
Vendor :
Google
Category :

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 Can$6 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 Can$6 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total Can$ 155.97
Intelligent IoT Projects in 7 Days
Can$55.99
IoT Projects with Bluetooth Low Energy
Can$49.99
Building Bluetooth Low Energy Systems
Can$49.99
Total Can$ 155.97 Stars icon
Banner background image

Table of Contents

7 Chapters
What is Bluetooth Low Energy? Chevron down icon Chevron up icon
Setting Up Chevron down icon Chevron up icon
Building a Service Explorer App Chevron down icon Chevron up icon
Designing a Personal Tracking System Chevron down icon Chevron up icon
Beacons with Raspberry Pi Chevron down icon Chevron up icon
Weather Monitoring Using BLE in Warehouses Chevron down icon Chevron up icon
Going Further Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.9
(12 Ratings)
5 star 66.7%
4 star 8.3%
3 star 0%
2 star 0%
1 star 25%
Filter icon Filter
Top Reviews

Filter reviews by




Amazon Customer Sep 29, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book has a great set of projects with all required details and presented in very simple and efficient way.Even if you are new to IoT or Bluetooth technology, this book has it covered to start with the project's.
Amazon Verified review Amazon
Amruta Bhende Nov 04, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I was always confused between the BLE concepts like Services, Characteristics and Profiles. This book greatly helped in resolving that confusion!
Amazon Verified review Amazon
Ravi Sep 18, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
A very nice book covering all the basics on BLE and then slowly building up on the basics with practical examples.
Amazon Verified review Amazon
Aaron Sep 25, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
An amazingly detailed book to get working with BLE on iOS and Android. Concepts are well explained right from lower layers of BLE to easing you into application development. Even beginners to mobile development can follow along with the chapters to get started building Bluetooth projects. Chapter 4, 5, and 6 break down concepts with sample real world application keeping it practical and understandable to follow along.A great book to keep by your side while getting started or working on your BLE apps.
Amazon Verified review Amazon
Ashish Nov 02, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book strikes the right balance between theory and practical examples on the (somewhat) arcane topic of BLE. Really liked the book.
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.