REDEYE_CVW-66 Posted September 10, 2014 Posted September 10, 2014 Sorry if this is covered, but I have not found it. I am having some trouble setting a few of the key/button mappings in DCS Best example: On the lower left there is a button called "EAC" something- which has an UP and a DOWN position. I want to map it (For DCS F-15c) so that when the button is UP, the ECM will be on and when it is DOWN, ECM will be off. However, it only resonds to one way. That means that when I push UP, it comes on, but when I push DOWN- nothing happens- and when I push UP again- it turns itself off... Additionally- not all of the levers are fully programmable- a 3-point switch might just respond to to setting (Ex: Position UP ok, position MID ok, position DOWN-nothing) Do I have to script this sucker or am I missing something basic here? Cheers.
Iku_CC Posted September 10, 2014 Posted September 10, 2014 (edited) Only thing is make this with TARGET (script or GUI)..it could also be done by editing lua files (I don't know about that)... With TARGET script editor it would like something like this.. Inside of F15.tmc file ..... MapKey(&Throttle,EACON,ECM_on); MapKey(&Throttle,EACOFF,PULSE+ECM_off); .... Inside F15.ttm .... define ECM_on DX24 (I assume that you use standard DX inputs) define ECM_off "what ever is input for this" .... Edited September 11, 2014 by Iku64 few type errors [sIGPIC][/sIGPIC] HP Z420 | Xeon E5-1650 @3.20GHz/3.70Ghz | 16Gb DDR3-1333 | ZOTAC GTX 980 Ti AMP! | Micron RealSSD C400 256Gb | Sound Blaster Z | TrackIR4 | Thrustmaster HOTAS Warthog| CH Pro pedals | Win 10 Pro 64-bit
REDEYE_CVW-66 Posted September 10, 2014 Author Posted September 10, 2014 Thanks... Looks like I gotta dive into this one. Seems a bit complex at first- but gotta try right. Thanks for the tip.
lxsapper Posted September 10, 2014 Posted September 10, 2014 The reason for this is that there is no DX button on the off position of the switch. So the command eighter in TARGET or through the LUA files is to generate a command for when the EAC witch is disengaed from the ARM position and not when it goes into the OFF position. Hope that makes sence. Basically it means all 2 position switches only see the forward/up position (there is actually no physical wiring to the down/aft position). And all 3 position switched only have full Fwd, and Full aft. The middle position not beeing wired. If you still don't understand go to the controll panel and start flicking switched on the device properties window and you will soon see what I mean.
Recommended Posts