Jump to content

Where is the DECS Key binding?


MilesD

Recommended Posts

I cant seem to find a keybinding in the controls for the DECS system. Its the switch above the fuel shut off lever. I fly VR and have a hard time looking at it.

 

Thanks

Miles

Now shipping up to website Pre-Order Form date 2022/03/10

Pre-Order  Form Submission https://pointctrl.com/preorder-form/

PointCTRL Support Discord https://discord.gg/jH5FktJ

PintCTRL Website https://pointctrl.com/

PointCTRLsmall.jpg

Link to comment
Share on other sites

It's not there yet. You can create it yourself.

 

I made a youtube video a while ago that explains how to add key bindings. Perhaps I need to redo it with a little more prep and focus.

 

 

Add these lines to your joystick or keyboard default.lua

{down = 3520, cockpit_device_id = 9, value_down = 1,               name = _('DECS On'),        category = _('Engine & Fuel')},
{down = 3520, cockpit_device_id = 9, value_down = 0,               name = _('DECS Off'),        category = _('Engine & Fuel')},

  • Like 2

Intel 9600K@4.9GHz, Asus Z390, 32GB DDR4, EVGA RTX 3070, Custom Water Cooling, 970 EVO 1TB NVMe

34" UltraWide 3440x1440 Curved Monitor, 21" Touch Screen MFD monitor, TIR5

My Pit Build, VKB Gunfighter Pro w/WH Grip, TMWH Throttle, MFG Crosswinds W/Combat Pedals, Cougar MFDs, Custom A-10C panels, Custom Helo Collective, SimShaker with Transducer

Link to comment
Share on other sites

Deezle you are the Man,

Thanks I appreciate that, and great video. Per your video I made the following changes.

 

{down = 3520, up = 3520, cockpit_device_id = 9, value_down = 1,   value_up = 0,    name = _('Alt DECS'),                category = _('Engine & Fuel')},
{down = 3519, up = 3519, cockpit_device_id = 9, value_down = 1,   value_up = 0,    name = _('Alt Fuel Shutoff Lever'),  category = _('Engine & Fuel')},

 

Miles

Now shipping up to website Pre-Order Form date 2022/03/10

Pre-Order  Form Submission https://pointctrl.com/preorder-form/

PointCTRL Support Discord https://discord.gg/jH5FktJ

PintCTRL Website https://pointctrl.com/

PointCTRLsmall.jpg

Link to comment
Share on other sites

Check out this thread

 

this thread adds the DECS as well as other bindings not implemented yet.

 

 

https://forums.eagle.ru/showthread.php?t=196622

Win 10 Pro - Intel I7 12700k@4.9ghz water cooled - ASUS TUF Z690 -EVGA RTX 3080 12G Hybrid - EVGA 1000W PSU - 32GB 3200 G-Skill XMP- Reverb G2 -Custom mip and side panels - Leo Bodnar  BBI32x2, BBI64x4 - TM Warthog HOTAS - TM Cougar MFD's x 3 - TM TPR pedals

Link to comment
Share on other sites

It's not there yet. You can create it yourself.

 

I made a youtube video a while ago that explains how to add key bindings. Perhaps I need to redo it with a little more prep and focus.

 

That video is perfect! Thank you so much for taking the time to do that. Solves all my issues.

[sIGPIC][/sIGPIC]

Link to comment
Share on other sites

I'm glad the video is helpful for you guys, there's a few more things in the video I'd like to add and clarify, but it's nice getting all your switches and such to work exactly how you want them by creating something tailored to your own needs.

Intel 9600K@4.9GHz, Asus Z390, 32GB DDR4, EVGA RTX 3070, Custom Water Cooling, 970 EVO 1TB NVMe

34" UltraWide 3440x1440 Curved Monitor, 21" Touch Screen MFD monitor, TIR5

