AND
The AND instruction performs a Boolean AND operation between two or more values. It can be used as
.

Languages supported: Function block diagram, ladder diagram, structured text.
This instruction applies to the Micro810, L20E, L50E, and L70E controllers.
AND

Parameter | Parameter Type | Data Type | Description |
---|---|---|---|
i1 | Input | BOOL | Value in Boolean data type. |
i2 | Input | BOOL | Value in Boolean data type. |
o1 | Output | BOOL | Result of the Boolean AND operation of the input values. |
AND examples
AND function block program example

AND ladder diagram program example

(* ST equivalence: *) bo10 := bi101 AND NOT (bi102); bo5 := (bi51 AND bi52) AND bi53;
Provide Feedback