Interfacing to the PLC best practice

DINT for 0, 1, and 2 ?? Oy!

I prefer:

XIC(On) XIC(Auto) OTE(InAuto)
XIC(On) XIO(Auto) OTE(InManual)

Then you can pack a bunch of named mode bits into just a few DWORDs. Poorly designed data types hurt you all over the place: memory usage and excess message traffic in particular.

You can also use the following to robustify the original Auto & Manual bits:

XIC(Auto) XIO(Manual) OTE(InAuto)
XIC(Manual) XIO(Auto) OTE(InManual)

As seen with real Hand-Off-Auto switches feeding PLC inputs.

2 Likes