Android Core

IoT Push notifications: Arduino – Firebase – Android

This tutorial describes how to implement IoT push notifications. Using IoT push notifications, we can send notifications to other devices. In this case, we want to send an IoT push notifications from a smart object (like Arduino MKR1000) to a mobile smartphone (i.e. Android smartphone). This project integrates different eco-systems: IoT and Android. This project can have several implementations: for example, we can send a push notification to our smartphone when an alert occurs:

  • gas leakage
  • motion detection
  • higher or lower temperature
  • general failure systems

As example, to show how to use IoT notifications, we will use a motion detection sensor. In other words,  there is an Arduino MKR1000 connected to a sensor (PIR sensor). When the sensor triggers an event, then MKR1000 makes  a call to Firebase server using Firebase API.  With API, the smart object sends an IoT push notifications to an Android smartphone. We can use the same way, to send notifications to other devices like iOS and so on.

The idea, that stands behind this project, is shown below:

As you can see, this project uses Firebase API in a different way mixing different worlds!

In the last article, we described how to use Firebase API to create a push notification, in this article we want to expand it and integrate with Arduino.

iot_notification

Moreover, we have already seen in the last post, how to create an Android app that handles push notification and how to configure it in the Firebase console. If you are new to Firebase, I suggest you reading the previous post so that you have a clear idea how things work.

As Android app, this project uses the app we developed in the previous post. You can download it if you want to test the project.

Arduino MKR1000 PIR project

The first step is connecting Arduino MKR1000 to a PIR sensor. The picture below shows how to wire the sensor to MKR1000.

arduino_notification_firebase-1024x576

The schema is very simple. To know if the PIR sensor detected a movement we have to check if the signal is 1. The sketch is very simple:

int inputPin = 2;
int pirState = LOW;

void setup() {
  pinMode(inputPin, INPUT);
  Serial.begin(9600);
}

void loop() {
   int val = digitalRead(inputPin);
   if (val == HIGH) {
     if (pirState == LOW) {
       Serial.println("Motion detected");
       pirState = HIGH;
       // Motion detected
     }
  }
  else {
   if (pirState == HIGH) {
     Serial.println("Motion ended!");
     pirState = LOW;
     // Motion ended
   }
 }
 delay(5000);
}

As you can notice, the sketch is very simple. We have to read the signal on the input pin and check if it is 1. If it is 1, then we have detected a motion and we can send the notification.

How to send #IoT Push notifications? Follow this tutorial to know how to integrate #arduino… Click To Tweet

MKR1000 WiFi connection

Before sending a notification, we have to connect Arduino MKR1000 to the internet using WiFi. We can slightly modify the code above and add the WiFi connection:

#include <SPI.h>
#include <WiFi101.h>

int inputPin = 2;
int pirState = LOW;

char ssid[] = "Vodafone-xxxxx"; // your network SSID (name)
char pass[] = "yyyyyyyy"; // your network password
int status = WL_IDLE_STATUS;

WiFiClient client;
void setup() {
  pinMode(inputPin, INPUT);
  Serial.begin(9600);

  // attempt to connect to Wifi network:
  while ( status != WL_CONNECTED) {
    Serial.print("Attempting to connect to WPA SSID: ");
    Serial.println(ssid);
    // Connect to WPA/WPA2 network:
    status = WiFi.begin(ssid, pass);
    // wait 10 seconds for connection:
    delay(10000);
  }
  // you're connected now, so print out the data:
  Serial.println("You're connected to the network");
}

All done! Now everything is ready and we can focus our attention on the most interesting part: sending IoT push notification to smartphone.

Sending IoT push notifications

To send a push notification we use the Firebase API. We assume you have already created a project in the Firebase console, if not go back to the previous article and read how to configure a Firebase project.
To send a push notification using Firebase it is necessary:

  1. Authenticate our client
  2. Create the message body in JSON
  3. Send the message to a smartphone

To do it, it is necessary to send some header HTTP parameters and a JSON message.  The first thing is set the Firebase host:

Host: fcm.googleapis.com

then, to authenticate our client we use a secret key, you get from Firebase console:

Authorization: key=AIzaSyC1mHfa_G89CDoNoq2zWhh1iL9---------

then we have to set the content type:

Content-Type: application/json

and finally we specify the HTTP method and the service we want to invoke:

POST /fcm/send HTTP/1.1

The body is in JSON format and is very simple:

{
   "to":"your_phone_key",
   "notification": {
     "body": "test message",
    "title" : "Title"
  }
}

That’s all!! We have to make this request using Arduino HTTP library:

void sendDataToFirebase() {
  String data = "{" ;
  data = data + "\"to\": \"your_smartphone_id\"," ;
  data = data + "\"notification\": {" ;
  data = data + "\"body\": \"Motion detected\"," ;
  data = data + "\"title\" : \"Alarm\" " ;
  data = data + "} }" ;

  Serial.println("Send data...");
  if (client.connect(fcmServer, 80)) {
    Serial.println("Connected to the server..");
    client.println("POST /fcm/send HTTP/1.1");
    client.println("Authorization: key=auth_key");
    client.println("Content-Type: application/json");
    client.println("Host: fcm.googleapis.com");
    client.print("Content-Length: ");
    client.println(data.length());
    client.print("\n");
    client.print(data);
  }
  Serial.println("Data sent...Reading response..");
  while (client.available()) {
   char c = client.read();
   Serial.print(c);
  }
  Serial.println("Finished!");
  client.flush();
  client.stop();
}

So it is very simple to send IoT push notifications and we have integrated two different ecosystems. What will you build using push notifications? Comment below and let me know your experience.At the end of this post, hopefully, you gained a new knowledge about sending IoT push notifications.

At the end of this post, hopefully you gained a new knowledge about sending IoT push notifications.

Francesco Azzola

He's a senior software engineer with more than 15 yrs old experience in JEE architecture. He's SCEA certified (Sun Certified Enterprise Architect), SCWCD, SCJP. He is an android enthusiast and he has worked for long time in the mobile development field.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
ALEJANDRO A MAZZONI
ALEJANDRO A MAZZONI
5 years ago

Sorry for my English. I’m from Argentina and I speak Spanish. I tried this tutorial and it worked correctly if in the place of data = data + “\” to \ “: \” your_smartphone_id \ “,”; your_smartphone_id = “yhjhe8623hjeeuij3ksa0wqsas” This fictitious value is the token of the destination phone of the notification. data = data + “\” to \”: \”yhjhe8623hjeeuij3ksa0wqsas\”,”; and this works! However, if I want to replace smartphone_id with a variable, example; Destination = “6892171287gvsaugsgsa” in the way: data = data + “\” to \ “: \” destination \ “,” I can not understand the escape characters and… Read more »

Back to top button