I need to activate something with both AG. 1 and AG. 4 separately.
I need the rotator to work when only AG. 1 is activated, and to work when only AG. 4 is activated
Is there FT code for it?
I need to activate something with both AG. 1 and AG. 4 separately.
I need the rotator to work when only AG. 1 is activated, and to work when only AG. 4 is activated
Is there FT code for it?
@Eggplant ah I see
@Graingy xor, true when only 1 is pressed or only 4 is pressed
In this FT, either AG will activate the rotator when selected separately or both on at the same time:
Activate1 | Activate4
This FT states that either AG will activate the rotator, but then deactivate when both are selected or both are deselected:
(Activate1 & (Activate4 != 1)) | ((Activate1 != 1) & Activate4)
@Eggplant Sorry, so this is to have something activate when BOTH are pressed? Or one or the other?
@Eggplant Alrighty thank you
try (Activate1 & !Activate4) | (!Activate1 & Activate4)