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

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 as we set up Firebase to use with our Android client.

Note

Firebase can be used with Android, iOS, OS X, Web, and Unity clients.

Apart...