My Pit Build, VKB Gunfighter Pro w/WH Grip, TMWH Throttle, MFG Crosswinds W/Combat Pedals, Cougar MFDs, Custom A-10C panels, Custom Helo Collective, SimShaker with Transducer

Link to comment
Share on other sites

possible solution?

 

@Deezle

you may be able to figure this out for me.

 

I have a desktop aviator 2235 board that i use for easy on/off switches. this board sends a pulse each time you flip the switch

http://www.desktopaviator.com/Products/Model_2230/index.htm

 

the issue is with Razbam and the way the implement most of the coding for the switches doesn't allow me to use my "electrical panel" in my simpit which is mostly tied to the board. I had this issue with the mirage as well and wasn't able to resolve it wither. I've tried many variations in the coding but the reaction in game is always the same.....the switch flips on then immediately off. id like to avoid having to rewire these switches to a leo bodnar or a dsd that i have in my pit but would muck up how neat things are :megalol:

 

Whats your take on this issue?

Win 10 Pro - Intel I7 12700k@4.9ghz water cooled - ASUS TUF Z690 -EVGA RTX 3080 12G Hybrid - EVGA 1000W PSU - 32GB 3200 G-Skill XMP- Reverb G2 -Custom mip and side panels - Leo Bodnar  BBI32x2, BBI64x4 - TM Warthog HOTAS - TM Cougar MFD's x 3 - TM TPR pedals

Link to comment
Share on other sites

@Deezle

you may be able to figure this out for me.

 

I have a desktop aviator 2235 board that i use for easy on/off switches. this board sends a pulse each time you flip the switch

http://www.desktopaviator.com/Products/Model_2230/index.htm

 

the issue is with Razbam and the way the implement most of the coding for the switches doesn't allow me to use my "electrical panel" in my simpit which is mostly tied to the board. I had this issue with the mirage as well and wasn't able to resolve it wither. I've tried many variations in the coding but the reaction in game is always the same.....the switch flips on then immediately off. id like to avoid having to rewire these switches to a leo bodnar or a dsd that i have in my pit but would muck up how neat things are :megalol:

 

Whats your take on this issue?

You need toggle commands to map them to, many of the default commands are toggle commands, such as the master arm switch. Unfortunately I don't know if it's possible for us to add missing toggle commands, I think that is up to the devs. Perhaps the clickabledata.lua has more secrets for me to find eventually.

 

I originally programmed one of my panels to function like that, a pulse each time the switch was thrown, because it was easy on many modules with existing toggle commands. I eventually changed it to a steady state on/off system because there's simply too many modules lacking the toggle commands, but I can always make any module work with a standard steady state on/off switch action, but it takes more work, I have many hours into editing the default.luas for all the modules to use my panels.

Intel 9600K@4.9GHz, Asus Z390, 32GB DDR4, EVGA RTX 3070, Custom Water Cooling, 970 EVO 1TB NVMe

34" UltraWide 3440x1440 Curved Monitor, 21" Touch Screen MFD monitor, TIR5

My Pit Build, VKB Gunfighter Pro w/WH Grip, TMWH Throttle, MFG Crosswinds W/Combat Pedals, Cougar MFDs, Custom A-10C panels, Custom Helo Collective, SimShaker with Transducer

Link to comment
Share on other sites

yeah i gave up on it and switched a few of my switches (ha ha) to a different board. Currently browsing the clickabledata and commanddefs luas to try and figure out how to implement the interior lights so i can bind them to my rotary encoders. the only one i can use as an example is the formation lights and it is an icommand function. I guess i need to hit up zues67 to see where they are going to go with these in the near future.

Win 10 Pro - Intel I7 12700k@4.9ghz water cooled - ASUS TUF Z690 -EVGA RTX 3080 12G Hybrid - EVGA 1000W PSU - 32GB 3200 G-Skill XMP- Reverb G2 -Custom mip and side panels - Leo Bodnar  BBI32x2, BBI64x4 - TM Warthog HOTAS - TM Cougar MFD's x 3 - TM TPR pedals

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...