How does one make VTOL a "yes or no" input, where any VTOL position other than neutral counts as a single output? In other words, how can you make VTOL behave like an activation group?
How does one make VTOL a "yes or no" input, where any VTOL position other than neutral counts as a single output? In other words, how can you make VTOL behave like an activation group?
round(VTOL)
I'd just say clamp01(VTOL != 0). If you wanted a boolean, just remove the clamp01().
@CRJ900Pilot
It depends on at what position of VTOL you want something to come on, but this would be the expression:
VTOL=X
With X being what position you want something activated.
Or, If you want something to be activated when VTOL is past a certain position, it would be this:
VTOL>X
or this
VTOL
<X
With X being what position it has to go past. You use the one with the less than sign if the number it has to reach/be past is negative.
You should remake your CRJ900
"Funky tree"
Wat
clamp01(VTOL<x) , x∈[0;1]
or
clamp01(VTOL>x) , x∈[0;1]
How about the following ?
(VTOL=0?0:1)
or
(VTOL>0?1:0)
or
(VTOL<0?1:0)