Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
Collapse
Just Flight Community Forum
  1. Home
  2. Just Flight
  3. MSFS Products
  4. Black Square Add-Ons
  5. Caravan Professional
  6. Individual Control of fuel selectors

Individual Control of fuel selectors

Scheduled Pinned Locked Moved Caravan Professional
3 Posts 2 Posters 56 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    miller39687
    wrote last edited by
    #1

    Sorry if this has been brought up before, but my search of the forums hasn't found anything about my specific issue. Hopefully it's something easy that I'm just too dense to figure out.
    I've been trying to assign control of the fuel selectors to two of the switches on my Honeycomb Bravo. While I can set a (1) switch to turn both selectors on and off, I can't set switches to turn each on and off independently. I can assign a switch to turn selector 2 (right side) on and off by itself, but I can't seem to find a variable to control only the left side. The variables I have tried that actually make the left side function also make the right side function at the same time. I cannot turn the left side off without turning the right side off too (and we know what happens then!) Is there a variable that will allow me to turn off the left side fuel selector, without effecting the right side selector? I would think that there is, since I can control them individually with the mouse, but none of the ones I have tried are giving me that kind of control. I fly in VR, so flipping a switch to control fuel flow keeps me from having to reach for the mouse every time I need to adjust for a fuel imbalance! Has anyone else found a solution for this?

    1 Reply Last reply
    0
    • Black SquareB Offline
      Black SquareB Offline
      Black Square
      Black Square Developer
      wrote last edited by Black Square
      #2

      I believe the reason for your confusion is that, in software, there is actually only one fuel selector for the one engine, even though there are two valves to click on. The events you're looking for are...

      >K:FUEL_SELECTOR_OFF
      >K:FUEL_SELECTOR_LEFT
      >K:FUEL_SELECTOR_RIGHT
      >K:FUEL_SELECTOR_ALL
      

      This will take some simple scripting if you want two switches on your hardware to emulate the valves in cockpit. The script would look something like...

      Right Toggle Switch Up:

      (A:FUEL TANK SELECTOR:1, Enum) 0 == if{
          >K:FUEL_SELECTOR_RIGHT
      }
      els{
          >K:FUEL_SELECTOR_ALL
      }
      

      Right Toggle Switch Down:

      (A:FUEL TANK SELECTOR:1, Enum) 3 == if{
          >K:FUEL_SELECTOR_OFF
      }
      els{
          >K:FUEL_SELECTOR_LEFT
      }
      

      Left Toggle Switch Up:

      (A:FUEL TANK SELECTOR:1, Enum) 0 == if{
          >K:FUEL_SELECTOR_LEFT
      }
      els{
          >K:FUEL_SELECTOR_ALL
      }
      

      Left Toggle Switch Down:

      (A:FUEL TANK SELECTOR:1, Enum) 2 == if{
          >K:FUEL_SELECTOR_OFF
      }
      els{
          >K:FUEL_SELECTOR_RIGHT
      }
      

      Alternatively, I just realized that there's probably a B:Var that would provide simpler control. If your binding software has access to B:Vars, you could try the following:

      >B:FUEL_Selector_1
      >B:FUEL_Selector_2
      
      1 Reply Last reply
      0
      • M Offline
        M Offline
        miller39687
        wrote last edited by miller39687
        #3

        IMG_9654.jpeg Thank you once again Nick! I think I tried the B:Vars, but not positive on that. I was successful getting the right selector working as Selector_2, but no response from the left. I'll try again when I'm back on my sim rig.
        <Edit>
        I had a few minutes to try the B:Var. I got it working as intended, using the B:Var as shown. For anyone else wanting to get this working, the switch(es) were set to function by using the values of (1) = on, (0) = off, FUEL_SELECTOR_1 being the left, there SELECTOR_2 being the right. Hope this helps someone else!

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users