When the T input switches from 0 to 1, the Q output toggles (inverts).

Truth Table:
| T | Tprev | Qprev | Q |
|---|---|---|---|
| 0 | 0 | 0 | 0 |
| 0 | 0 | 1 | 1 |
| 0 | 1 | 0 | 1 |
| 0 | 1 | 1 | 0 |
| 1 | 0 | 0 | 1 |
| 1 | 0 | 1 | 0 |
| 1 | 1 | 0 | 0 |
| 1 | 1 | 1 | 1 |
| In the Function Menu | On the Diagram |
|---|---|
![]() |
![]() |
| Name | Value Type | Description |
|---|---|---|
T |
bool |
Input |
| Name | Value Type | Description |
|---|---|---|
Q |
bool |
Output |
None