> For the complete documentation index, see [llms.txt](https://help3.depence.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help3.depence.com/depence-hardware/modules/depence-logic-module/logic-module-items/conditions.md).

# Conditions

### ![](/files/djfErF7hm96tgEecgBGH)

Permanently outputs a 0.

### ![](/files/6SmHuFJnhK9Nbh6U3con)

Permanently outputs a 1.

###

### ![](/files/ZXDycBtqYS9fMksITPy7)

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

###

### ![](/files/1lYYARMu6VzltlMi7ZH3)

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>

###

### ![](/files/PZUNCGVS4sG1I18MiHxY)

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>

###

### ![](/files/KV3WQ5Km7JTWubxeebak)

Logical OR

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