Arduino cloud data logger: Step by step guide

Discover how to build an Arduino cloud data logger project based on Xively.

This post describes how to develop an Arduino cloud data logger that sends data (retrieved from sensors) to Xively IoT cloud platform. This platform is very interesting and provides several useful features for building IoT projects. Moreover, using the data collected, we will build an IoT dashboard to visualize the results using charts.

What is an Arduino cloud data logger? Well, the answer is very easy. It is a system data acquires data from sensors connected to Arduino (or other devives) and stores this information somewhere. In this Arduino data logger project, we will connect Arduino to Xively (the IoT cloud platform). We get the data using sensors, logging the values to the cloud. In the end, we will explore how to create a dashboard using the data collected.

Before starting it is useful to look at Xively IoT platform.

What is Xively Platform?

Before diving into the details of this Arduino cloud data logger project is useful to know more about Xively. This is the IoT cloud platform that will store the data.

Xively is an IoT cloud platform that is “an enterprise platform for building, managing, and deriving business value from connected products”. Moreover, it provides a cloud-based API with an SDK that simplifies the development process. It supports several prototyping board and technologies:

  • Android
  • Arduino
  • Arm mbed
  • C
  • Java

and much more. Please, refer to their library web site to find more information. In other words, Xively is a Paas(Platform As a Service) that exposes its services via RESTful APIs.
Moreover, Xively supports messaging service based on MQTT protocol.If you want to have more information about this IoT platform read Xively Architecture. In this IoT project tutorial, we will use the free Xively account.

Arduino cloud data logger overview

Now we know a bit more about Xively and the services it provides, it is time to start the  IoT data logging project and discover how to make our Arduino data logger. As an example, we will build a simple system that monitors the plant status health using a set of sensors that help us to measure environmental conditions and the soil moisture. In more details, we will create an IoT data logging system that logs temperature, pressure and so on.
If you remember, we have already explained this project in a previous post called “Smart plant system“. In this post, we will explore how we can achieve the same result using a different IoT cloud platform.

The picture of how sensors are connected to Arduino is shown below:

 

Arduino cloud data logger system overview with sensors
This data logger project uses Arduino Uno and a set of sensors:

  • DHT11: Temperature and humidity sensor
  • TEMT6000: Light intensity sensor
  • YL-38 + YL-69: Soil moisture sensor

Arduino logs all values read from these sensors to Xively that in turn stores the values to the cloud. We will use these values to create an IoT dashboard to visualize the logged data.

Xively definitions

Xively uses some basic concepts:

Xively device: It is your “device” or the IoT project you are building. Consider it as an envelope containing the data.

Channels: It is the streaming coming from your sensors. Usually, the channel number is equal to the sensor number (as long as you want to monitor them all). So the first step is adding the “device” to our account:
xively device setup

Then we define the channels. In this example we have 4 channels as it is clear in the picture below:

xively channel config

That’s all. Now you have to use the Xively library for your device (in our example Arduino Uno) and start sending data to the cloud. The code is very simple:
[sociallocker] [c] #include "DHT.h"
#define DHTPIN 2
#define DHTTYPE DHT11

byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
EthernetClient client;
IPAddress ip(192, 168, 1, 40); // Arduino IP Add
IPAddress myDns(8,8,8,8);
IPAddress myGateway(192,168,1,1);

int moisturePin = 0;
int lightPin = 3;
DHT dht(DHTPIN, DHTTYPE);

// Xively setup
char xivelyKey[] = "your_Xively_key_here";
char lightId[] = "Light";
char tempId[] = "Temperature";
char pressId[] = "Humidity";
char moistId[] = "Moisture";

XivelyDatastream datastreams[] = {
XivelyDatastream(lightId, strlen(lightId), DATASTREAM_FLOAT),
XivelyDatastream(tempId, strlen(tempId), DATASTREAM_FLOAT),
XivelyDatastream(pressId, strlen(pressId), DATASTREAM_FLOAT),
XivelyDatastream(moistId, strlen(moistId), DATASTREAM_FLOAT)
};

XivelyFeed feed(739668463, datastreams, 4);
XivelyClient xivelyclient(client);

void setup() {
Serial.begin(9600);
Serial.print("Starting…");
setupNet();
dht.begin();
}

void loop() {
float soilHum = analogRead(moisturePin);
soilHum = (1023 – soilHum) * 100 /1023;
Serial.println("Soil Humidty: " + String(soilHum));

// Read light
float volts = analogRead(lightPin) * 5.0 / 1024.0;
float amps = volts /10000.0;
float microamps = amps * 1000000;
float lux = microamps * 2.0;

Serial.println("Lux: " + String(lux));

float h = dht.readHumidity();
float temp = dht.readTemperature();

Serial.println("Temp: " + String(temp,2));
Serial.println("Hum: " + String(h,2));

// Prepare to send data
datastreams[0].setFloat(lux);
datastreams[1].setFloat(temp);
datastreams[2].setFloat(h);
datastreams[3].setFloat(soilHum);
int ret = xivelyclient.put(feed, xivelyKey);
Serial.println("Client returns ["+String(ret)+"]");
delay(5000);
}

void setupNet() {
Serial.println("Set up network access…..");
if (Ethernet.begin(mac) == 0) {
Serial.println("Failed to configure Ethernet using DHCP");
// try to congifure using IP address instead of DHCP:
Ethernet.begin(mac,ip,myDns,myGateway);
}
}
[/c] [/sociallocker]

Please notice that the sketch defines a XivelyDatastream that holds the four stream we send to Xively platform.
Each channel defined previously using Xively interface corresponds to the  XivelyDatastream. Remember to use the data stream the same name used in the Xively interface.
Now if we upload the sketch to Arduino and run it, we will notice that Xively receives the data:

arduino temperature and humidity logger
xively cloud data
arduino data logger project

This is the first step in our journey to build an IoT data logger project based on Arduino.

As you can notice from the pictures above, Arduino logs data acquired from sensors. At the end of this step, we build an Arduino temperature and humidity data logger that sends the data to the cloud. The next step in this Arduino data logger project is visualizing this information using charts.

Create an IoT dashboard

Once the software part is working and the wiring aspects are defined the last step is analyzing how to create an IoT dashboard using the data stored in Xively. This is the last part of this IoT data logging project based on Arduino.
For this purpose, we will use Freeboard.io. This is a free IoT dashboard tool that can be integrated with Xively easily.
It helps us to represent the information stored in Xively using charts.
The first step is connecting Freeboard.io to Xively. This can be done easily using API Key provided by Xively.

freeboard xively integration

Now it is very simple to create charts connecting them to the Xively channels covered before.

freeboard.io add chart

At the end, you can create your IoT dashboard:

IoT dashboard

 

At the end of this post, hopefully, you gained the knowledge about how to build an Arduino data logger project. The interesting part of this project is the acquiring part where we log data from the sensors sending it to the cloud. You can use other IoT cloud platforms to store the data, the main concepts related to the data logging are still valid.

  • Add Your Comment