icon

ThingSpeak Cloud (Mathworks) | IoT Platform Series - 5

0 35034 Easy

Use MATLAB to analyze IoT Device Data🔢, and monitor on a visual graph 📊. Use trigger to perform actions, like webhooks

What is ThingSpeak?

ThingSpeak is an IoT analytics service 📈 that allows you to aggregate, visualize, and analyze live data streams in the cloud. It is a MathWorks service specifically for IoT. It provides -

Instant visualizations of data posted by your devices to ThingSpeak.With the ability to execute MATLAB code in ThingSpeak, we can perform online analysis and process data as it comes in.Send data from any internet-connected device directly to ThingSpeak using a Rest API or MQTTCloud-to-cloud integrations with The Things Network, Senet, the Libelium Meshlium gateway, and Particle.ioCreate sophisticated event-based email alerts that trigger based on data coming in from our connected devices.

 

 

 

Get Started🗽

ThingSpeak is often used for prototyping and proof-of-concept IoT systems that require analytics.

Analytics support is derived from MATLAB, and therefore much better insights on the data can be generated in a fast pace environment⚡

 

 

 

Collect - From Devices to Cloud

ThingSpeak enables sensors, instruments, and websites to send data to the cloud where it is stored in either a private or a public channel. Once data is in a ThingSpeak channel, you can analyze and visualize it, calculate new data, or interact with social media, web services, and other devices🌐

Let us create a channel to store and view our Device Data -

Sign In to ThingSpeak™ using your MathWorks® Account credentials, or create a new account.Click Channels > MyChannels.
On the Channels page, click New Channel.
Check the boxes next to Fields 1 -> 2. Enter these channel setting values:
Name: Average Room Temperature
Field 1: Temperature (ºC)
Field 2: Humidity
Click Save Channel at the bottom of the settings.Now change the Field Name according to the Channel Configuration - Use Edit Button to use the same name as the data value type.
Below tab categories are visible in the channel now -
Private View: This tab displays information about your channel that only you can see 🔏
Public View: If you choose to make your channel publicly available, use this tab to display selected fields and channel visualizations 👁
Channel Settings: This tab shows all the channel options you set at creation. You can edit, clear, or delete the channel from this tab 🔧
Sharing: This tab shows channel-sharing options. You can set a channel as private, shared with everyone (public), or shared with specific users ☁
API Keys: This tab displays your channel API keys. Use the keys to read from and write to your channel 🗝
Data Import/Export: This tab enables you to import and export channel data 📩We can also see the visualization charts created on the private view (empty without data), as per the field we added on channel settings.

On the Channels page, click API Keys. Keep the browser open to access the WRITE API Key to WRITE data to the Cloud.

 

 

 

Hardware - From Device to Cloud

As hardware, we will be using the ESP32 Dev Board. Which uses Wi-Fi to connect to the Internet. There are 2 ways to write the code for the device. Using ThingSpeak library, and using HTTP requests.

1. Using Library -

On Arduino IDE, select Sketch > Include Library > Manage Libraries.Search 'ThingSpeak' and Install the latest version.
Now, Go to File > Examples > ThingSpeak > ESP32 > WriteMultipleFields
The file that opens, contains the main code and secrets file.
In the secrets file, add the network details and ThingSpeak details
CODE
#define SECRET_SSID "xxxxxxx"	// replace MySSID with your WiFi network name
#define SECRET_PASS "xxxxxxx"	// replace MyPassword with your WiFi password

#define SECRET_CH_ID #####	// replace ##### with your channel number
#define SECRET_WRITE_APIKEY "xxxxxx" // replace xxxxxx with your channel write API Key
ThingSpeak information can be found in the channel settings. You can access the GitHub repository of the project from here. -

Now, the main code has a few changes, since we are only using 3 field data. Apart from that, use a sensor (if available) for 🌡temperature and 💧 humidity data. Else, use a random function. You can access the GitHub repository of the project from here.
CODE
int temp = random(25,30);
int hum = random(0,100);
Once we insert the initialization in the final code -
CODE
#include <WiFi.h>
#include "secrets.h"
#include "ThingSpeak.h" 

char ssid[] = SECRET_SSID;   // your network SSID (name)
char pass[] = SECRET_PASS;   // your network password
int keyIndex = 0;            // your network key Index number (needed only for WEP)
WiFiClient  client;
unsigned long myChannelNumber = SECRET_CH_ID;
const char * myWriteAPIKey = SECRET_WRITE_APIKEY;

// Initialize our values
int temp = random(25,30);
int hum = random(0,100);

void setup() {
Serial.begin(115200);  //Initialize serial
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo native USB port only
}
WiFi.mode(WIFI_STA);
ThingSpeak.begin(client);  // Initialize ThingSpeak
}

