WHITE PAPER
The Most Trusted MQTT Platform for loV and Connected Cars →

Bridging FINS Data to MQTT: Protocol Explained and Hands-on Tutorial

Neuron Team
Aug 11, 2023
Bridging FINS Data to MQTT: Protocol Explained and Hands-on Tutorial

In this blog, we use Neuron and EMQX from EMQ to achieve FINS to MQTT bridging. Neuron can convert the FINS protocol to MQTT, while EMQX acts as an MQTT broker, handling massive connections and data.

The Architecture of FINS to MQTT Bridging

Neuron is a modern industrial IoT connectivity server that can connect various industrial devices that use standard protocols or device-specific protocols, achieving interconnection between industrial IoT platforms and various devices. As a lightweight industrial software, Neuron can run on various IoT edge hardware devices with limited resources. It aims to solve the problem of unified access to data-centric automation devices and provide basic support for intelligent manufacturing.

Learn more about Neuron: Neuron: Industrial IoT Connectivity Server

EMQX is a large-scale and elastic cloud-native distributed IoT MQTT message server. As the most scalable MQTT message server worldwide, EMQX provides efficient and reliable mass connection of IoT devices, capable of high-performance real-time processing of message and event flow data, helping users quickly build critical IoT platforms and applications.

Learn more about EMQX: EMQX Enterprise: Enterprise MQTT Platform At Scale

The following diagram shows how Neuron collects data from the edge and converts it into MQTT for uploading to EMQX. diagram

Bridging FINS to MQTT via Neuron

This section will introduce how to use Neuron to collect data from FINS TCP devices, upload the collected data to EMQX, and view it using MQTTX.

EMQX Quick Start

EMQX provides multiple installation methods, and users can check the detailed installation methods in the documentation. This example uses container deployment to quickly experience EMQX.

Run the following command to obtain the Docker image:

docker pull emqx/emqx-enterprise:5.1.0

Run the following command to start the Docker container:

docker run -d --name emqx-enterprise -p 1883:1883 -p 8083:8083 -p 8084:8084 -p 8883:8883 -p 18083:18083 emqx/emqx-enterprise:5.1.0

Access the EMQX Dashboard by visiting http://localhost:18083 (replace “localhost” with your actual IP address) through a web browser. This allows you to manage device connections and monitor related metrics. Keep the Docker container running for this tutorial. If interested, refer to the documentation to experience more features in the Dashboard.

Initial username: admin, initial password: public

Neuron Quick Start

Neuron provides various installation methods, and users can view detailed installation methods in the documentation. This example uses containerized deployment.

Obtaining Docker images:

$ docker pull emqx/neuron:latest

Starting the Docker container:

$ docker run -d --name neuron -p 7000:7000 --privileged=true --restart=always emqx/neuron:latest

Open a web browser and enter the gateway address and port number to run Neuron. This will take you to the management console page, with the default port number being 7000. You can access it through your browser at http://localhost:7000/ (replace "localhost" with your actual IP address).

Step 1: Log in

Log in with the initial username and password:

  • Username: admin

  • Password: 0000

Step 2: Add a Southbound Device

In the configuration menu, select South Devices to enter the South Devices interface. Click Add Device to add a new device.

  • Name: fill in the name of the device, such as fins-tcp-1";

  • Plugin: select the plugin FINS TCP from the drop-down box.

Step 3: Set Parameters for Southbound Devices

After adding a southbound device, it automatically enters the device configuration interface, where you can fill in the parameters and submit them. The demo equipment uses Omron CP2E.

  • Equipment Type: select CP;

  • PLC IP Address: input PLC IP;

  • PLC Port: default 9600;

Step 4: Create a Group in the Device Card

Click on any blank space on the device node card to enter the group list management interface, and click Create to bring up the dialog box for creating a group. Fill in the parameters and submit:

  • Group Name: Fill in the group name, such as "group-1";

  • Interval: 1000.

Step 5: Add Tags to the Group

Click on any blank space of the group card, enter the point list management interface, and click Create to enter the page for adding data points.

图片png

