Comments - Allen-Bradley Logix5000 Reference Manual

1756 controllogix, 1768 compactlogix, 1769 compactlogix, 1789 softlogix, 1794 flexlogix, powerflex 700s with drivelogix
Hide thumbs Also See for Logix5000:
Table of Contents

Advertisement

Appendix C
Structured Text Programming

Comments

Format
//comment
(*comment*)
/*comment*/
696
To make your structured text easier to interpret, add comments to it.
• Comments let you use plain language to describe how your structured text
works.
• Comments do not affect the execution of the structured text.
The table describes how to add comments to your structured text.
To add a comment
On a single line
At the end of a line of structured text
Within a line of structured text
That spans more than one line
The table shows some examples.
Example
At the beginning of a line
//Check conveyor belt direction
IF conveyor_direction THEN...
At the end of a line
ELSE //If conveyor isn't moving, set alarm light
light := 1;
END_IF;
Sugar.Inlet[:=]1;(*open the inlet*)
IF Sugar.Low (*low level LS*)& Sugar.High (*high level LS*)THEN...
(*Controls the speed of the recirculation pump. The speed depends on the temperature in the tank.*)
IF tank.temp > 200 THEN...
Sugar.Inlet:=0;/*close the inlet*/
IF bar_code=65 /*A*/ THEN...
/*Gets the number of elements in the Inventory array and stores the value in the Inventory_Items
tag*/
SIZE(Inventory,0,Inventory_Items);
Rockwell Automation Publication 1756-RM003N-EN-P - October 2011
Use one of these formats
//comment
(*comment*)
/*comment*/
(*comment*)
/*comment*/
(*start of comment . . . end of
comment*)
/*start of comment . . . end of
comment*/

Hide quick links:

Advertisement

Table of Contents
loading

Table of Contents