October 19, 200223 yr Hi all again,My airplane has three tanks of fuel (left, central and right) and for my panel I want to make three independent switches that control if one of those tanks is activated or not. Each switch can have only two positions, on or off, so that if it is on, that tank will give combustible and not if it is off, but working independently of the other two tanks. I have attempted it with (A:Fuel tank selector 1,enum), but this is a enumerated variable I don't know how to program the two only positions that it should admit each switch.Thanks for your ideas,RafaelAHS5466
October 19, 200223 yr Try <Value> lines for <Select> statements like these:<Value>(A:Fuel tank selector 1,enum) 2 ==</Value>(left tank)<Value>(A:Fuel tank selector 1,enum) 6 ==</Value>(center tank?)<Value>(A:Fuel tank selector 1,enum) 3 ==</Value>(right tank?)I'm not sure abou the exact enum values.Arne BartelsP.S. if all switches should be on, if ALL is selected try:<Value>(A:Fuel tank selector 1,enum) d 2 == r 1 == ||</Value><Value>(A:Fuel tank selector 1,enum) d 6 == r 1 == ||</Value><Value>(A:Fuel tank selector 1,enum) d 3 == r 1 == ||</Value>
Create an account or sign in to comment