kitControl-Xor
This component performs a logical XOR on all valid inputs and writes the result to the Out property.
Xor is available in the Logic folder of the kitControl palette.
This table shows the Xor object truth table when using two inputs (typical).
This table shows the Xor object truth table if using all four inputs. EQUIV gate logic is accomplished by linking to a Not object.

| In A | In B | Out |
|---|---|---|
| false | false | false |
| false | true | true |
| true | false | true |
| true | true | false |
| In A | In B | In C | In D | Out |
|---|---|---|---|---|
| false | false | false | false | false |
| false | false | false | true | true |
| false | false | true | false | true |
| false | false | true | true | false |
| false | true | false | false | true |
| false | true | false | true | false |
| false | true | true | false | false |
| false | true | true | true | true |
| true | false | false | false | true |
| true | false | false | true | false |
| true | false | true | false | false |
| true | false | true | true | true |
| true | true | false | false | false |
| true | true | false | true | true |
| true | true | true | false | true |
| true | true | true | true | false |

| Property | Value | Description |
|---|---|---|
| Facets | Config Facets window (defaults to true and false) | Defines the text to display for each Boolean value. trueText configures the text to describe the state when component returns true. falseText configures the text to describe the state when component returns false. |
| Out | read-only true or false | Displays the result of the comparison. |
| In A through In D | StatusBoolean true or false and null definition | Provides the input values for the comparison. |