Connecting Arduino to Firebase to Send & Receive Data
by Electropeak in Circuits > Arduino
26503 Views, 5 Favorites, 0 Comments
Connecting Arduino to Firebase to Send & Receive Data

In this tutorial, you will learn how to upload and download data to/from a Firebase database with Arduino UNO and ESP8266 module.
Storing data (like sensors data) to a database that can be accessed from anywhere by the internet may be very useful. Firebase makes storing and retrieving data easy.
What You Will Learn:
- How to make a database in Firebase
- How to upload (download) data to (from) Firebase
- How to use ESP8266 as a connection between Arduino and Firebase
What Is Firebase?

Firebase is a mobile and web application development platform developed by Firebase, Inc. in 2011, then acquired by Google in 2014. As of October 2018, the Firebase platform has 18 products which are used by 1.5 million apps.
Firebase provides multiple services as following:
Firebase Analytics which is a free application measurement solution providing insight into app usage and user engagement.
Firebase Cloud Messaging (FCM) which is a cross-platform solution for messages and notifications for Android, iOS, and web applications, which is cost-free as of 2016.
Firebase Auth which is a service that can authenticate users using only client-side code. It supports social login providers Facebook, GitHub, Twitter and Google (and Google Play Games). Moreover, it includes a user management system whereby developers can enable user authentication with email and password login stored with Firebase.
Required Materials
Connecting Arduino to Firebase

First, you should create an account in Firebase. It’s quite easy to create an account; Go to “firebase.google.com”, click on Console, sign in by your Google account, and thenmake a new project. After creating a new project, add a name and enable the test mode. You can add some value manually in the realtime database part. You can get JSON form of your data by adding “.json” at the end of the database URL. Watch this step video for more information.
You can read or transfer data from your database by Arduino and ESP8266. You need a Host name and an Auth key of your firebase project. Then, you should add the Firebase Arduino library and upload the code. If it’s the first time you are using an Arduino board, just follow these steps:
Go to www.arduino.cc/en/Main/Software and download the Arduino software compatible with your OS. Install the IDE software as instructed.
- Run the Arduino IDE and clear the text editor and copy the following code in the text editor.
- Choose the board in: tools > boards, and select your Arduino Board.
- Connect the Arduino to your PC and set the COM port in tools > port.
- Press the Upload (Arrow sign) button.
- You’re all set!
Circuit
.jpg)
Code
Necessary Files & Downloads
Download this file and check other examples of connecting Arduino to Firebase
What’s Next?
- Make a real-time connection between two Arduino based systems
- Add other Google services to your Arduino projects.