FINS Write
x/finsWrite component: v0.37.0+ Writes PLC memory areas via the Omron FINS protocol (UDP/TCP). Routes to Success or Failure.
Requires: rulego-components-iot (opens new window)
# Configuration
Connection settings are the same as x/finsRead (server/transport/network/dstNode/srcNode/unit/timeout/points). Write points are passed via msg.Data.
# Input/Output
- Input:
msg.Datawith point list[{"name","addr","type","value"}] - Output: success routes to
Success, failure routes toFailure
# Example
{
"id": "fins_write",
"type": "x/finsWrite",
"configuration": {
"server": "192.168.1.20:9600",
"transport": "udp"
}
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
msg.Data with write points:
[
{"name": "setpoint", "addr": "DM200", "type": "UINT16", "value": "1234"},
{"name": "start", "addr": "CIO20.0", "type": "BOOL", "value": "true"}
]
1
2
3
4
2
3
4
# Related
- Overview: x/fins
- Read: x/finsRead
- Universal write entry: x/iotWrite (driver=fins)
Edit this page on GitHub (opens new window)
Last Updated: 2026/07/29, 07:07:39