// **************************************************************************************** // * Config_SIOC ver 3.7B1 - By Manolo Vélez - www.opencockpits.com // **************************************************************************************** // * FileName : ctrlA_ctrlB.txt // * Date : 02/01/2010 // * // * // * This file is wroted to use with the pushbuttons wired on an IOCards like // * the USBKeys, in example with keystrokes "Ctrl+A" and "Ctrl+B" // * To work properly, the assignation of keys on sioc.ini must be edited as follows: // * // * #1=\3A\4 // * #2=\3B\4 // * // * // **************************************************************************************** Var 0001, Link KEYS Var 0002, Link IOCARD_SW, Input 34 { IF V0002 = 1 { V0001 = 1 V0001 = 0 } } Var 0003, Link IOCARD_SW, Input 23 { IF V0003 = 1 { V0001 = 2 V0001 = 0 } }