Fill in the parameters of the data point and submit it:

  • Name: Fill in the location name, such as tag-1;

  • Attribute: Select the location attribute from the dropdown menu, such as Read, Write;

  • Type: Select the data type from the dropdown menu, such as INT16;

  • Address: Fill in the driver address, for example, CIO1. CIO represents the CIO area of the PLC in and 1 represents the register address of the location.

  • Description, Decimal, Precision: not filled.

Step 6: View Collected Data in Data Monitoring

Select Monitoring → Data Monitoring from the left navigation menu. View the values read by the created data points, as shown in the following figure.

图片png

The data monitoring displays values in groups:

  • South Device: Select the southbound device you want to view from the drop-down menu, for example, the created fins-tcp-1;

  • Group Name: Select the group you want to view under the selected southbound device from the drop-down menu, for example, the created group-1;

  • After selecting, the page will display all values of points read in the selected group.

Step 7: Add Northbound Plugin Modules to the Application.

By creating a northbound application, Neuron establishes a connection with the northbound application and uploads collected device data to EMQX.

Select the North Apps in the Configuration menu, click Add Application, as shown in the figure below.

图片png

Add an MQTT cloud connection module:

  • Name: Fill in the application name, for example, MQTT;

  • Plugin: Select the MQTT plugin from the drop-down.

Step 8: Configure Northbound Application Parameters

After adding the northbound application, it will automatically enter the application configuration interface to fill in the parameters and submit.

Set up MQTT connection:

  • Client ID: Note that this ID should be independent of each other(Duplicate IDs will cause the client to be kicked). For example, set to MQTT-12123;

  • QoS Level: Default to 0;

  • Upload Format: Default to Values-format;

  • Write Request Topic: Default to /neuron/MQTT/write/req;

  • Write Response Topic: Default to /neuron/MQTT/write/resp;

  • Offline Data Caching: Default to off;

  • Broker Host: Fill in the address of the created emqx broker, which is usually localhost, i.e. your actual IP address.

  • Broker Port: Default to 1883;

  • Username, Password: Not required;

  • SSL: Default to off.

Step 9: Subscribe to the Southbound Point Group

Click on any blank space of the newly created MQTT application node card to enter the subscription group interface, and click "Add Subscription".

Subscribe to the data group of southbound devices:

  • South device: Select the created southbound device from the dropdown list, for example, fins-tcp-1;

  • Group: Select the group to be subscribed to from the dropdown list, for example, group-1;

  • Topic: The MQTT topic, which is default set as /neuron/MQTT/fins-tcp-1/group-1 in this example. Next, subscribe to this topic and receive messages in MQTTX.

Step 10: View data in the MQTT Client.

After subscribing, you can use an MQTT client to connect to EMQX and view the reported data. Here we use MQTTX, a powerful cross-platform MQTT client tool, which can be downloaded from the official website.

Once MQTTX is launched, click + New Connection on the main page, fill in the configuration parameters, and click Connect in the upper right corner.

  • Name: Naming messages facilitates viewing. For example, naming them fins-tcp.

  • Client ID: Using the default value is ok; ensure that the ID is independent;

  • Host: Select mqtt:// and fill in localhost(replace "localhost" with your actual IP address).

  • Port: 1883.

Optional parameters can be filled in, and then click the Connect button on the upper right corner after completion. After a successful connection, subscribe to the topic.

  • Click Add Subscription, and the topic should be the same as the one in step 9. For example, fill in /neuron/MQTT/fins-tcp-1/group-1;

After a successful subscription, you can see that MQTTX continues to receive data collected and reported by Neuron. As shown in the following figure.

MQTTX

Summary

With the growing trend towards cloud-edge collaboration in the industrial 4.0 wave, FINS bridging is becoming an increasingly popular choice for a common IoT protocol. By utilizing the solution mentioned in this blog, users can safely and conveniently implement the IIoT platform on demand with enhanced connectivity, resulting in significant improvements in production efficiency, cost savings, and product quality.

Try Neuron for Free
The Industrial IoT connectivity server
Get Started →

Related Posts