# Conditions

### ![](https://content.gitbook.com/content/SJPsyh5CBOise9BtVNGO/blobs/3Ie04I7YlLjDclHPIw5R/image.png) Static False

Permanently outputs a 0.

### ![](https://content.gitbook.com/content/SJPsyh5CBOise9BtVNGO/blobs/y9k2HjEBP7Ni67QWTqoB/image.png) Static True

Permanently outputs a 1.

### ![](https://content.gitbook.com/content/SJPsyh5CBOise9BtVNGO/blobs/dC7LvHOh8Lwwc8qNvfV9/image.png) If

Sets the output to high depending on the two input values and the logical operator.\
\
Logical Operators:

* Equals  :  A  = B
* Not Equals  :  A <> B
* Higher  :  A > B
* Lower : A < B

### ![](https://content.gitbook.com/content/SJPsyh5CBOise9BtVNGO/blobs/62GEmotbEFaNNNvzkjJt/image.png) AND

Logical AND

<table><thead><tr><th width="161.46029972553498">X1</th><th width="150">X2</th><th width="150">Output</th></tr></thead><tbody><tr><td>0</td><td>0</td><td>0</td></tr><tr><td>0</td><td>1</td><td>0</td></tr><tr><td>1</td><td>0</td><td>0</td></tr><tr><td>1</td><td>1</td><td>1</td></tr></tbody></table>

### ![](https://content.gitbook.com/content/SJPsyh5CBOise9BtVNGO/blobs/28vsDeDmmWKfiqK9xpSe/image.png) Not

Logical NOT

<table><thead><tr><th width="259.91797556719024">Input</th><th>Output</th></tr></thead><tbody><tr><td>0</td><td>1</td></tr><tr><td>1</td><td>0</td></tr></tbody></table>

### ![](https://content.gitbook.com/content/SJPsyh5CBOise9BtVNGO/blobs/CuJ6DI8FnlJNIf1b34HP/image.png) OR

Logical OR

| X1 | X2 | Output |
| -- | -- | ------ |
| 0  | 0  | 0      |
| 0  | 1  | 1      |
| 1  | 0  | 1      |
| 1  | 1  | 1      |
