Starting with WinCC OA Version 3.20, you can write your business logic in JavaScript and run them using Node.js, providing direct access to the WinCC OA Runtime.
🙈 With that, I have developed a Kotlin program that acts as an MQTT Broker. When you subscribe to a topic (where the topic name matches a datapoint name), the program will send value changes from the corresponding WinCC OA datapoint to your MQTT client.
❓ But wait, Kotlin is like Java, it runs on the JVM, it is not JavaScript!
💡 Did you know that a Node.js Runtime built with GraalVM exists? It allows you to mix Java and JavaScript. And it also works with WinCC OA.
🤩 You can use JVM based languages and its huge ecosystem to develop business logic with WinCC OA. I have developed a Java library which makes it easier to use the WinCC OA JavaScript functions in Java.
👉 Here it is: https://github.com/vogler75/winccoa-graalvm please note that the example program is provided as an example; it lacks security features and has not been tested for production use. However, it can be extended and customized to meet specific requirements.
⚡ Please be aware that the GraalVM Node.js Runtime is not officially supported by WinCC Open Architecture.
Tag Archives: MQTT
WinCC Open Architecture Custom UNS Publisher
I’ve created a quick video demonstrating how simple it is to publish data from WinCC Open Architecture in a customized way to a UNS/MQTT broker.
💡 With the new WinCC OA JavaScript Manager, it takes less than 60 lines of code!
👉 You will find the example code here: https://lnkd.in/dwRRkmNH
There is nothing more to say, because it’s so easy… boring 🥱
Bringing PLC values to OPC UA, MQTT, GraphQL
With just some lines of configuration you can bring PLC values to OPC UA, MQTT and GraphQL. And to a variety of databases for tag logging…
💡 In that example with ModBus, but thanks to #plc4x this should work in the same way also for the other protocols supported by PLC4X.
📺 See the video, ModBus values are brought to OPC UA and MQTT.
💣 In MQTT the topic name is enriched with a UNS ISA95 topic path.
⚡ On MQTT SparkplugB encoded messages could be used.
😎 100% GUI free and Open Source.
Servers:
GraphQL:
- Port: 4000
LogLevel: INFO
GraphiQL: true
OpcUa:
- Port: 4841
Enabled: true
LogLevel: INFO
Topics:
- Topic: plc/demo/node/holding-register:1:INT
- Topic: plc/demo/node/holding-register:2:INT
- Topic: plc/demo/node/holding-register:3:INT
Drivers:
Plc4x:
- Id: "demo"
Enabled: true
Url: "modbus://localhost:502"
Polling:
Time: 100
OldNew: true
WriteTimeout: 100
ReadTimeout: 100
LogLevel: INFO
Loggers:
Mqtt:
- Id: mqtt1
Enabled: true
Host: 192.168.1.4
Port: 1883
Topic: modbus
Format: Raw
Logging:
- Topic: plc/demo/node/holding-register:1:INT
Target: enterprise/area1/line1/cell1/speed
- Topic: plc/demo/node/holding-register:2:INT
Target: enterprise/area1/line1/cell1/power
- Topic: plc/demo/node/holding-register:3:INT
Target: enterprise/area1/line1/cell1/torque
TCP – MQTT – TCP Bridge
Some weeks ago, someone asked at the #HiveMQ Slack channel if there is any way to run SSH over MQTT…
👉 Strange idea? I liked it, and I want to share the TCP-MQTT-TCP bridge I made weeks ago.
🤔 Use Case? Imagine you have IoT’s connected to a central MQTT broker and you want to connect from one to another via SSH, transfer files, expose services, a Webpage, without exposing ports to the public internet or creating a VPN.
⚠️ Be careful and please evaluate and consider the possible security impacts before using this “backdoor man” … the doors …
⚠️ And transferring files over MQTT may increase your cloud bill 🤑
👉It’s on GitHub, it is just a draft and can be used as a template to be extended by your needs.
👀 How to? Start the client.js script at the destination host – or more precisely at a node in the local network where the destination node runs – and start the server.js script on the source node from where you want to connect to the remote/destination host and port. For example, if there is a SSH server running on the destination host+port, then you can do a SSH localhost -p 8080 -l username at your source node, and you will get a SSH connection from the source node to the destination node. And the data is transmitted over MQTT topics.
HighByte to Unity3D with SparkplugB
Successfully connected HighByte Intelligence Hub to Unity3D with SparkplugB! ✔
👀 I am sending data from my Automation-Gateway.com to the Intelligence Hub via OPC UA, then the values are published from HighByte to MQTT with the Intelligence Hub SparkplugB connector and then getting consumed in Unity with the MQTT SparkplugB Asset.
👍 Works straight forward and was easy to setup!
🧐 Sparkplug Learning: If a Host Application is not the Primary Host of an Edge Node and it starts up after the Edge Node, it must send the Rebirth command to the Edge Nodes in which it is interested in, to get a birth message with the current/initial values of all the metrics of the nodes. My Unity client ignores incoming metrics of DATA messages which it has not seen before in a BIRTH message…
UNS with WinCC Open Architecture?
Did you know that WinCC Open Architecture is “UNS READY”? 👍
And it even does not matter how your underlying tags are structured 😮
👉 You can create your own hierarchical view on tags which you want to publish to MQTT in a Unified Namespace!
👉 You can define a fully ISA 95 compliant view on top of your machine data!
Happy UNS Publishing with WinCC Open Architecture!
See the MQTT publisher at the WinCC Open Architecture Documentation
SparkplugB for Unity3D
Unlock the potential of industrial data from SparkplugB enabled devices, seamlessly integrated into Unity3D to build 3D applications?
Or start creating industry Apps for Apple’s Vision Pro with SparkplugB connectivity? 🕶️
💡 I completed a SparkplugB 🚀 implementation for Unity. The primary objective was to acquire a hands-on understanding of SparkplugB.
👉 You can find it for free on GitHub It’s made on top of the “MQTT for Unity” Asset.
Disclaimer: There is no assurance that I have captured all the rules within the extensive 140-page SparkplugB specification. While Unity supports visionOS, I have not conducted testing on this platform.
MQTT for Gaming?
MQTT for Multiplayer Games? I am not a Game-Developer and I do not know how they create multiplayer internet games. But I know that MQTT can be used for that. Why?
# IoT turns to IoP
MQTT is used for connecting devices. Think about using MQTT for connecting players. “Internet of Things” (IoT) will turn to „Internet of Players“ (IoP).
# A Player is like a Device?
In a multiplayer game, each player is like a device. When they join the game, it’s like they’re saying “Hello, I’m here!” to everyone else – this is known as a “birth message” in MQTT terms.
# Sharing Information Seamlessly
As players move around in the game, they keep sending updates like their location, healthy state, collected goodies, …. MQTT acts like a messenger, picking up this information and delivering it to everyone else playing.
# Handling Player Exits
What if a player leaves the game intentionally or unintentionally? MQTT has a smart feature called “last will message.” It’s like a goodbye note that tells other players someone has left the game. This way, everyone stays in the loop.
# Central Management
A central game management connected to the central MQTT broker, written in any kind of language, could be used to observe and control the game and all the players.
# Why MQTT?
1. **Real-Time Updates**: It’s fast and perfect for real-time games.
2. **Reliable**: Even if a player’s connection is shaky, MQTT makes sure messages get through.
3. **Efficient**: It doesn’t eat up much data, so players won’t lag.
4. **Simple**: It’s not complicated to set up and to use.
# Conclusion
Using MQTT in multiplayer games is like having a super-efficient mailman who ensures everyone knows what’s happening as it happens.
For Unity there is a „Unity for MQTT“ and a “GraphQL for Unity Pro” asset. Easy to use and usable with all the main build targets, including WebGL!
See the game demo I made with MQTT.. I also integrated data from WinCC Unified in the demo, with the GraphQL for Unity Pro Asset.
You can try it out: https://server.rocworks.at/unity/game/ (could be already removed when you try to access it)
Automation Gateway Video Tutorial
In this tutorial, I will guide you through the essential steps to set up the Automation Gateway, harness the power of YAML extensions in Visual Studio Code for configuration, and connect various devices, including OPC UA, MQTT, and PLC4X devices. I will show how to integrate the values from the devices to the Gateway’s OPC UA server and how to use the MQTT interface to get the values from the devices via a MQTT client. Additionally values from the connected devices will be logged to a Influx database.
- Setup 0:00 – 5:30
- YAML-Extension 2:31 – 4:15
- OPC UA Driver: 5:31 – 10:25
- MQTT Interface: 10:25 – 13:40
- MQTT Driver: 13:40 – 16:42
- PLC4X Driver: 16:42 -19:53
- Database Logger: 19:54 – 24:56
Bring MQTT Payload to OPC UA?
I wanted to get my Home-Automation values to SCADA, it’s a “self-made” JSON message format. I tried it with Ignition and the MQTT Module. Btw.: it’s great that they have the Makers Edition for non-commercial use at home 👍. But I don’t know why, it only got one topic and one value from my MQTT Broker, and it did not receive any updates. Don’t know what went wrong…
Anyhow, I decided to add a custom JSON format to the Automation-Gateway.com. It’s simple, just define the JSON-Path to the value and optionally to a timestamp in milliseconds since epoch or to an ISO 8601 format.
Now I can use the Automation-Gateway’s OPC UA server in any SCADA system to visualize my MQTT values…
Here is the config.yaml configuration file for the Automation-Gateway.
Servers:
OpcUa:
- Port: 4841
Enabled: true
LogLevel: INFO
Topics:
- Topic: mqtt/home/path/Original/#
Drivers:
Mqtt:
- Id: "home"
LogLevel: INFO
Host: 192.168.1.3
Port: 1883
Format: Json
CustomJson:
Value: "Value"
TimestampMs: "TimeMS"