The rising of new technology i.e, Internet of Things, heavy industry has started adopting sensor-based data collection to solve its biggest challenges, principal among them process downtime in the form of shutdowns and process delays.Machine monitoring also called predictive maintenance or condition monitoring is the practice of monitoring electrical equipment through sensors in order to accumulate diagnostic data. To achieve this, data acquisition systems and data loggers are used to monitor all kinds of equipment, such as boilers, motors, and engines.Following condition are measured:
- Temperature and Humidity Data Monitoring
- Current and Voltage Monitoring
- Vibration Monitoring:In this article, we will read Temperature, vibration and publish the data on Ubidots. Ubidots supports graphs, UI, notifications, and emails. These features make it ideal for predictive maintenance analysis. We will also get the data in google sheets which will make predictive maintenance analysis more easier.
Hardware:
- ESP-32
- IoT Long Range Wireless Vibration And Temperature Sensor
- Long Range Wireless Mesh Modem with USB Interface
Software Used:
- Arduino IDE
- Ubidot
Library Used:
- PubSubClient Library
- Wire.h
This library provides a client for doing simple publish/subscribe messaging with a server that supports MQTT
For more information about MQTT, visit mqtt.org.
Download
The latest version of the library can be downloaded from GitHub
Documentation
The library comes with a number of example sketches. See File > Examples > PubSubClient within the Arduino application.Full API Documentation.
Compatible Hardware
The library uses the Arduino Ethernet Client api for interacting with the underlying network hardware. This means it Just Works with a growing number of boards and shields, including:
- Arduino Ethernet
- Arduino Ethernet Shield
- Arduino YUN – use the included YunClient in place of EthernetClient, and be sure to do a Bridge.begin() first
Arduino WiFi Shield - if you want to send packets greater than 90 bytes with this shield, enable the MQTT_MAX_TRANSFER_SIZE () option in PubSubClient.h.
- Sparkfun WiFly Shield – when used with this library
- Intel Galileo/Edison
- ESP8266
- ESP32The library cannot currently be used with hardware based on the ENC28J60 chip – such as the Nanode or the Nuelectronics Ethernet Shield. For those, there is an alternative library available.
The Wire library allows you to communicate with I2C devices, often also called "2 wire" or "TWI" (Two Wire Interface), can download from Wire.h
Basic Usage
- Wire.begin()Begin using Wire in master mode, where you will initiate and control data transfers. This is the most common use when interfacing with most I2C peripheral chips.
- Wire.begin(address)Begin using Wire in slave mode, where you will respond at "address" when other I2C masters chips initiate communication.
Transmitting
- Wire.beginTransmission(address)Start a new transmission to a device at "address". Master mode is used.
- Wire.write(data)Send data. In master mode, beginTransmission must be called first.
- Wire.endTransmission()In master mode, this ends the transmission and causes all buffered data to be sent.
Receiving
- Wire.requestFrom(address, count)Read "count" bytes from a device at "address". Master mode is used.
- Wire.available()Retuns the number of bytes available by calling receive.
- Wire.read()Receive 1 byte.
Steps to send data to Labview vibration and temperature platform using IoT long-range wireless vibration, temperature sensor and long-range wireless mesh modem with USB interface:
- First, we need a Labview utility application which is ncd.io Wireless Vibration and Temperature Sensor.exe file on which data can be viewed.
- This Labview software will work with ncd.io wireless Vibration Temperature sesnor only
- To use this UI, you will need to install following drivers Install run time engine from here 64bit
- 32 bit
- Install NI Visa Driver
- Install LabVIEW Run-Time Engine and NI-Serial Runtime
- Getting started guide for this product.
- Download and include the PubSubClient Library and Wire.h Library.
- You must assign your unique Ubidots TOKEN, MQTTCLIENTNAME, SSID (WiFi Name) and Password of the available network.
- Compile and upload the Ncd__vibration_and_temperature.ino code.
- To verify the connectivity of the device and the data sent, open the serial monitor. If no response is seen, try unplugging your ESP32 and then plugging it again. Make sure the baud rate of the Serial monitor is set to the same one specified in your code 115200.
- Create the account on Ubidot.
- Go to my profile and note down the token key which is a unique key for every account and paste it to your ESP32 code before uploading.
- Add a new device to your Ubidot dashboard name ESP32.
- Inside device create new variable name sensor in which your temperature reading will be shown.
- Create dashboard in ubidots.
OUTPUT
1) Select Events (from the Data dropdown).
2) To create a new event, click the yellow plus icon in the upper right corner of the screen.
Types of Events: Ubidots support already integrated events to allow you to send Events, Alerts, and Notifications to those who need to know, when they need to know. Ubidots' prebuilt integrations include:
- Email notifications
- SMS notifications
- Webhook events - learn more
- Telegram notifications
- Slack notifications - learn more
- Voice Call notifications - learn more
- Back to Normal notification - learn more
- Geofence notifications - learn more
3) Then choose a device and associating variable that indicates the devices' "values".
4) Now selct a thresold value for your event to trigger and compare it to device values and also select time to trigger your event.
5) Establish and configure which actions are to be executed and the message to the receiver: Send SMS, Email, Webhooks, Telegrams, Phone Calls, SLACK, and webhooks to those who need to know.[
6) Configure the Event notice.
7) Determine the activity window the events may/may not be executed.
8) Confirm your Events.
Output of Event in Your MailIn this we can extract the data stored in the Ubidots cloud for further analysis.The possibilities are enormous; for instance, you could create an automatic report generator and send it to your customers every week.
Another application would be device provisioning; if you have thousands of devices to deploy, and their information is in a Google Sheet, you could create a script to read the sheet and create a Ubidots data source for every line on the file.Steps to do this-
- Create a Google Sheet and add two sheets to it with these names:
1) Variables
2) Values
- From your Google Sheet, click on "Tools" then "Script Editor...", then "Blank Project".
- Open the Script Editor.
- Add the code below (in the code section) to the script Script.
- Done! now open your Google Sheet again and you'll see a new menu to trigger the functions.
Comments
Please log in or sign up to comment.