ML1400 to ML1400 messaging

woody400

Member
Join Date
Feb 2015
Location
Wisconsin
Posts
6
Hello,
I am trying to send descrete I/O data between 2 Micrologix 1400 PLC's using messaging instructions. Can anyone tell me if I have to use an entire word of data for each individual I/O point that I'm sending or if there is a better way to share this type of data between 2 ML 1400's?
 
You could message one or more INTs, use individual bits for your data, and have some bits remaining for whatever else comes up.

If you’re messaging physical I/O data, you could copy a block of status bits and have more data available in case it’s useful.
 
Last edited:
Yes, you must message at least whole integers. If I need to exchange two bits, I will block off ten integers for the message. You will need spares and you can't online edit the rung with the MSG instruction in a Micrologix. If you reserve plenty of spares, you may never need them, but if you don't do that you certainly will need them and it will be at a moment where interrupting the PLC will be costly.

The overhead for an Ethernet message to transport just one integer is going to account for the bulk of the over the wire traffic, so making the packet bigger by a few bytes will have minimal impact on the network.
 
You could message one or more INTs, use individual bits for your data, and have some bits remaining for whatever else comes up.

If you’re messaging physical I/O data, you could copy a block of status bits and have more data available in case it’s useful.
got it. Thanks for the good advice! I appreciate it.
 

Similar Topics

Good morning all. Does anyone know where a sample program is located to message data to and from a Banner VE Series camera from a ML 1400? I am...
Replies
32
Views
12,143
Been a long time since my last post and I was just learning even what a PLC is. Since then I have been fortunate to work with some great guys and...
Replies
22
Views
6,815
Hi All, I was wondering if it is possible to send ASCII commands via Ethernet messaging with a ML1400? I have to send instructions to and from a...
Replies
5
Views
3,660
I am attempting to map registers from N10 in Micrologix 1400, to Modbus addresses at a customer’s PLC, over an Ethernet connection. All the...
Replies
8
Views
3,940
Hi all, Still pretty new to PLC's in general and brand spanking new to messaging. Trying to read from one ML1400 to another over ethernet. For...
Replies
2
Views
2,677
Back
Top Bottom