Jump to content
Electronics-Lab.com Community

Step by Step Method to use Qubitro Device Data Platform


Recommended Posts

What is Qubitro?

Qubitro is an IoT (Internet of Things) platform that provides tools and services for connecting, managing, and analyzing IoT devices and data. It provides a cloud-based platform where users can securely connect their IoT devices and collect data from sensors and actuators.

Akshayan_Sinha_story_image_1687096840084

It supports a wide range of communication protocols and provides device management capabilities, monitoring device data, linking with third-party webhooks, and creating rules to trigger based on conditions, etc. All of it with a Great UI ❤

 

Get PCBs for Your Projects Manufactured

image_3JJb6iqRSm.png?auto=compress%2Cfor
 

You must check out PCBWAY for ordering PCBs online for cheap!

You get 10 good-quality PCBs manufactured and shipped to your doorstep for cheap. You will also get a discount on shipping on your first order. Upload your Gerber files onto PCBWAY to get them manufactured with good quality and quick turnaround time. PCBWay now could provide a complete product solution, from design to enclosure production. Check out their online Gerber viewer function. With reward points, you can get free stuff from their gift shop.

Getting Started

To get started with Qubitro, we will first need to create an account. Go to the Qubitro website (https://www.qubitro.com/) and click on the "Sign Up" button. You will be prompted to enter Full Name, Email Address,Country, and password to create your account.

Akshayan_Sinha_story_image_1687096840574

Once, we have created the account, we can log in from https://portal.qubitro.com/login. However, we shall automatically be logged in to our account.

Create a New Project

Once you have logged in, you will be prompted to create a project. Enter a name for your project and mention a description for your project.

Akshayan_Sinha_story_image_1687096841230

Add Devices

Next, you will need to add devices to your application. Go to the Project (if not already open), there we can see a button [+ New Source]. From this section, we will have 3 major sections -

 

1. Communication Protocol

With a prompt to choose between LoRaWAN, MQTT, & Cellular. We can choose the protocol that best suits our use-case.

Akshayan_Sinha_story_image_1687096841604

I choose MQTT to get started with the platform basics. And since I shall be using Arduino IDE for programming the board, I went ahead with the MQTT Broker (Qubitro has its own broker - we shall see it in the upcoming section). In case you wish to know how the Toit platform works, you can check my Tutorial on Toit.io

2. Device Details

I shall be using an ESP32 Dev Board, and therefore entered the details as per the image below -

Akshayan_Sinha_story_image_1687096841944

3. Credentials

In the next step, we receive credentials, to connect to the MQTT Broker. We can use this detail to connect to the broker as a client - to Publish or Subscribe.

Akshayan_Sinha_story_image_1687096842540

Now that we have the server, port, username and password we are all ready to send data to the Qubitro Cloud. Copy these details in a safe place (We can view them later in the device settings as well though)

Hardware - From Device to Cloud

Once you have configured your devices, you can start collecting data. Qubitro provides a range of tools for data collection and analysis, including real-time data visualization, data logging, and data filtering.

We shall upload a code on ESP32 using Arduino IDE to send data to Qubitro -

#include <WiFiClientSecure.h>
#include <PubSubClient.h>
#include <HTTPClient.h>
#include <ArduinoJson.h>

These are the necessary libraries for establishing an MQTT connection, handling HTTP requests, and working with JSON data.

const char* ssid = "xxxxxxxxx";
const char* password = "xxxxxxxxx";
String topic = "xxxxx";
String mqtt_server = "broker.qubitro.com";
String mqttuser = "xxxxxxxxxxxxxxxxxxxxxx";
String mqttpass = "xxxxxxxxxxxxxxxxxxxxxx";
String clientId = "xxxxxxxxxxxxxxxxxxxxxx";

These variables store the Wi-Fi credentials (ssid and password), MQTT broker server address (mqtt_server), MQTT authentication credentials (mqttuser and mqttpass), MQTT client ID (clientId), and the MQTT topic (topic) to which the data will be published.

WiFiClientSecure espClient;
PubSubClient client(espClient);

float humidity = 0;
float temp = 0;

Create an instance of WiFiClientSecure and PubSubClient classes to establish a secure connection with the MQTT broker. Also, initializing default value of temperature and humidity.

#define MSG_BUFFER_SIZE (500)
char msg[MSG_BUFFER_SIZE];
char output[MSG_BUFFER_SIZE];

Define the size of the message buffer for storing MQTT messages.

void device_setup() {
  // ... Wi-Fi connection setup ...
}

This function sets up the Wi-Fi connection by connecting to the specified Wi-Fi network (ssid and password).

void reconnect() {
  // ... MQTT reconnection logic ...
}

This function handles the reconnection to the MQTT broker in case of disconnection.

void setup() {
  // ... Initialization code ...
}

The setup() function is the entry point of the code. It initializes the serial communication, sets up the device, establishes a connection with the MQTT broker, and prepares the secure connection using WiFiClientSecure and PubSubClient objects.

void loop() {
  // ... Main code loop ...
}

The loop() function is the main execution loop of the code. It checks the MQTT connection, publishes the simulated temperature and humidity data to the MQTT topic, and then waits for a delay of 1 second before repeating the process.

Inside the loop() function, you'll notice the following steps:

  • if (!client.connected()) checks if the MQTT client is connected. If not, it calls the reconnect() function to establish the connection.
  • client.loop() allows the MQTT client to maintain the connection and handle any incoming messages.
  • The temp and humidity variables are randomly generated simulated values.
  • A JSON document is created using the ArduinoJson library to store the temperature and humidity data.
  • The JSON document is serialized into a string format using the serializeJson() function and stored in the output variable.
  • The client.publish() function is used to publish the serialized JSON data to the specified MQTT topic.
  • The serialized JSON data is printed to the serial monitor using Serial.println().
  • A delay of 1 second is added before repeating the loop.

Full version of the code available in the Code Section.

Now that we have written the code, upload it to the ESP32 board and wait for it to send data to cloud.

To check data, go to Device Name that you created, and check for any incoming data in the table. (refresh the table in case data not retrieved)

Akshayan_Sinha_story_image_1687096842960

Create Dashboard

Now that we were able to fetch for real-time data from the ESP32 board and view it on the table of Qubitro. Let us use the visualization feature to plot a graph of the data. Trust me, it takes seconds to setup the whole thing.

  • Go to Dashboards, and create a New Dashboard. Give it a name.
  • Once created, open it and go to Edit > Add Widget > Charts.
  • Click on the new widget > three dots (settings) > Customization.
  • Accordingly, select the data source, chart type and colour for data variables. Follow the below images for reference, and final Graph.

Akshayan_Sinha_story_image_1687096843538

Data source example above

Akshayan_Sinha_story_image_1687096843818

Data Point example above

Akshayan_Sinha_story_image_1687096844125

Finally, I received the above graph based on a 30-minute data logging. If we head back to the main dashboard page, we can have a proper view, and with a view configuration, receive live data in realtime on Qubitro.

  • In the dashboard, click on the chart widget we created, click on edit and drag it to the middle.
  • Stretch and play with the widget according to the need. Resizing it for proper viewing. Remember to save it.

Akshayan_Sinha_story_image_1687096844772

If you are facing trouble with viewing the data with 4 points in the graph period, you can change it in the View Mode's configuration of the graph widget.

Akshayan_Sinha_story_image_1687096845206

Now, using this we can view the data of our device based on our needs!

Akshayan_Sinha_story_image_1687096846161

Rules to Trigger and Integration Services

Finally, Qubitro allows you to integrate with other services such as Twilio, Slack, MailGun, and SendGrid. We can also use the trigger for Webhooks (RAW HTTP request) triggering, You can do this by clicking on the "Rules" tab in the Device section and selecting the service you want to integrate with.

Congratulations! You have now completed the Qubitro IoT Platform documentation tutorial. We hope that this tutorial has provided you with the information you need to get started with Qubitro and create your own IoT application.

If you have any questions or need further assistance, please visit the Qubitro website or contact their support team.

Hurray! 🎉

We have learned another IoT Platform - Qubitro Device Data Platform

esp32_mqtt_qubitro.ino

Link to comment
Share on other sites


Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
  • Create New...