Jump to content

Recommended Posts

Posted

Read through a few of the TARGET threads, but haven't seen an answer to this question. Curious if anyone has been able to link the Warthog throttle LEDs to activate on/off when you switch on/off the cockpit console lighting when in the sim.

Posted (edited)

Hi deephouse, just as an example (wrong switch!)

 

   // 'P', 'LAlt'   'HOTAS Pinky Switch Forward'
   // 'P', 'LCtrl'  'HOTAS Pinky Switch Aft'
   MapKey(
       &Throttle
       , PSF
       , CHAIN(
           PULSE+ L_ALT+ 'P'
           , EXEC("GameOutput(&Throttle, OUT_ID_LED_BACKLIGHT, 1);")
           )
       );
   MapKey(
       &Throttle
       , PSB
       , CHAIN(
           PULSE+ L_CTL+ 'P'
           , EXEC("GameOutput(&Throttle, OUT_ID_LED_BACKLIGHT, 0);")
           )
       );

 

You still have to bind a keyboard shortcut to [Lighting Panel] [Console Light Increase / Decrease] as they don't have any by default.

Edited by ivanwfr
  • Recently Browsing   0 members

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