Skip to main content
Skip table of contents

LogicExpr

LogicExpr is a binary logic object, where various logic operations are being performed on one/two Boolean inputs based on the operator.

  • Out:= (InA & InB)        if operator == 0 (And)
  • Out:= (InA | InB)          if operator == 1 (Or)
  • Out:= (InA ^ InB)         if operator == 2 (Xor)
  • Out:= !InA                    if operator == 3 (Not)
  • Out:= !(InA & InB)       if operator == 4 (Nand)
  • Out: =! (InA | InB)        if operator == 5 (Nor)

LogicExpr component


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.