NOT Block
Logical NOT gate - inverts the input signal
Open NOT in BlockWerk →# NOT Gate Block
Overview
The NOT gate (inverter) implements logical negation. Output is 1 if input is 0, and 0 if input is 1.
Truth Table
| Input | Output | | ----- | ------ | | 0 | 1 | | 1 | 0 |
Logic
- Input >= 0.5 is TRUE → Output = 0
- Input < 0.5 is FALSE → Output = 1
Typical Applications
- Inverting conditions (NOT active, NOT error)
- Enabling opposite behavior
- Signal inversion for logic combinations
- Standby activation (enable if not running)
See Also
- AND: Logical AND
- OR: Logical OR
- XOR: Exclusive OR