Jump to content

HowardChristian

Members
  • Content Count

    15
  • Donations

    $0.00 
  • Joined

  • Last visited

Everything posted by HowardChristian

  1. The TRIM INDICATOR Needles don't move on my Motorised Revolution Sim TQ. They are stuck at 0 Nose Down position. The Rudder trim Wheels do operate ok. Does anyone have any ideas or even a Sioc Test script we could try? (I apologise if this is not the correct forum to post, if necessary could moderator please move)? Copy of the SIOC Script & Sioc.ini below. // ***************************************************************************** // * Config_SIOC ver 4.01 - By Manuel Velez - www.opencockpits.com // ***************************************************************************** // * FileName : throttleSIMAV_V17.txt // * Date : 9/04/2012 Var 0166, name Reverser1, Link USB_ANALOGIC, Device 1, Input 4, PosL 5, PosC 125, PosR 255 { IF &acongnd = 1 { &Leverdiscon = 0 &throttleman = &A1 / 0.0154 IF &A1 = 0 { &throttleman = &Reverser1 * -16 } } } Var 0167, name Reverser2, Link USB_ANALOGIC, Device 1, Input 5, PosL 5, PosC 125, PosR 255 { IF &acongnd = 1 { &Leverdiscon = 0 &throttleman2 = &A2 / 0.0154 IF &A2 = 0 { &throttleman2 = &Reverser2 * -16 } } } Var 0200, name Thr1FwdSpd, Value 45 // THROTTLE 1 FWD VALUE Var 0201, name Thr1BckSpd, Value 175 // THROTTLE 1 BACK VALUE Var 0202, name Thr1RtrdSpd, Value 195 // THROTTLE 1 RETARD VALUE Var 0203, name Thr2FwdSpd, Value 45 // THROTTLE 2 FWD VALUE Var 0204, name Thr2BckSpd, Value 175 // THROTTLE 2 BACK VALUE Var 0205, name Thr2RtrdSpd, Value 195 // THROTTLE 2 RETARD VALUE Var 0206, name SpdBrkOpnSpd, Value 120 // SPEED BRAKE OPEN VALUE Var 0207, name SpdBrkClsSpd, Value 190 // SPEED BRAKE CLOSE VALUE Var 0208, name TrWhlNoseUpAP, Value 180 // TRIMWHEEL NOSE UP AutoPilot Var 0209, name TrWhlNoseDnAP, Value 70 // TRIMWHEEL NOSE DOWN Autopilot Var 0210, name TrWhlNoseUp, Value 220 // TRIMWHEEL NOSE UP Var 0211, name TrWhlNoseDn, Value 100 // TRIMWHEEL NOSE DOWN Var 0212, name Thr1TOGASpd, Value 100 // THROTTLE 1 TOGA VALUE Var 0213, name Thr2TOGASpd, Value 100 // THROTTLE 2 TOGA VALUE Var 1982, name throttleman, Link FSUIPC_INOUT, Offset $52FA, Length 2 Var 1983, name throttleman2, Link FSUIPC_INOUT, Offset $52FC, Length 2 Var 2000, name Motor_1, Link USB_DCMOTOR, Device 1, Output 1 Var 2001, name A1, Link USB_ANALOGIC, Device 1, Input 1, PosL 10, PosC 122, PosR 255 { IF &ATengage <> 0 { IF &A1 < &potfark { IF &toga = 1 { &Motor_1 = &Thr1TOGASpd } IF &toga <> 1 { &Motor_1 = &Thr1FwdSpd } } IF &A1 > &potfark { IF &toga <> 0 { &Motor_1 = &Thr1BckSpd } } IF &A1 < &potplus { IF &A1 > &potminus { &Motor_1 = 0 } } IF &toga = 0 { &Leverdiscon = 0 &Motor_1 = 0 &throttleman = &A1 / 0.016 } IF &toga = 4 { IF &GALT < 80 { &Motor_1 = &Thr1RtrdSpd &Motor_1 = DELAY 0 ,800 } } &A1eski = DELAY &A1 ,50 &A1fark = &A1 - &A1eski &A1fark = ABS &A1fark } IF &ATengage = 0 { &throttleman = &A1 / 0.016 &Motor_1 = 0 &Leverdiscon = 0 } &angle = &A1 - &A2 &angle = ABS &angle } Var 2002, name potfark { IF &ATengage <> 0 { IF &toga <> 1 { &potfark = &throttlemot * 0.016 &A1plus = &A1 + 4 &A1minus = &A1 - 4 IF &potfark > &A1 { &Motor_1 = &Thr1FwdSpd } IF &potfark < &A1 { &Motor_1 = &Thr1BckSpd } IF &potfark < &A1plus { IF &potfark > &A1minus { &Motor_1 = 0 &Motor_2 = 0 } } } IF &toga = 4 { IF &GALT < 80 { &Motor_1 = &Thr1BckSpd &Leverdiscon = 0 &Motor_1 = DELAY 0 ,800 } } } IF &potplus > 255 { &Motor_1 = 0 } } Var 2003, name throttlemot, Link FSUIPC_INOUT, Offset $53E0, Length 2 { IF &throttlemot > 60000 { IF &IAScalc >= 65 { IF &spoilerFS <= 4800 { IF &acongnd = 1 { &spdbrkMOTOR = DELAY &SpdBrkOpnSpd ,100 &spdbrkMOTOR = DELAY 0 ,400 } } } } IF &throttlemot < 59000 { IF &throttlemot > 500 { IF &spoilerFS > 13000 { IF &acongnd = 1 { &spdbrkMOTOR = DELAY &SpdBrkClsSpd ,100 &spdbrkMOTOR = DELAY 0 ,400 } } } } IF &throttlemot <> &threskideger { &trfark = &throttlemot - &threskideger &threskideger = DELAY &throttlemot ,20 &potfark = &throttlemot * 0.0154 &potminus = &potfark - 8 &potplus = &potfark + 8 } } Var 2004, name threskideger, Value 0 Var 2005, name potplus Var 2006, name trfark Var 2007, name potminus Var 2009, name ATengage, Link FSUIPC_INOUT, Offset $53E4, Length 1 Var 2013, name Motor_2, Link USB_DCMOTOR, Device 1, Output 2 Var 2014, name A2, Link USB_ANALOGIC, Device 1, Input 2, PosL 10, PosC 122, PosR 255 { IF &ATengage <> 0 { IF &A2 < &potfark2 { IF &toga = 1 { &Motor_2 = &Thr2TOGASpd } IF &toga <> 1 { &Motor_2 = &Thr2FwdSpd } } IF &A2 > &potfark2 { IF &toga <> 0 { &Motor_2 = &Thr2BckSpd } } IF &A2 < &potplus2 { IF &A2 > &potminus2 { &Motor_2 = 0 } } IF &toga = 0 { &Leverdiscon = 0 &Motor_2 = 0 &throttleman2 = &A2 / 0.016 } IF &toga = 4 { IF &GALT < 80 { &Leverdiscon = 0 &Motor_2 = &Thr2RtrdSpd &Motor_2 = DELAY 0 ,800 } } &A2eski = DELAY &A2 ,50 &A2fark = &A2 - &A2eski &A2fark = ABS &A2fark } IF &ATengage = 0 { &throttleman2 = &A2 / 0.016 &Motor_2 = 0 &Leverdiscon = 0 } &angle = &A1 - &A2 &angle = ABS &angle } Var 2015, name potfark2 { IF &ATengage <> 0 { IF &toga <> 1 { &potfark2 = &throttlemot2 * 0.016 &A2plus = &A2 + 4 &A2minus = &A2 - 4 IF &potfark2 > &A2 { &Motor_2 = &Thr2FwdSpd } IF &potfark2 < &A2 { &Motor_2 = &Thr2BckSpd } IF &potfark2 < &A2plus { IF &potfark2 > &A2minus { &Motor_1 = 0 &Motor_2 = 0 } } } IF &toga = 4 { IF &GALT < 80 { &Leverdiscon = 0 &Motor_2 = &Thr2BckSpd &Motor_2 = DELAY 0 ,800 } } } IF &potplus2 > 255 { &Motor_2 = 0 } } Var 2016, name throttlemot2, Link FSUIPC_INOUT, Offset $53E2, Length 2 { IF &throttlemot2 > 60000 { IF &IAScalc >= 65 { IF &spoilerFS <= 4800 { IF &acongnd = 1 { &spdbrkMOTOR = DELAY &SpdBrkOpnSpd ,100 &spdbrkMOTOR = DELAY 0 ,400 } } } } IF &throttlemot2 < 59000 { IF &throttlemot2 > 500 { IF &spoilerFS > 13000 { IF &acongnd = 1 { &spdbrkMOTOR = DELAY &SpdBrkClsSpd ,100 &spdbrkMOTOR = DELAY 0 ,400 } } } } IF &throttlemot2 <> &threskideger2 { &trfark2 = &throttlemot2 - &threskideger2 &threskideger2 = DELAY &throttlemot2 ,20 &potfark2 = &throttlemot2 * 0.0154 &potminus2 = &potfark2 - 8 &potplus2 = &potfark2 + 8 } } Var 2017, name threskideger2, Value 0 Var 2018, name potplus2 Var 2019, name trfark2 Var 2020, name potminus2 Var 2021, name Leverdiscon, Link FSUIPC_OUT, Offset $310A, Length 1 Var 2026, name spdbrkMOTOR, Link USB_DCMOTOR, Device 1, Output 5 Var 2027, name spoilerARM, Link FSUIPC_INOUT, Offset $0BCC, Length 4 Var 2028, name spoiler, Link FSUIPC_INOUT, Offset $626F, Length 2 Var 2030, name spoilerFS, Link FSUIPC_INOUT, Offset $0BD0, Length 4 Var 2032, name flappos, Link FSUIPC_INOUT, Offset $0BDC, Length 4 Var 2033, name trim, Link FSUIPC_INOUT, Offset $0BC0, Length 2 { &trimeski = DELAY &trim ,20 &trimfark = &trim - &trimeski } Var 2034, name toga, Link FSUIPC_INOUT, Offset $53E4, Length 1 Var 2036, name A1plus Var 2037, name A1minus Var 2038, name A2plus Var 2039, name A2minus Var 2040, name trimmotor, Link USB_DCMOTOR, Device 1, Output 3 Var 2041, name trimeski Var 2042, name trimfark { IF &trimfark > 30 { &trimmotor = &TrWhlNoseDn &trimmotor = DELAY 0 ,400 } IF &trimfark < -30 { &trimmotor = &TrWhlNoseUp &trimmotor = DELAY 0 ,400 } } Var 2043, name trimindmotor, Link USB_DCMOTOR, Device 1, Output 4 Var 2044, name trimindpot, Link USB_ANALOGIC, Device 1, Input 3, PosL 10, PosC 123, PosR 255 { IF &trimindpot < &trimcalc { &trimindmotor = 35 } IF &trimindpot > &trimcalc { &trimindmotor = 150 } IF &trimindpot < &indpotplus { IF &trimindpot > &indpotminus { &trimindmotor = 0 } } &indpotplus = &trimcalc + 3 &indpotminus = &trimcalc - 3 } Var 2045, name trimindtest, Link FSUIPC_IN, Offset $2EA0, Length 8, Numbers 3 { L0 = &trimindtest + 66 L1 = L0 / 1.42 &trimcalc = L1 } Var 2046, name trimcalc { IF &trimindpot < &trimcalc { &trimindmotor = 35 } IF &trimindpot > &trimcalc { &trimindmotor = 150 } IF &trimindpot < &indpotplus { IF &trimindpot > &indpotminus { &trimindmotor = 0 } } &indpotplus = &trimcalc + 1 &indpotminus = &trimcalc - 1 } Var 2047, name indpotplus Var 2048, name indpotminus Var 2049, name acongnd, Link FSUIPC_INOUT, Offset $0366, Length 2 { IF &acongnd = 1 { IF &spoilerFS > 4800 { &spdbrkMOTOR = 120 &spdbrkMOTOR = DELAY 0 ,100 } } IF &acongnd = 1 { &splrcontMOTOR = 125 &splrcontMOTOR = DELAY 0 ,300 } } Var 2050, name FSIAS, Link FSUIPC_IN, Offset $02BC, Length 4 { &IAScalc = &FSIAS / 128 } Var 2051, name IAScalc Var 2052, name splrcontMOTOR, Link USB_DCMOTOR, Device 1, Output 6 Var 2053, name angle Var 0001, name keys, Link KEYS // variable transfert emulateur clavier ( S Var 0003, name IAS, Link FSUIPC_IN, Offset $02BC, Length 4 Var 0051, name IASpmdg, Link FSUIPC_IN, Offset $6220, Length 2 Var 1997, name GrdAlt, Link FSUIPC_INOUT, Offset $31E4, Length 4 { L0 = &GrdAlt / 65536 &GALT = L0 / 0.305 } Var 1996, name GALT Var 1995, name A1eski Var 1994, name A2eski Var 1993, name A1fark { IF &A1fark > 50 { IF &ATengage <> 0 { &Leverdiscon = 0 &throttlemot = &A1 / 0.016 &Motor_1 = 0 } } } Var 1992, name A2fark { IF &A2fark > 50 { IF &ATengage <> 0 { &Leverdiscon = 0 &throttlemot2 = &A2 / 0.016 &Motor_2 = 0 } } } Var 1991, name ParkBrkOfset, Link FSUIPC_INOUT, Offset $0BC8, Length 2 { IF &ParkBrkOfset = 0 { &splrcontMOTOR = 250 &splrcontMOTOR = DELAY 0 ,100 &splrcontMOTOR = DELAY 120 ,200 &splrcontMOTOR = DELAY 0 ,300 } } Var 1986, name gearcontrol, Link FSUIPC_INOUT, Offset $0BE8, Length 4 { IF &gearcontrol = 0 { &splrcontMOTOR = 250 &splrcontMOTOR = DELAY 0 ,100 } } _________________ Howard C. B737-800 Back to top HowardChristian Joined: 30 Sep 2016 Posts: 45 Location: Sydney Posted: Fri Oct 26, 2018 11:11 pm Post subject: REVOLUTION SIM TQ Stab Trim Needle Not Working I forgot to include the Sioc.ini file, attached below. [ fichero de configuracion para el SIOC ver. 5.0 ] [ Configuration file for SIOC ] [************** SIOC ***************] [ Nombre asignado al SIOC ] [ SIOC name ] Name=MAIN_SIOC [ Puerto del servidor IOCP ] [ IOCP port ] IOCP_port=8092 [ Tiempo de respuesta máximo de los paquetes IOCP ] [ IOCP Timeout ] IOCP_timeout=3500 [ Arranque minimizado en la barra ] [ Start minimized in tray ] Minimized=No [ Retraso necesario para las variables toggles (Project Magenta)] [ Deley needed for var. toggles (Project Magenta) ] Toggle_delay=20 [ Fichero de configuracion ] [ Configuration File ] [CONFIG_FILE=F:\Documents and Settings\manolo V\Escritorio\IOCARD DESARROLLO\sioc.lst] [Audio Panel pedestal FSX.ssi] [CONFIG_FILE=F:\Program Files (x86)\ACP_OCockpitOriginal Script.ssi] [CONFIG_FILE=F:\Program Files (x86)\SIOC\sioc.lst] [sioc.lst] [Config_File= throttleSIMAV_V17.ssi] [CONFIG_FILE= throttleSIMAV_V17_Audio panel FSX.ssi] [Config_File= throttleSIMAV_V17_Audio panel FSXPC2.ssi] [CONFIG_FILE=F:\Program Files (x86)\SIOC\throttleSIMAV_V17.txt Changed 24_02_17 cb.ssi] CONFIG_FILE=F:\Program Files (x86)\SIOC\sioc.lst [************** VIRTUAL DEVICES ***************] [ Habilita recepcion de Dis positivos Virtuales yes/no ] [ Enable Receive Virtual Devices yes/no ] Vdevices_enable=Yes [ Tiempo de espera para carga inicial de Dispositivos Virtuales (ms)] [ Wait time for load Virtual Devices (ms)] Vdevices_wait=2000 [ Modo Esclavo para SIOC como servidor de dispositivos yes/no ] [ Slave mode for SIOC Virtual Devices Server yes/no ] Vdevices_slave=No [ Host y Puerto del SIOC donde reenviar los Dispositivos ] [ SIOC Host/Port to resent Devices ] Vdevices_host=192.168.1.5 Vdevices_port=8092 [************** MONITOR MODULE ***************] [ Desabilitar monitorizacion remota del SIOC ] [ Remote monitor disable mode yes/no ] Monitor_disable=No [ Refresco broadcast monitor (en segundos) ] [ Broadcast monitor time (seconds) ] Monitor_time=2 [************** IOCARDS MODULE ***************] [ Desactivar el módulo de las IOCards ] [ Disable IOCards module ] IOCard_disable=No [ Divisor de frecuencia para los ejes analogicos (1-999). Retarda la entrega de valores. ] [ Frequency divisor for delay the analogic axes. (1-999)] Divisor_AD=10 [------------- CARDS CONFIG -------------] [ IOCard Master ] [...............] [ Spanish : ] [ MASTER=(Indice device),(Tipo),(Número de tarjetas),(Número device) ] [ Indice Device: Índice usado en la variable SIOC como device, para indicar a que tarjeta se hace referencia ] [ Se usa 0 en el caso de que sólo haya una tarjeta y no se tenga en cuenta el número de device, por defecto un script en SIOC cuando no se pone parámetro DEVICE, se hace referencia al índice 0] [ tipo = 0 : Emulador de Master Card // OBSOLETO ] [ tipo = 1 : Tarjeta Master conectada al puerto paralelo directamente // OBSOLETO ] [ tipo = 2 : Tarjeta Master conectada al puerto paralelo mediante cable de compatibilidad // OBSOLETO ] [ tipo = 3 : Placa de expansión por puerto paralelo // OBSOLETO ] [ tipo = 4 : Tarjeta USBExpansion usada ] [ tipo = 5 : Modulo MCP de Opencockpits ] [ tipo = 6 : Tarjeta USBOutputs ] [ tipo = 7 : Modulo EFIS de Opencockpits ] [ tipo = 8 : Modulo Radio COM de Opencockpits ] [ tipo = 9 : Modulo Radio NAV de Opencockpits ] [ tipo = 10 : Modulo Radio ADF de Opencockpits ] [ tipo = 11 : Modulo Radio ATC de Opencockpits ] [ tipo = 12 : Modulo Radio Airbus RMP de Opencockpits ] [ tipo = 13 : Modulo FMC-737 de Opencockpits ] [ tipo = 14 : Tarjeta USBDcmotorPLUS ] [ tipo = 15 : Modulo MCP V3 de Opencockpits ] [ tipo = 16 : Modulo CRONOMETRO B737 ] [ tipo = 17 : Tarjeta USBDimcontrol ] [ tipo = 18 : Modulo Audio B737 ] [ tipo = 19 : Modulo FIRE ENGINES B737 ] [ tipo = 20 : Modulo PEDESTAL B737 ] [ Número de tarjetas = Número de placas Master usadas, 1 a 4 para uso de placas de expansión, 1 para conexión de placa Master directa o del Emulador ] [ Número de device = 0 en el caso del Emulador o primera tarjeta USB detectada, Dirección del puerto paralelo (por ejemplo $0378), o número de dispositivo USB ] [ Un ejemplo de 2 USBExpansion conectadas con 3 y 2 placas Master ] [ MASTER=0,4,3,22 ] [ MASTER=1,4,2,24 ] [ Un ejemplo de conexión a simulador ] [ MASTER=0,0,1,0 ] [ English : ] [ MASTER=(Device index),(Type),(Number of cards),(Device number) ] [ Device index : Index used in SIOC variable like device, this is the card used for SIOC sentence ] [ Use 0 for only one card, for this value you not need specify Device number. If you not use DEVICE parameter in a definition in SIOC script, the default index used is 0] [ type = 0 : Master Card Emulator // OBSOLETE ] [ type = 1 : Master Card connected directly to parallel port // OBSOLETE ] [ type = 2 : Master Card connected throught compatibility cable to parallel port //OBSOLETE] [ type = 3 : Expansion Card connected throught parallel port //OBSOLETE ] [ type = 4 : USBExpansion Card used ] [ type = 5 : Opencockpits MCP module ] [ type = 6 : USBOutputs Card used ] [ type = 7 : EFIS module ] [ type = 8 : Radio COM module ] [ type = 9 : Radio NAV module ] [ type = 10 : Radio ADF module ] [ type = 11 : Radio ATC module ] [ type = 12 : Radio RMP Airbus module ] [ type = 13 : FMC-737 module ] [ type = 14 : USBDCmotorPLUS Card used ] [ type = 15 : MCP V3 module ] [ type = 16 : CHRONO B737 module ] [ tipo = 17 : USBDimcontrol card used ] [ tipo = 18 : Audio B737 module ] [ tipo = 19 : FIRE ENGINES B737 module ] [ tipo = 20 : PEDESTAL B737 module ] [ Number of Cards = Master cards connecteds, 1 to 4 for expansion cards, 1 for a Master card directly connected or Emulator ] [ Number of device = 0 for Emulator or first USB card detected, parallel port address, device number for specifies USBexpansion card ] [ For example, two USBExpansion cards connected with 3 and 2 Master cards used ] [ MASTER=0,4,3,22 ] [MASTER=18,18,1,191 HC-This line was without brackets but I've added because lines Starting with MASTER should be deleted.] [ For example, use of Master card emulator ] [ MASTER=0,0,1,0 ] [ Use the first USBExpansion card connected with only one Master Card attached ] [ Esta definición es para usar la primera tarjeta USBExpansion que se encuentre instalada que además llevará conectada una placa Master ] [MASTER=3,6,1,252] [MASTER=0,4,1,0] [MASTER=1,18,1,40] [MASTER=20,20,2,1055] [MASTER=0,18,1,40] [ Others Cards / Otras tarjetas ] [...............................] [ Spanish : ] [ Nombre_de_tarjeta=(Indice device),(Número device) ] [ Indice Device: Índice usado en la variable SIOC como device, para indicar a que tarjeta se hace referencia ] [ Se usa 0 en el caso de que sólo haya una tarjeta y no se tenga en cuenta el número de device, por defecto un script en SIOC cuando no se pone parámetro DEVICE, se hace referencia al índice 0] [ Número de device = 0 para usar primera tarjeta USB de este tipo detectada ó número de dispositivo USB ] [ English : ] [ Name_of_card=(Device index),(Device number) ] [ Device index : Index used in SIOC variable like device, this is the card used for SIOC sentence ] [ Use 0 for only one card, for this value you not need specify Device number. If you not use DEVICE parameter in a definition in SIOC script, the default index used is 0] [ Number of device = 0 for first USB card of this type detected, or device number for a specifies device ] [ Ejemplo de dos USBServos en indices 0 y 1, y números de devices 17 y 23 ] [ Example of two USBServos for index 0 and 1, and device number 17 and 23 ] [ USBServos=0,17 ] [USBServos=1,13] [USBStepper=0,0] [USBKeys=0,0] [USBServos=0,0] [USBRelays=0,0] [USBDCmotor=1,19] [USBDCmotor=1,19] [ Para los ejes analógicos se usan los números de devices de las tarjetas donde están alojados ] [ For analogic axles, you use the device number of cards what allow the axles ] [USBAnalogic=1,19] [USBAnalogic=1,19] [************** FSUIPC MODULE ***************] [ Desabilitar lectura de las FSUIPC ] [ FSUIPC disable mode yes/no ] FSUipcdisable=No [ Refresco recepción FSUIPC ] [ FSUIPC refresh ] FSUipcRefresh=50 [************** IOCP CLIENTS MODULES ***************] [ Retraso para inicializacion una vez conectado el cliente en milisegundos ] [ Delay for initialization when client has been connected in mseconds ] IOCPini_delay=0 [************** IOCP CLIENT MODULE #0 ***************] [ Desactivar el módulo cliente IOCP ] [ Disable IOCP client module ] IOCPclient0_disable=No [ IP del servidor donde debe de conectar el cliente ] [ IOCP client host name ] IOCPclient0_host=LOCALHOST [ Puerto de envio del protocolo IOCP cliente ] [ IOCP client port ] IOCPclient0_port=8099 [************** IOCP CLIENT MODULE #1 ***************] [ Desactivar el módulo cliente IOCP ] [ Disable IOCP client module ] IOCPclient1_disable=No [ IP del servidor donde debe de conectar el cliente ] [ IOCP client host name ] IOCPclient1_host=LOCALHOST [ Puerto de envio del protocolo IOCP cliente ] [ IOCP client port ] IOCPclient1_port=8099 [************** SOUND MODULE ***************] [ Ficheros de sonido ] [ Sound Files ] [ Desactivar el módulo de sonido ] [ Disable Sound module ] Sound_disable=No [ Volumen general de los sonidos 0-100 ] [ Master Volume 0-100 ] Volume=100 [ put '*' first filename for loop Sound ] [ anteponer '*' en el fichero para bucle continuo de sonido] [ Sound=wav_file,frequency,volume,pan ] [ frequency=100 to 100000 0=original -1=current ] [ volume=0 to 100, -1=current ] [ pan=-100 (left) to +100 (right) 0=center -1=current ] [ Sound=Fichero_wav,frecuencia,volumen,balance ] [ frecuencia=100 hasta 100000 0=original -1=Por defecto ] [ volumen=0 hasta 100 -1=Volumen por defecto ] [ balance=-100 (Izquierda) hasta +100 (Derecha) 0=centro -1=Por defecto ] [ #1 ] Sound=APDis.wav,-1,-1,-1 [ #2 ] Sound=*outermk.wav,-1,-1,-1 [ #3 ] Sound=*hello.wav [************** KEYBOARD EMULATOR MODULE ***************] [ Nombre exacto de la ventana donde se enviarán las teclas ] [ Name of window for key send ] [window = "Project Magenta Glass Cockpit - Build 396" ] window =a.txt - Bloc de notas [ Asignación de teclas ] [ assign youe keys ] #1=A #2=B #3=C #4=D #5=E #6=F #7=G #8=H #9=I #10=J #11=K #12=L #13=M #14=N #15=O #16=P #17=Q #18=R #19=S #20=T #21=U #22=V #23=W #24=X #25=Y #26=Z #27=1 #28=2 #29=3 #30=4 #31=5 #32=6 #33=7 #34=8 #35=9 #36=0 #37=< #38=, #39=. #40=- #41=* #42=+ #43=// #44=/0 #45=/1 #46=/A #47=<T #48= #49= #50= #51= #52= #53= #54= #55= #56= #57= #58= #59= #60= #61= #62= #63= #64= #65= #66= #67= #68= #69= #70= #71= #72= #73= #74= #75= #76= #77= #78= #79= #80= #81= #82= #83= #84= #85= #86= #87= #88=<a #200=B [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 10-Aug-16 8:51:52 PM <== ----] [USBDCmotor=1,11] [USBAnalogic=1,11] [MASTER=2,18,1,36] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 15-Aug-16 8:31:40 PM <== ----] [USBDCmotor=1,11] [USBAnalogic=1,11] [MASTER=2,18,1,36] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 15-Aug-16 8:38:15 PM <== ----] [USBDCmotor=1,11] [USBAnalogic=1,11] [MASTER=40,18,1,36] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 15-Aug-16 8:49:46 PM <== ----] [USBDCmotor=1,11] [USBAnalogic=1,11] [MASTER=40,18,1,36] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 24-Oct-16 8:35:33 PM <== ----] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 26/06/2017 11:39:27 PM <== ----] [USBDCmotor=1,19] [USBAnalogic=1,19] [MASTER=21,18,1,21] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 26/06/2017 11:52:10 PM <== ----] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 3/07/2017 6:47:15 PM <== ----] [USBDCmotor=1,19] [USBAnalogic=1,19] [MASTER=40,18,1,21] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 3/07/2017 6:48:36 PM <== ----] [USBDCmotor=1,19] [USBAnalogic=1,19] [MASTER=40,18,1,21] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 3/07/2017 7:00:20 PM <== ----] [USBDCmotor=1,19] [USBAnalogic=1,19] [MASTER=21,18,1,21] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 3/07/2017 7:06:15 PM <== ----] [USBDCmotor=1,19] [USBAnalogic=1,19] [MASTER=21,18,1,21] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 3/07/2017 7:10:03 PM <== ----] [USBDCmotor=1,19] [USBAnalogic=1,19] [MASTER=40,18,1,21] [ --- SIOC Autoconfig Devices Ver 5.0 B5 ==> 3/07/2017 7:17:20 PM <== ----] USBDCmotor=1,13 USBAnalogic=1,13 MASTER=40,18,1,21 _________________ Howard C.
×
×
  • Create New...