Devices: Logic Gates - MatLomax/WireMod GitHub Wiki
AND Gate

| I/O | Num | Type |
|---|---|---|
| In | 0 | bool |
| In | 1 | bool |
| Out | 0 | bool |
Returns True if both inputs are True.
OR Gate

| I/O | Num | Type |
|---|---|---|
| In | 0 | bool |
| In | 1 | bool |
| Out | 0 | bool |
Returns True if either input is True.
NOT Gate

| I/O | Num | Type |
|---|---|---|
| In | 0 | bool |
| Out | 0 | bool |
Returns the opposite of the input.