void loop() {
// Connect or reconnect to WiFi
if(WiFi.status() != WL_CONNECTED){
Serial.print("Attempting to connect to SSID: ");
Serial.println(SECRET_SSID);
while(WiFi.status() != WL_CONNECTED){
WiFi.begin(ssid, pass);  // Connect to WPA/WPA2 network. Change this line if using open or WEP network
Serial.print(".");
delay(5000);
}
Serial.println("\nConnected.");
}

// set the fields with the values
ThingSpeak.setField(1, temp);
ThingSpeak.setField(2, hum);

// write to the ThingSpeak channel
int x = ThingSpeak.writeFields(myChannelNumber, myWriteAPIKey);
if(x == 200){
Serial.println("Channel update successful.");
}
else{
Serial.println("Problem updating channel. HTTP error code " + String(x));
}

// change the values
temp = random(25,30);
hum = random(70,80);

delay(20000); // Wait 20 seconds to update the channel again
}
Upload the code to the device and open the serial monitor for any error messages. If there is no error, the serial monitor should look like this -
Visit the channel on ThingSpeak, and open the private view tab, if the data is successfully sent to the cloud, we'll see the values on our graph directly -

Now that we have sent the data to the cloud, let us use MATLAB to analyze it and perform actions on it.

 

 

 

Analyze - Act | Using existing Device Data

ThingSpeak provides access to MATLAB to make sense of data. We can -

Convert, combine, and calculate new dataSchedule calculations to run at certain timesVisually understand relationships in data using built-in plotting functionsCombine data from multiple channels to build a more sophisticated analysis

Once data is received, it can be used for analysis to calculate something in particular. Let us calculate the Dew Point Temperature with the available data, which requires Temperature and Humidity.

To view the data, let us create a new channel to view the updated analyzed data.

Now, back to the Temp-Humid Channel, let us implement simple calculations using MATLAB Analysis -

Click on MATLAB Analysis on the channel page
Choose the Custom template (no starter code). And click 'Create'.Provide below details and code -
Name - Calculate Dew Point
Code -
CODE
% Channel ID to read data from (Temp-Humid)
readChID = 000000;

% Channel ID to send data (Dew Point)
writeChID = 000000;

% Enter Write API key between the ''
writeAPIKey = 'XXXXXXXXXXX';

% Read temperature and humidity from device
temp = thingSpeakRead(readChID,'Fields',1);
hum = thingSpeakRead(readChID,'Fields',2);
display(hum,'Humidity');
display(temp,'Temperature');

% Calculate and display dew point from device data
dew = temp - ((100-hum)/5);
display(dew,'Dew Point Temp');

% Plot dew point to your channel
thingSpeakWrite(writeChID,dew,'Fields',1,'WriteKey',writeAPIKey);
The above code uses thingSpeakRead to read the latest data on the field, and use the formula to analyze and then we can upload it using thingSpeakWrite to a channel.Use 'Save and Run' to validate the code and formula. It will display in the output screen, whatever we have used with display() function.
Upon using the 'Save and Run' it also writes the Dew Point Temp data to the field. This data is viewed on the channel graph as well -
To make sure that the dew point is automated, we can use the 'React' feature to trigger the code whenever there is a change in the field data. Scroll down and select the React feature in the MATLAB analysis code page -
Now create a trigger with the below configuration based on your name of the channel
Above configuration will make sure to trigger a reaction and update the Dew Point Channel Automatically using the MATLAB code on Cloud.

There is one more way we can analyze our data, using the MATLAB Visualization -

Click on MATLAB Visualization on the Dew Point channel page -
Choose the Custom template (no starter code). And click 'Create'.Provide below details and code -
Name - Standard and Dew Point Temperature
Code -
CODE
% Channel ID1 - Temperature Channel
readChannelID1 = 000000;
% Channel ID2 - Dew Channel
readChannelID2 = 0000000;
% Temperature Field ID
TemperatureFieldID = 1;
% Dew Field ID
DewFieldID = 1;

% Channel Read API Key between the '' below:
readAPIKey = 'XXXXXXXXXXX';


[data1, timeStamps] = thingSpeakRead(readChannelID1, 'Fields',TemperatureFieldID,'NumPoints', 10);
[data2, timeStamps] = thingSpeakRead(readChannelID2, 'Fields',DewFieldID,'NumPoints', 10, 'ReadKey', readAPIKey);

% Extract the temperature data from the first column
temperatureData = data1(:, 1);
% Extract the windspeed data from the second column
DewSpeedData = data2(:, 1);

% Visualize Data
yyaxis left
plot(timeStamps, temperatureData);
ylabel('Standard Temp');
yyaxis right
plot(timeStamps, DewSpeedData);
ylabel('Dew Temp');
Use 'Save and Run' to validate the code and formula. It will display in the output screen, whatever we have used with plot() function -
Enable the plot to be visible on the Channel Page View
Channel Page of Temperature and Humidity with Dew Temp Analysis

 


 

License
All Rights
Reserved
licensBg
0