Book Image

IoT Projects with Bluetooth Low Energy

By : Madhur Bhargava
Book Image

IoT Projects with Bluetooth Low Energy

By: Madhur Bhargava

Overview of this book

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.
Table of Contents (15 chapters)
Title Page
Credits
Foreword
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Chapter 5. Beacons with Raspberry Pi

The technology you use impresses no one. The experience you create with it is everything.

- Sean Gerety

In the last chapter, we brewed our very own indoor positioning system by using nothing more than a smartphone, an iTag, and a few brilliantly written research papers. Building on our knowledge about discovering and connecting with Bluetooth Low Energy devices from the previous chapters, we discovered that apart from services and characteristics, there is much more that Bluetooth Low Energy has to offer; for instance, we used RSSI to extract relevant information from a Bluetooth Low Energy device by converting it to proximity/distance. This chapter is a little different from the previous ones. Building on our knowledge of implementation details that we gathered in the previous chapters, rather than introducing a new implementation detail, this chapter introduces the reader to a completely new class of Bluetooth Low Energy devices, that is, Beacons.

We will...