// ***************************************************************************** // * Config_SIOC ver 3.5 - By Manolo Vélez - www.opencockpits.com // ***************************************************************************** // * FileName : cronometro.txt // * Date : 11/12/2008 Var 0000, Value 0 // Initialization { V0007 = 0 // Seconds to 0 V0001 = 0 // Initialize sound } Var 0001 // Sound (need configure IOCPSound) Var 0005, Link IOCARD_SW, Input 34, Type P // Start/Stop chronometer Var 0006, Link IOCARD_SW, Input 35 // Reset { IF V0006 = 1 { V0007 = 0 V0001 = 0 // Initialize sound } } Var 0007 // Seconds from last reset { IF V0007 = 15 // # of seconds for Play Sound { V0001 = 1 // Play Sound } } Var 0010, Link FSUIPC_IN, Offset $023A, Length 1 // Seconds of FSimulator { IF V0005 = 1 { V0007 = V0007 + 1 } }