July 3, 200619 yr HiI want to make a switch that turns the Autobrake to RTO and then the Off Positon using an On, Off switch.This Turn the Autobrake to RTO:(L:Autobrake Max, enum) if{ 1 (A:Auto brake switch cb, enum) if{ 1 (>K:DECREASE_AUTOBRAKE_CONTROL) } } But if I reverse the code, it does not turn it back to the off position. The code reversed : (L:Autobrake Max, enum) if{ 0 (A:Auto brake switch cb, enum) if{ 0 (>K:INCREASE_AUTOBRAKE_CONTROL) } } I have been trying to work this problem out for the last two days so I am now beginning to tear my hair out, so I hope someone can help me here.This is what I have so far: Sets the Autobrake to RTO, but does not set it to Off. (L:Autobrake Max, enum) if{ 1 (A:Auto brake switch cb, enum) if{ 1 (>K:DECREASE_AUTOBRAKE_CONTROL) } } els {(L:Autobrake Max, enum) if{ 0 (A:Auto brake switch cb, enum) if{ 0 (>K:INCREASE_AUTOBRAKE_CONTROL) } } Autobrake Max(L:Autobrake Max, enum) ! (>L:Autobrake Max, enum)
July 3, 200619 yr Author Hi,Try or modify:(L:Autobrake Max,enum)Autobrake Max(L:Autobrake Max,enum) 0 == if{ 1 (>L:Autobrake Max,enum) (>K:INCREASE_AUTOBRAKE_CONTROL) } els{ 0 (>L:Autobrake Max,enum) (>K:DECREASE_AUTOBRAKE_CONTROL) } Hope it helps,Jan"Beatus ille qui procul negotiis..." Jan "Beatus ille qui procul negotiis..."
Create an account or sign in to comment