Industrial control programming and protocols on a Raspberry Pi
Structured Text
One of the advantages of FBDs is that they are very readable and somewhat self-documenting. The downside of FBDs is that they can be messy for complex conditional logic. Structured text (ST) was developed as a programming option that can work along with the other 61131-3 languages. Structured text is block-structured and resembles Pascal syntactically.
For my ST program, I wanted to create the same functionality as in the earlier FBD. Interestingly, the same functionality in ST took only three lines of code (Figure 8), compared with five lines in FBD. In my ST program I also added a simple IF
condition to reset the pushbutton counter if the value reaches 1000.
Note that library functions such as R_TRIG
are available in all the 61131-3 programming languages, and you can create your own custom functions in one programming language that can be used in all the other languages.
Running OpenPLC Programs
To start the runtime application manually on the Raspberry Pi, enter:
$ cd OpenPLC_v3 ~/OpenPLC_v3$ sudo ./start_openplc.sh &
The OpenPLC runtime starts the web application on port 8080 on the Raspberry Pi.
After logging in to the web interface, the first step is to select the Hardware option and set the OpenPLC hardware layer to Raspberry Pi. Next, select the Programs option and upload the OpenPLC configuration file. After a new configuration file is uploaded and compiled, the final step is to press the Start PLC button.
For my PLC application, a button push lights the LED for 3 seconds and the function block and structured text counter variables increment up.
The Monitoring option can be used to view the status of variables in the PLC configuration. At this point, the PLC is working somewhat "headless," so adding a Node-RED visual interface is next.
Modbus with Node-RED
Modbus [5] was the earliest and most common communication protocol used to connect industrial devices together. Modbus can be used with serial interfaces (Modbus RTU) or on Ethernet networks (Modbus TCP); both are supported by OpenPLC.
Node-RED has a number of Modbus TCP nodes that can be used. I found that node-red-contrib-modbustcp
worked well for my application. New nodes can be added to Node-RED from the Manage Palette option.
A simple Node-RED application that can monitor the LED and counter statuses would use three modbustcp input
nodes, a text
node, and two numeric
dashboard nodes (Figure 9).
Modbus supports four object types: coils, discrete inputs, input registers, and holding registers (Figure 10). On this Node-RED application, I am only using two types of Modbus objects: a coil (a single-digit bit, LED) and holding registers (16 bits, counters). When Modbus reads a holding register, it returns just a single value (more, if requested); however, for a coil, Modbus returns 16 bits of information, not just the single bit of interest.
To show just the LED status on a Node-RED dashboard, a small function is needed (Only pass item 0) to change the message payload to just the first item in the array:
msg.payload = msg.payload[0]; return msg;
The modbustcp input
node needs to be configured with the variable's Modbus object type and address. For example , the LED's IEC addressing is %QX0.2
, which would be a coil at address 2 (Figure 11). The function block counter (CNT_FB
) address, %QW100
, is a holding register at address 100 (CNT_ST
is a holding register at address 0).
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.