A diagram illustrating how E2C Pro uses Node-RED and InfluxDB to create a closed-loop process control system at the edge.

Edge2Cloud Pro Closed-Loop Industrial Process Management: Execution to Analysis

Written by: Bill Chen

|

Published on

|

Time to read 5 min

Bill Chen,Technical Support Engineer at Robustel

Bill Chen is a senior industrial Internet technical support expert, focusing on solution design and network troubleshooting. Proficient in industrial network protocols, good at OT/IT integration architecture optimization, quickly locating and solving problems such as device connection and data anomalies. With more than 10 years of experience, we serve more than 100 customers in manufacturing, energy and other industries, and help companies stabilize production and increase efficiency with efficient solutions.

Summary

In modern manufacturing, agility is key. However, industrial process management—the act of changing machine parameters, updating recipes, or shifting production batches—is often a rigid, manual, and on-site task. This creates costly downtime and a critical gap between business decisions and factory floor execution.

The E2C Pro edge computing platform, running on gateways like the Robustel EG5120, fundamentally solves this problem.

By using its integrated Node-RED (Robustel Flow) capabilities, E2C Pro acts as an intelligent "translator," allowing central platforms to send simple commands (like an MQTT message) that the gateway converts into the complex, multi-step PLC instructions needed to change a machine's process, enabling truly convenient and efficient remote operations.

Introduction

I often talk to factory managers who are frustrated by a simple, repeating problem. Their ERP system has a new production order, but executing it requires an "all-stop" manual intervention. A production supervisor has to find a PLC engineer, who then connects a laptop to the machine's control cabinet, navigates a complex HMI, and manually types in new setpoints for temperature, pressure, and speed. This process is slow, prone to human error, and completely disconnected from the digital systems that are supposed to be running the business.

What if your production manager could change the batch recipe on 10 machines across three factories from a single, central dashboard? What if a new "product type" could be deployed with a single click? This isn't a futuristic vision; it's a practical application of edge computing. True industrial process management isn't just about monitoring; it's about control. And that control needs to be as dynamic as your business.

E2C Pro: From Cloud Command to Machine Action in Seconds

The fundamental challenge in process management is a "language barrier." Your central IT systems and cloud platforms speak in simple, human-readable JSON messages (e.g., {"recipe_id": "Recipe_B"}). Your machines and PLCs speak in low-level industrial protocols like Modbus or OPC-UA (e.g., Write 50 to register 40100, Write 200 to register 40101...).

E2C Pro, running on an edge gateway like the EG5120, is the perfect translator that bridges this divide.

It doesn't just pass data; it acts on it. Using the intuitive, low-code environment of Node-RED (which we call Robustel Flow), you can build logic that receives a single, simple command and executes a complex sequence of actions at the PLC level.

A workflow diagram showing how E2C Pro translates a simple cloud command into complex PLC instructions for industrial process management.

Key Applications for Efficient Process Management

This "Cloud-to-Device" capability unlocks a new level of operational efficiency. Here are three practical examples.

1. Remote Recipe and Parameter Management

This is the most powerful application. Instead of storing complex recipes on the PLC itself, you can manage them centrally.

  • How it works: A central platform (like Robustel's RCMS or your own) sends an MQTT message to the E2C Pro gateway, such as {"job_id": 734, "recipe_name": "Premium_Grade"}.
  • E2C Pro Logic:The Node-RED flow on the gateway receives this. It has a "recipe book" (e.g., a simple lookup table in its logic) that says "Premium_Grade" means:
    • Temperature_Setpoint = 150 C (Write 150 to Modbus Register 200)
    • Conveyor_Speed = 5 m/s (Write 5 to Modbus Register 201)
    • Pressure = 2.5 bar (Write 25 to Modbus Register 202)
  • The Benefit: It executes this sequence perfectly every time. Your PLC engineer no longer needs to be involved in product changeovers. You can update recipes centrally and deploy them instantly, ensuring 100% consistency and eliminating errors.

2. Automated Process Optimization (Closed-Loop Control)

E2C Pro can also manage processes autonomously at the edge, without cloud intervention.

  • How it works: This combines E2C Pro's data acquisition and control logic. A Node-RED flow reads data from a sensor (via Modbus) and stores it in the local InfluxDB. A parallel flow then analyzes this data.
  • E2C Pro Logic: For example: "Continuously read the product's viscosity from sensor X. If the viscosity is above 10.5, send a command to the PLC to increase the temperature setpoint by +0.5 degrees. If it is below 9.5, decrease it by -0.5 degrees."
  • The Benefit: This is a true edge-based, closed-loop control system. It provides real-time quality control and process optimization that is far more responsive than a cloud-based system and more intelligent than a basic PLC.
A diagram illustrating how E2C Pro uses Node-RED and InfluxDB to create a closed-loop process control system at the edge.

3. Local Operator Empowerment (Simple HMI)

Process changes don't always have to come from the cloud. E2C Pro can also provide a simple, web-based HMI for on-site operators.

  • How it works: Using the Node-RED Dashboard nodes, you can create a simple user interface that runs on the gateway itself, accessible via a tablet or local PC.
  • E2C Pro Logic: The dashboard features simple buttons like "Start Batch: Product A," "Start Batch: Product B," or "Run Cleaning Cycle."
  • The Benefit: When an operator presses a button, it triggers the same robust Node-RED recipe logic on the gateway. This empowers the local operator to manage complex process changes safely and easily, without needing a full-blown, expensive SCADA system or complex PLC HMI programming.
An example of a simple, local HMI created with the Node-RED Dashboard on E2C Pro for easy industrial process management by operators.

Conclusion

Industrial process management in the 21st century must be flexible, data-driven, and remote. Relying on manual, on-site PLC intervention is no longer competitive. E2C Pro transforms your edge gateway from a simple data transmitter into a smart, two-way process controller. It separates the "what to do" (the business decision from the cloud) from the "how to do it" (the machine-level logic at the edge), giving you the convenience to manage your operations from anywhere and the efficiency to react in an instant.

FAQ

Q1: Can E2C Pro store the process recipes?

A: Yes. The recipes can be stored in several ways: directly in the Node-RED logic flow (as a lookup table or function), as a JSON file stored locally on the gateway's file system, or even fetched from a central database as needed.

Q2: Is it secure to allow remote commands to my PLC?

A: This is a critical concern, and E2C Pro is built for it. All communication from the cloud is typically done over encrypted MQTT/TLS. The gateway itself is a secure Linux device with a built-in firewall. Furthermore, you can use secure VPN tunnels (like RobustVPN) to ensure that only authenticated central platforms can communicate with the gateway, making it far more secure than opening up your factory floor network.

Q3: Do I need to be an expert PLC programmer to use this?

A: No, and that is the key benefit. Your PLC programmer only needs to provide a "Modbus register map" (e.g., "Register 200 = Temp, Register 201 = Speed"). A general automation or IT engineer who understands Node-RED can build the process logic, translating the business needs ("run Recipe A") into the correct register writes. This effectively bridges the OT/IT skills gap.