messaging

Buzzen

Member
Join Date
Apr 2010
Location
stockton, ca
Posts
132
:wish:I am using Allen Bradley enhanced plc 5/40e to slc 5/04. I recently was successful getting my message to transmit. Now the question is can you have a message statement send more than one message with two different outcomes? I read chapter 16 on message instruction still unclear. my control address is a MG data type, with PLC-5 typed write to SLC.
 
Generally a single MSG instruction is configured for a single Destination with fixed Source and fixed Destination addresses.

If you need to exchange data with a different network node or use different source or destination addresses, you use another MSG instruction with its own control block.

What precisely do you mean by "two different outcomes" ?
 
"two different outcomes" ONe outcome sets off an alarm when the transformer sump is full via floats to logic. The other I was thinking of setting something up for our A/C units, that feed these massive VFD's that we have using a sensor that detects a clogged pipe for the condensation. Can these two conditions be sent with one Message statement?
 
MSG instructions can transmit blocks of data table elements, up to about 122 elements per message.

So if your sump data was packed into bits in N10:0, and your pipe clog data was packed into bits in N10:10, you could transmit both in one MSG by sending a block of data starting at N10:0, length 11 Words.

In the PLC/SLC controllers, MSG instructions can only carry segments of data tables, so you must send all Integers, or all Floating Point numbers. ControlLogix has a mechanism to pack multiple data types together, called a User-Defined Data Type.
 

Similar Topics

Hey guys. Got a strange one. Was sent to a site where the VNC access is very poor. The IT has assisted and a Wireshark report shows data...
Replies
7
Views
319
I have a redundant ControlLogix being set up. This program reads a value from a remote site which happens to be SLC PLC. Rockwell mentions SLC...
Replies
2
Views
94
Hello, I have a ControlLogix redundant controller being set up. The program reads a value from a remote site which hosts a SLC PLC. Rockwell...
Replies
0
Views
76
Hi, First time poster, long time reader. I've got a mass flow controller device for controlling the flow of gas. It has a flowmeter and an...
Replies
4
Views
273
I am trying to set up a read message in a MicroLogix1100 to read the value of a DINT in a ControlLogix5561. I have successfully set up a message...
Replies
2
Views
187
Back
Top Bottom