ST assignment operator for outputs
The assignment operator => assigns the output of a function, a function block, or a method to a variable. The space to the right of the operator can be empty.
Syntax:
<output> => <variable>
Sample:
bFBCompOutput1 => bVar1;
bFBCompOutput2 => ;
bFBCompOutput1 and bFBCompOutput2 are outputs of a function block. The value of bFBCompOutput1 is assigned to the variable bVar1.