Analog King Air 350 - RPN code for Anti Ice !
-
For propeller De-ice, you have to set the following:
L:var_PropDeiceSwitch A:CIRCUIT SWITCH ON:90 A:CIRCUIT SWITCH ON:91 K:TOGGLE_PROPELLER_DEICE
For the inertial separators, it's just
L:XMLVAR_InterSep_L
, andL:XMLVAR_InterSep_R
.Sorry that you still have to go looking for variables like this in my older aircraft. In all my newer aircraft, I've tried to make every custom interaction settable with just one L:Var, and they are all included in the manual.
Please let me know if you have any more questions! It's very easy for me to look these up in my own code, so I am happy to save you the time.
-
@Black-Square said in Analog King Air 350 - RPN code for Anti Ice !:
For propeller De-ice, you have to set the following:
These codes ON Prop De-ice.
Is there a separate code only for OFF Prop De-ice? -
Writing 1 to those variables will turn the propeller de-ice on, and 0 will turn it off. If you toggle K:TOGGLE_PROPELLER_DEICE at the same time, they should remain synchronized. If you want a little more complicated solution that will ensure they remain synchronized, then you can use this line instead of just
(>K:TOGGLE_PROPELLER_DEICE)
:(L:var_PropDeiceSwitch, bool) ! (A:PROP DEICE SWITCH:1, bool) (A:PROP DEICE SWITCH:2, bool) or == if{ (>K:TOGGLE_PROPELLER_DEICE) }
-
@Black-Square said in Analog King Air 350 - RPN code for Anti Ice !:
Writing 1 to those variables will turn the propeller de-ice on, and 0 will turn it off.
It works, thank you!