[MAT logo][Prev][Up][Next]

Simple UDP connection

This is a way to share MAT PLC points between two computers, but it's very primitive...

It's a simple UDP protocol - it's in the directory mat/io/simple-udp

Configuration is fully manual; each direction is set up separately (if you want both directions).

On the sending side, the module is called "send" and has the following config:

to_host = recipient.host.name
# default: localhost
to_port = 1234
# default: 29600
send point1 point2 point3
send point4 point5 point6
On the receiving side, the module is called 'recv" and has the following config:
port = 1234
# default: 29600
recv point1 point2 point3
recv point4 point5
recv point6
[Prev][Up][Next]

$Date: 2006/12/26 13:23:28 $