HeliosVirtualCockpit / Helios

Helios Distribution
https://github.com/HeliosVirtualCockpit/Helios/wiki
GNU General Public License v3.0
205 stars 35 forks source link

F/A-18C Parking Brake Interface Malfunction #644

Closed BlueFinBima closed 1 year ago

BlueFinBima commented 1 year ago

Raised by [CPC]David https://discord.com/channels/434241908492075010/434269438884184084/1041133717311201361 The interface entry for 240 / 241 needs adjustment. json change suggested by [CPC]David

 {
      "heliosType": "DCS.Common.Switch",
      "device": "Gear system",
      "name": "Emergency / Parking Brake Handle On/Off",
      "description": "Current position of this switch.",
      "exports": [
        {
          "format": "%0.3f",
          "isExportedEveryFrame": false,
          "id": "240"
        }
      ],
      "deviceId": "5",
      "positions": [
        {
          "argumentValue": "1.0",
          "name": "Pulled",
          "actionID": "3005"
        },
        {
          "argumentValue": "0.5",
          "name": "Middle",
          "actionID": "3005"
        },
        {
          "argumentValue": "0.0",
          "name": "Off",
          "actionID": "3005"
        }
      ]
    },
    {
      "heliosType": "DCS.Common.Switch",
      "device": "Gear system",
      "name": "Brake Handle Park/Emergency",
      "description": "Current position of this switch.",
      "exports": [
        {
          "format": "%0.3f",
          "isExportedEveryFrame": false,
          "id": "241"
        }
      ],
      "deviceId": "5",
      "positions": [
        {
          "argumentValue": "1.0",
          "name": "Vertical Left",
          "actionID": "3006"
        },
        {
          "argumentValue": "0.7",
          "name": "Vertical",
          "actionID": "3006",
          "stopActionID": "3006",
          "stopActionValue": "0.5"
        },
        {
          "argumentValue": "0.0",
          "name": "Horizontal",
          "actionID": "3006"
        }
      ]
    }
davidmontpellier commented 1 year ago

Hi @BlueFinBima ,

Found a bug in my correction. The format is %0.1f Here is the correct one; { "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Emergency / Parking Brake Handle On/Off", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "240" } ], "deviceId": "5", "positions": [ { "argumentValue": "1.0", "name": "Pulled", "actionID": "3005" }, { "argumentValue": "0.5", "name": "Middle", "actionID": "3005" }, { "argumentValue": "0.0", "name": "Off", "actionID": "3005" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Brake Handle Park/Emergency", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "241" } ], "deviceId": "5", "positions": [ { "argumentValue": "1.0", "name": "Vertical Left", "actionID": "3006" }, { "argumentValue": "0.7", "name": "Vertical", "actionID": "3006", "stopActionID": "3006", "stopActionValue": "0.5" }, { "argumentValue": "0.0", "name": "Horizontal", "actionID": "3006" } ] }

BlueFinBima commented 1 year ago

@davidmontpellier my investigations and endless testing has resulted in a different fix for this

    {
      "heliosType": "DCS.Common.Switch",
      "device": "Gear system",
      "name": "Emergency / Parking Brake Handle On/Off",
      "description": "Current position of this switch.",
      "exports": [
        {
          "format": "%0.1f",
          "isExportedEveryFrame": false,
          "id": "240"
        }
      ],
      "deviceId": "5",
      "positions": [
        {
          "exitValue": "0.0",
          "argumentValue": "0.0",
          "name": "Brake Off",
          "actionID": "3005",
          "stopActionID": "3005"
        },
        {
          "exitValue": "1.0",
          "argumentValue": "1.0",
          "name": "Parking Brake On",
          "actionID": "3005",
          "stopActionID": "3005"
        }
      ]
    },
    {
      "heliosType": "DCS.Common.Switch",
      "device": "Gear system",
      "name": "Emergency / Parking Brake Handle Park/Emergency",
      "description": "Current position of this switch.",
      "exports": [
        {
          "format": "%0.3f",
          "isExportedEveryFrame": false,
          "id": "241"
        }
      ],
      "deviceId": "5",
      "positions": [
        {
          "exitValue": "0.000",
          "argumentValue": "0.999",
          "name": "Release",
          "actionID": "3006",
          "stopActionID": "3006",
          "stopActionValue": "0.000"
        },
        {
          "exitValue": "0.666",
          "argumentValue": "0.666",
          "name": "Park",
          "actionID": "3007",
          "stopActionID": "3007",
          "stopActionValue": "0.666"
        },
        {
          "exitValue": "0.000",
          "argumentValue": "0.000",
          "name": "Emergency",
          "actionID": "3007",
          "stopActionID": "3007",
          "stopActionValue": "0.000"
        }
      ]
    },

The attached profile contains two switches which when combined, cover all the actions of the parking brake. While you are correct that the "pull" feature of the control can have intermediate values (it can actually have more than 3 values), I found that two positions were sufficient to cater for this operation in Helios. _1.zip Many thanks for investigating this and for proposing a solution! I expect that this will go out in 1.6.5500.

davidmontpellier commented 1 year ago

Hello @BlueFinBima, Thanks for you input. I'll look at it and modify my profile to match this.

FYI I made some other modifications to this file to incorporate/modify other features:

I will create a new ticket with this new file once I merge you modifications with mine.

Thanks a lot for your support :-)

BlueFinBima commented 1 year ago

Just about to complete the release so I'll see if I can get these fixed myself today.

On Tue, 6 Dec 2022, 09:04 [CPC]David, @.***> wrote:

Hello @BlueFinBima https://github.com/BlueFinBima, Thanks for you input. I'll look at it and modify my profile to match this.

FYI I made some other modifications to this file to incorporate/modify other features:

  • Bleed Air Knob
  • Pitot Heater Switch
  • Engine Anti-Ice Switch
  • HUD Symbology Reject Switch
  • HUD Video Control Switch
  • Attitude Selector Switch
  • ALR-67 DIS TYPE Switch
  • SAI/Caging Knob
  • Cage Standby Attitude Indicator

I will create a new ticket with this new file once I merge you modifications with mine.

Thanks a lot for your support :-)

— Reply to this email directly, view it on GitHub https://github.com/HeliosVirtualCockpit/Helios/issues/644#issuecomment-1338995188, or unsubscribe https://github.com/notifications/unsubscribe-auth/AENLAGGGZSNC6RU2FKUJQVTWL36P7ANCNFSM6AAAAAAR66VXKA . You are receiving this because you were mentioned.Message ID: @.***>

BlueFinBima commented 1 year ago

@davidmontpellier no need to open a new issue

BlueFinBima commented 1 year ago
davidmontpellier commented 1 year ago

This is the complete file without you modification (sorry did not have the time to merge them yet)

{ "source": "Helios", "version": "1.6.1000.0000", "commit": "", "type": "Existing", "name": "DCS F/A-18C", "module": "FA-18C_hornet", "vehicles": [ "FA-18C_hornet" ], "functions": [ { "heliosType": "DCS.Common.Switch", "device": "AMPCD", "name": "AMPCD Night/Day Brightness Selector DAY", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "177" } ], "deviceId": "37", "positions": [ { "argumentValue": "1", "name": "Day", "actionID": "3002", "stopActionID": "3002", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Off", "actionID": "3002" }, { "argumentValue": "-1", "name": "Night", "actionID": "3003", "stopActionID": "3003", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "AMPCD", "name": "AMPCD Symbology Control Switch UP", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "179" } ], "deviceId": "37", "positions": [ { "argumentValue": "1", "name": "Up", "actionID": "3004", "stopActionID": "3004", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Off", "actionID": "3004" }, { "argumentValue": "-1", "name": "Down", "actionID": "3005", "stopActionID": "3005", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "AMPCD", "name": "AMPCD Gain Control Switch UP", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "180" } ], "deviceId": "37", "positions": [ { "argumentValue": "1", "name": "Up", "actionID": "3008", "stopActionID": "3008", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Off", "actionID": "3008" }, { "argumentValue": "-1", "name": "Down", "actionID": "3009", "stopActionID": "3009", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "AMPCD", "name": "AMPCD Contrast Control Switch UP", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "182" } ], "deviceId": "37", "positions": [ { "argumentValue": "1", "name": "Up", "actionID": "3006", "stopActionID": "3006", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Off", "actionID": "3006" }, { "argumentValue": "-1", "name": "Down", "actionID": "3007", "stopActionID": "3007", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 01", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "183" } ], "buttons": [ { "deviceId": "37", "pushId": "3011", "pushValue": "1", "releaseId": "3011", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 02", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "184" } ], "buttons": [ { "deviceId": "37", "pushId": "3012", "pushValue": "1", "releaseId": "3012", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 03", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "185" } ], "buttons": [ { "deviceId": "37", "pushId": "3013", "pushValue": "1", "releaseId": "3013", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 04", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "186" } ], "buttons": [ { "deviceId": "37", "pushId": "3014", "pushValue": "1", "releaseId": "3014", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 05", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "187" } ], "buttons": [ { "deviceId": "37", "pushId": "3015", "pushValue": "1", "releaseId": "3015", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 06", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "188" } ], "buttons": [ { "deviceId": "37", "pushId": "3016", "pushValue": "1", "releaseId": "3016", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 07", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "189" } ], "buttons": [ { "deviceId": "37", "pushId": "3017", "pushValue": "1", "releaseId": "3017", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 08", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "190" } ], "buttons": [ { "deviceId": "37", "pushId": "3018", "pushValue": "1", "releaseId": "3018", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 09", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "191" } ], "buttons": [ { "deviceId": "37", "pushId": "3019", "pushValue": "1", "releaseId": "3019", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 10", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "192" } ], "buttons": [ { "deviceId": "37", "pushId": "3020", "pushValue": "1", "releaseId": "3020", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 11", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "193" } ], "buttons": [ { "deviceId": "37", "pushId": "3021", "pushValue": "1", "releaseId": "3021", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 12", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "194" } ], "buttons": [ { "deviceId": "37", "pushId": "3022", "pushValue": "1", "releaseId": "3022", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 13", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "195" } ], "buttons": [ { "deviceId": "37", "pushId": "3023", "pushValue": "1", "releaseId": "3023", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 14", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "196" } ], "buttons": [ { "deviceId": "37", "pushId": "3024", "pushValue": "1", "releaseId": "3024", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 15", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "197" } ], "buttons": [ { "deviceId": "37", "pushId": "3025", "pushValue": "1", "releaseId": "3025", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 16", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "198" } ], "buttons": [ { "deviceId": "37", "pushId": "3026", "pushValue": "1", "releaseId": "3026", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 17", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "199" } ], "buttons": [ { "deviceId": "37", "pushId": "3027", "pushValue": "1", "releaseId": "3027", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 18", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "200" } ], "buttons": [ { "deviceId": "37", "pushId": "3028", "pushValue": "1", "releaseId": "3028", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 19", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "201" } ], "buttons": [ { "deviceId": "37", "pushId": "3029", "pushValue": "1", "releaseId": "3029", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "AMPCD", "name": "OSB 20", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "202" } ], "buttons": [ { "deviceId": "37", "pushId": "3030", "pushValue": "1", "releaseId": "3030", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "AMPCD", "name": "AMPCD Off/Brightness Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "203" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "37", "actionId": "3001" } } }, { "heliosType": "DCS.Common.Switch", "device": "AMPCD", "name": "Heading Set Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "312" } ], "deviceId": "35", "positions": [ { "argumentValue": "1", "name": "+ve", "actionID": "3004", "stopActionID": "3004", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Off", "actionID": "3005" }, { "argumentValue": "-1", "name": "-ve", "actionID": "3005", "stopActionID": "3005", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "AMPCD", "name": "Course Set Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "313" } ], "deviceId": "35", "positions": [ { "argumentValue": "1", "name": "+ve", "actionID": "3006", "stopActionID": "3006", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Off", "actionID": "3007" }, { "argumentValue": "-1", "name": "-ve", "actionID": "3007", "stopActionID": "3007", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Antenna Selector", "name": "COMM 1 Antenna Selector Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "373" } ], "deviceId": "50", "positions": [ { "argumentValue": "1.0", "name": "UPPER", "actionID": "3001" }, { "argumentValue": "0.5", "name": "AUTO", "actionID": "3001" }, { "argumentValue": "0.0", "name": "LOWER", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Antenna Selector", "name": "IFF Antenna Selector Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "374" } ], "deviceId": "50", "positions": [ { "argumentValue": "1.0", "name": "UPPER", "actionID": "3002" }, { "argumentValue": "0.5", "name": "BOTH", "actionID": "3002" }, { "argumentValue": "0.0", "name": "LOWER", "actionID": "3002" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Anti-Ice", "name": "Pitot Heater Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "409" } ], "deviceId": "3", "positions": [ { "argumentValue": "1", "name": "ON", "actionID": "3016" }, { "argumentValue": "-1", "name": "AUTO", "actionID": "3016" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Anti-Ice", "name": "Engine Anti-Ice Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "410" } ], "deviceId": "12", "positions": [ { "argumentValue": "1", "name": "ON", "actionID": "3014" }, { "argumentValue": "0", "name": "OFF", "actionID": "3014" }, { "argumentValue": "-1", "name": "TEST", "actionID": "3014" } ] }, { "heliosType": "DCS.Common.Switch", "device": "ASPJ", "name": "ECM Mode Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "248" } ], "deviceId": "66", "positions": [ { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" }, { "argumentValue": "0.1", "name": "STBY", "actionID": "3001" }, { "argumentValue": "0.2", "name": "BIT", "actionID": "3001" }, { "argumentValue": "0.3", "name": "REC", "actionID": "3001" }, { "argumentValue": "0.4", "name": "XMIT", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "LOCK", "exports": [ { "format": "%0.1f", "id": "1" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "FIRE_LEFT", "exports": [ { "format": "%0.1f", "id": "10" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "MASTER_CAUTION", "exports": [ { "format": "%0.1f", "id": "13" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPN", "exports": [ { "format": "%0.1f", "id": "137" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "GO", "exports": [ { "format": "%0.1f", "id": "15" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "CTR", "description": "Centre Stores Indicator for Jettison", "exports": [ { "format": "%0.1f", "id": "152" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "LI", "description": "Left Inner Stores Indicator for Jettison", "exports": [ { "format": "%0.1f", "id": "154" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "LO", "description": "Left Outer Stores Indicator for Jettison", "exports": [ { "format": "%0.1f", "id": "156" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "RI", "description": "Right Inner Stores Indicator for Jettison", "exports": [ { "format": "%0.1f", "id": "158" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "NO_GO", "exports": [ { "format": "%0.1f", "id": "16" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "RO", "description": "Right Outer Stores Indicator for Jettison", "exports": [ { "format": "%0.1f", "id": "160" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "FLAPS", "exports": [ { "format": "%0.1f", "id": "162" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "HALF_FLAPS", "exports": [ { "format": "%0.1f", "id": "163" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "FULL_FLAPS", "exports": [ { "format": "%0.1f", "id": "164" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "LEFT_GEAR", "exports": [ { "format": "%0.1f", "id": "165" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "NOSE_GEAR", "exports": [ { "format": "%0.1f", "id": "166" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "RIGHT_GEAR", "exports": [ { "format": "%0.1f", "id": "167" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "L_BLEED", "exports": [ { "format": "%0.1f", "id": "17" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "R_BLEED", "exports": [ { "format": "%0.1f", "id": "18" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPD_BRK", "exports": [ { "format": "%0.1f", "id": "19" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SHOOT", "exports": [ { "format": "%0.1f", "id": "2" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "STBY", "exports": [ { "format": "%0.1f", "id": "20" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "L_BAR_RED", "exports": [ { "format": "%0.1f", "id": "21" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "REC", "exports": [ { "format": "%0.1f", "id": "22" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "Landing Gear Handle", "exports": [ { "format": "%0.1f", "id": "227" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "L_BAR_GREEN", "exports": [ { "format": "%0.1f", "id": "23" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "XMIT", "exports": [ { "format": "%0.1f", "id": "24" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "ASPJ_OH", "exports": [ { "format": "%0.1f", "id": "25" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "FIRE_RIGHT", "exports": [ { "format": "%0.1f", "id": "26" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "FIRE_APU", "exports": [ { "format": "%0.1f", "id": "29" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "HOOK", "exports": [ { "format": "%0.1f", "id": "294" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "CK_SEAT", "exports": [ { "format": "%0.1f", "id": "298" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "APU_ACC", "exports": [ { "format": "%0.1f", "id": "299" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SHOOT_STROBE", "exports": [ { "format": "%0.1f", "id": "3" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "BATT_SW", "exports": [ { "format": "%0.1f", "id": "300" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "FCS_HOT", "exports": [ { "format": "%0.1f", "id": "301" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "GEN_TIE", "exports": [ { "format": "%0.1f", "id": "302" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPARE_CTN1", "exports": [ { "format": "%0.1f", "id": "303" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "FUEL_LO", "exports": [ { "format": "%0.1f", "id": "304" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "FCES", "exports": [ { "format": "%0.1f", "id": "305" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPARE_CTN2", "exports": [ { "format": "%0.1f", "id": "306" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "L_GEN", "exports": [ { "format": "%0.1f", "id": "307" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "R_GEN", "exports": [ { "format": "%0.1f", "id": "308" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPARE_CTN3", "exports": [ { "format": "%0.1f", "id": "309" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "RCDR_ON", "exports": [ { "format": "%0.1f", "id": "31" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "DISP", "exports": [ { "format": "%0.1f", "id": "32" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPARE_RH1", "exports": [ { "format": "%0.1f", "id": "33" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPARE_RH2", "exports": [ { "format": "%0.1f", "id": "34" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPARE_RH3", "exports": [ { "format": "%0.1f", "id": "35" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPARE_RH4", "exports": [ { "format": "%0.1f", "id": "36" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SPARE_RH5", "exports": [ { "format": "%0.1f", "id": "37" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "APU_READY", "exports": [ { "format": "%0.1f", "id": "376" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "SAM", "exports": [ { "format": "%0.1f", "id": "38" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "AI", "exports": [ { "format": "%0.1f", "id": "39" } ] }, { "heliosType": "DCS.Common.IndicatorDimmable", "device": "Caution Indicators", "name": "AOA_HIGH", "description": "AoA Indexer Light (High)", "exports": [ { "format": "%0.2f", "id": "4" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "AAA", "exports": [ { "format": "%0.1f", "id": "40" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "CW", "exports": [ { "format": "%0.1f", "id": "41" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "READY", "exports": [ { "format": "%0.1f", "id": "44" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "DISCH", "exports": [ { "format": "%0.1f", "id": "45" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "AA", "description": "Air to Air Master Mode Indicator", "exports": [ { "format": "%0.1f", "id": "47" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Caution Indicators", "name": "AG", "description": "Air to Ground Master Mode Indicator", "exports": [ { "format": "%0.1f", "id": "48" } ] }, { "heliosType": "DCS.Common.IndicatorDimmable", "device": "Caution Indicators", "name": "AOA_CENTER", "description": "AoA Indexer Light (Center)", "exports": [ { "format": "%0.2f", "id": "5" } ] }, { "heliosType": "DCS.Common.IndicatorDimmable", "device": "Caution Indicators", "name": "AOA_LOW", "description": "AoA Indexer Light (Low)", "exports": [ { "format": "%0.2f", "id": "6" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "MC Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "368" } ], "deviceId": "3", "positions": [ { "argumentValue": "1", "name": "1 Off", "actionID": "3026", "stopActionID": "3026", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Norm", "actionID": "3027" }, { "argumentValue": "-1", "name": "2 Off", "actionID": "3027", "stopActionID": "3027", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "CB FCS CHAN 1", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "381" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3017" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3017" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "CB FCS CHAN 2", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "382" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3018" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3018" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "CB SPD BRK", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "383" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3019" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3019" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "CB LAUNCH BAR", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "384" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3020" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3020" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "CB FCS CHAN 3", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "454" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3021" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3021" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "CB FCS CHAN 4", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "455" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3022" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3022" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "CB HOOK", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "456" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3023" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3023" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CB", "name": "CB LG", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "457" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3024" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3024" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "CMDS", "name": "Dispense Button - Push to dispense flares and chaff", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "380" } ], "buttons": [ { "deviceId": "54", "pushId": "3002", "pushValue": "1", "releaseId": "3002", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "CMDS", "name": "ECM JETT JETT SEL Button - Push to jettison", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "515" } ], "buttons": [ { "deviceId": "54", "pushId": "3003", "pushValue": "1", "releaseId": "3003", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "CMDS", "name": "ECM Jettison", "exports": [ { "format": "%0.1f", "id": "516" } ] }, { "heliosType": "DCS.Common.Switch", "device": "CMDS", "name": "DISPENSER Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "517" } ], "deviceId": "54", "positions": [ { "argumentValue": "0.2", "name": "BYPASS", "actionID": "3001" }, { "argumentValue": "0.1", "name": "ON", "actionID": "3001" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Cockpit Lights", "name": "MASTER CAUTION Reset Button - Press to reset", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "14" } ], "buttons": [ { "deviceId": "9", "pushId": "3008", "pushValue": "1", "releaseId": "3008", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Cockpit Lights", "name": "CONSOLES Lights Dimmer Control", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "413" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "9", "actionId": "3001" } } }, { "heliosType": "DCS.Common.Axis", "device": "Cockpit Lights", "name": "INST PNL Dimmer Control", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "414" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "9", "actionId": "3002" } } }, { "heliosType": "DCS.Common.Axis", "device": "Cockpit Lights", "name": "FLOOD Light Dimmer Control", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "415" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "9", "actionId": "3003" } } }, { "heliosType": "DCS.Common.Switch", "device": "Cockpit Lights", "name": "Lights Test Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "416" } ], "deviceId": "9", "positions": [ { "argumentValue": "1.0", "name": "TEST", "actionID": "3007" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3007" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Cockpit Lights", "name": "WARN/CAUTION Dimmer Control", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "417" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "9", "actionId": "3006" } } }, { "heliosType": "DCS.Common.Axis", "device": "Cockpit Lights", "name": "CHART Light Dimmer Control", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "418" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "9", "actionId": "3005" } } }, { "heliosType": "DCS.Common.Switch", "device": "Cockpit Lights", "name": "MODE Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "419" } ], "deviceId": "9", "positions": [ { "argumentValue": "1.0", "name": "NVG", "actionID": "3004" }, { "argumentValue": "0.0", "name": "NITE", "actionID": "3004" }, { "argumentValue": "-1.0", "name": "DAY", "actionID": "3004" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Cockpit Mechanics", "name": "Rudder Pedal Adjust Lever", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "260" } ], "buttons": [ { "deviceId": "7", "pushId": "3012", "pushValue": "1", "releaseId": "3012", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Cockpit Mechanics", "name": "Canopy Jettison Handle - Pull to jettison", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "42" } ], "buttons": [ { "deviceId": "7", "pushId": "3003", "pushValue": "1", "releaseId": "3003", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Cockpit Mechanics", "name": "Canopy Jettison Handle Unlock Button - Press to unlock", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "43" } ], "buttons": [ { "deviceId": "7", "pushId": "3004", "pushValue": "1", "releaseId": "3004", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Cockpit Mechanics", "name": "Canopy Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "453" } ], "deviceId": "7", "positions": [ { "argumentValue": "1", "name": "Open", "actionID": "3001", "stopActionID": "3001", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Hold", "actionID": "3002" }, { "argumentValue": "-1", "name": "Close", "actionID": "3002", "stopActionID": "3002", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Cockpit Mechanics", "name": "Ejection Control Handle (3 times)", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "510" } ], "buttons": [ { "deviceId": "7", "pushId": "3008", "pushValue": "1", "releaseId": "3008", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Cockpit Mechanics", "name": "Ejection Seat SAFE/ARMED Handle", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "511" } ], "deviceId": "7", "positions": [ { "argumentValue": "1.0", "name": "SAFE", "actionID": "3006" }, { "argumentValue": "0.0", "name": "ARMED", "actionID": "3006" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Cockpit Mechanics", "name": "Shoulder Harness Control Handle", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "513" } ], "deviceId": "7", "positions": [ { "argumentValue": "1.0", "name": "LOCK", "actionID": "3009" }, { "argumentValue": "0.0", "name": "UNLOCK", "actionID": "3009" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Cockpit Mechanics", "name": "Seat Height Adjustment Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "514" } ], "deviceId": "12", "positions": [ { "argumentValue": "1", "name": "Up", "actionID": "3010", "stopActionID": "3010", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Hold", "actionID": "3011" }, { "argumentValue": "-1", "name": "Down", "actionID": "3011", "stopActionID": "3011", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Cockpit Mechanics", "name": "Hide Stick toggle", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "575" } ], "deviceId": "7", "positions": [ { "argumentValue": "1", "name": "Hide", "actionID": "3013" }, { "argumentValue": "0", "name": "Show", "actionID": "3013" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Control system", "name": "Spin Recovery Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "138" } ], "deviceId": "2", "positions": [ { "argumentValue": "1.0", "name": "RCVY", "actionID": "3009" }, { "argumentValue": "0.0", "name": "NORM", "actionID": "3009" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Control system", "name": "Spin Recovery Switch Cover", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "139" } ], "deviceId": "2", "positions": [ { "argumentValue": "1.0", "name": "OPEN", "actionID": "3008" }, { "argumentValue": "0.0", "name": "CLOSE", "actionID": "3008" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Control system", "name": "FLAP Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "234" } ], "deviceId": "2", "positions": [ { "argumentValue": "1.0", "name": "AUTO", "actionID": "3007" }, { "argumentValue": "0.0", "name": "HALF", "actionID": "3007" }, { "argumentValue": "-1.0", "name": "FULL", "actionID": "3007" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Control system", "name": "Wing Fold Lever", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "295" } ], "deviceId": "2", "positions": [ { "argumentValue": "-1.0", "name": "Fold", "actionID": "3011" }, { "argumentValue": "0.0", "name": "Hold", "actionID": "3011" }, { "argumentValue": "1.0", "name": "Spread", "actionID": "3011" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Control system", "name": "Wing Fold Lever Stow/Pull", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "296" } ], "buttons": [ { "deviceId": "2", "pushId": "3010", "pushValue": "1", "releaseId": "3010", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Control system", "name": "RUD TRIM Control", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "345" } ], "loop": false, "argumentValue": 0.05, "argumentMin": -1.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "2", "actionId": "3001" } } }, { "heliosType": "DCS.Common.PushButton", "device": "Control system", "name": "T/O TRIM Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "346" } ], "buttons": [ { "deviceId": "2", "pushId": "3002", "pushValue": "1", "releaseId": "3002", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Control system", "name": "GAIN Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "347" } ], "deviceId": "2", "positions": [ { "argumentValue": "1.0", "name": "NORM", "actionID": "3006" }, { "argumentValue": "0.0", "name": "ORIDE", "actionID": "3006" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Control system", "name": "GAIN Switch Cover", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "348" } ], "deviceId": "2", "positions": [ { "argumentValue": "1.0", "name": "OPEN", "actionID": "3005" }, { "argumentValue": "0.0", "name": "CLOSE", "actionID": "3005" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Control system", "name": "FCS RESET Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "349" } ], "buttons": [ { "deviceId": "2", "pushId": "3003", "pushValue": "1", "releaseId": "3003", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Control system", "name": "FCS BIT Switch", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "470" } ], "buttons": [ { "deviceId": "2", "pushId": "3004", "pushValue": "1", "releaseId": "3004", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Control system", "name": "Throttles Friction Adjusting Lever", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "504" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "2", "actionId": "3012" } } }, { "heliosType": "DCS.Common.Switch", "device": "ECS", "name": "AV COOL Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "297" } ], "deviceId": "11", "positions": [ { "argumentValue": "1.0", "name": "NORM", "actionID": "3008" }, { "argumentValue": "0.0", "name": "EMERG", "actionID": "3008" } ] }, { "heliosType": "DCS.Common.Switch", "device": "ECS", "name": "ECS Mode Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "405" } ], "deviceId": "11", "positions": [ { "argumentValue": "1.0", "name": "AUTO", "actionID": "3003" }, { "argumentValue": "0.7", "name": "MAN", "actionID": "3003" }, { "argumentValue": "0.3", "name": "OFF", "actionID": "3003" }, { "argumentValue": "0.0", "name": "RAM", "actionID": "3003" } ] }, { "heliosType": "DCS.Common.Axis", "device": "ECS", "name": "Suit Temperature Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "406" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "11", "actionId": "3007" } } }, { "heliosType": "DCS.Common.Axis", "device": "ECS", "name": "Cabin Temperature Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "407" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "11", "actionId": "3006" } } }, { "heliosType": "DCS.Common.Switch", "device": "ECS", "name": "Cabin Pressure Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "408" } ], "deviceId": "11", "positions": [ { "argumentValue": "1.0", "name": "NORM", "actionID": "3004" }, { "argumentValue": "0.7", "name": "DUMP", "actionID": "3004" }, { "argumentValue": "0.3", "name": "RAM", "actionID": "3004" }, { "argumentValue": "0.0", "name": "DUMP", "actionID": "3004" } ] }, { "heliosType": "DCS.Common.Switch", "device": "ECS", "name": "Bleed Air Knob", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "411" } ], "deviceId": "11", "positions": [ { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" }, { "argumentValue": "0.1", "name": "L OFF", "actionID": "3001" }, { "argumentValue": "0.2", "name": "NORM", "actionID": "3001" }, { "argumentValue": "0.3", "name": "R OFF", "actionID": "3001" }
] }, { "heliosType": "DCS.Common.PushButton", "device": "ECS", "name": "Bleed Air Knob AUG PULL", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "412" } ], "buttons": [ { "deviceId": "11", "pushId": "3002", "pushValue": "1", "releaseId": "3002", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "ECS", "name": "Defog Handle", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "451" } ], "loop": false, "argumentValue": 0.5, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "11", "actionId": "3005" } } }, { "heliosType": "DCS.Common.Switch", "device": "ECS", "name": "Windshield Anti-Ice/Rain Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "452" } ], "deviceId": "11", "positions": [ { "argumentValue": "1.0", "name": "ANTI ICE", "actionID": "3009" }, { "argumentValue": "0.5", "name": "OFF", "actionID": "3009" }, { "argumentValue": "0.0", "name": "RAIN", "actionID": "3009" } ] }, { "heliosType": "DCS.Common.Axis", "device": "ECS", "name": "Left Louver", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "505" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "11", "actionId": "3010" } } }, { "heliosType": "DCS.Common.Axis", "device": "ECS", "name": "Right Louver", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "506" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "11", "actionId": "3011" } } }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Ground Power Switch 1", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "332" } ], "deviceId": "3", "positions": [ { "argumentValue": "1", "name": "A On", "actionID": "3008", "stopActionID": "3008", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Auto", "actionID": "3009" }, { "argumentValue": "-1", "name": "B On", "actionID": "3009", "stopActionID": "3009", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Ground Power Switch 2", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "333" } ], "deviceId": "3", "positions": [ { "argumentValue": "1", "name": "A On", "actionID": "3010", "stopActionID": "3010", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Auto", "actionID": "3011" }, { "argumentValue": "-1", "name": "B On", "actionID": "3011", "stopActionID": "3011", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Ground Power Switch 3", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "334" } ], "deviceId": "3", "positions": [ { "argumentValue": "1", "name": "A On", "actionID": "3012", "stopActionID": "3012", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Auto", "actionID": "3013" }, { "argumentValue": "-1", "name": "B On", "actionID": "3013", "stopActionID": "3013", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Ground Power Switch 4", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "335" } ], "deviceId": "3", "positions": [ { "argumentValue": "1", "name": "A On", "actionID": "3014", "stopActionID": "3014", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Auto", "actionID": "3015" }, { "argumentValue": "-1", "name": "B On", "actionID": "3015", "stopActionID": "3015", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "External Power Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "336" } ], "deviceId": "3", "positions": [ { "argumentValue": "1", "name": "Reset", "actionID": "3004", "stopActionID": "3004", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Norm", "actionID": "3005" }, { "argumentValue": "-1", "name": "Off", "actionID": "3005", "stopActionID": "3005", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Generator TIE Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "378" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "NORM", "actionID": "3006" }, { "argumentValue": "0.0", "name": "RESET", "actionID": "3006" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Generator TIE Control Switch Cover", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "379" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "OPEN", "actionID": "3007" }, { "argumentValue": "0.0", "name": "CLOSE", "actionID": "3007" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Left Generator Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "402" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "NORM", "actionID": "3002" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3002" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Right Generator Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "403" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "NORM", "actionID": "3003" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3003" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Electric system", "name": "Battery Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "404" } ], "deviceId": "3", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3001" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" }, { "argumentValue": "-1.0", "name": "ORIDE", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Exterior Lights", "name": "LDG/TAXI LIGHT Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "237" } ], "deviceId": "8", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3004" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3004" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Exterior Lights", "name": "Formation Lights Dimmer Control", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "337" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "8", "actionId": "3002" } } }, { "heliosType": "DCS.Common.Axis", "device": "Exterior Lights", "name": "Position Lights Dimmer Control", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "338" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "8", "actionId": "3001" } } }, { "heliosType": "DCS.Common.Switch", "device": "Exterior Lights", "name": "STROBE Lights Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "339" } ], "deviceId": "8", "positions": [ { "argumentValue": "1.0", "name": "BRT", "actionID": "3003" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3003" }, { "argumentValue": "-1.0", "name": "DIM", "actionID": "3003" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Fire Systems", "name": "Left Engine/AMAD Fire Warning/Extinguisher Light - (LMB) depress/(RMB) cover control", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "11" } ], "buttons": [ { "deviceId": "12", "pushId": "3010", "pushValue": "1", "releaseId": "3010", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Fire Systems", "name": "Right Engine/AMAD Fire Warning/Extinguisher Light - (LMB) depress/(RMB) cover control", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "27" } ], "buttons": [ { "deviceId": "12", "pushId": "3011", "pushValue": "1", "releaseId": "3011", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Fire Systems", "name": "APU Fire Warning/Extinguisher Light", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "30" } ], "buttons": [ { "deviceId": "12", "pushId": "3009", "pushValue": "1", "releaseId": "3009", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Fire Systems", "name": "Fire Extinguisher Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "46" } ], "buttons": [ { "deviceId": "12", "pushId": "3008", "pushValue": "1", "releaseId": "3008", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "Flight Instruments", "name": "IAS Airspeed", "description": "Current indicated air speed of the aircraft.", "exports": [ { "format": "%.4f", "id": "217" } ], "calibration": { "points": [ { "value": 0.0, "mappedValue": 0.0 }, { "value": 1.0, "mappedValue": 360.0 } ], "precision": 1 }, "unit": "Knots" }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "Flight Instruments", "name": "VVI", "description": "Vertical velocity indicator -6000 to +6000.", "exports": [ { "format": "%.4f", "id": "225" } ], "calibration": { "points": [ { "value": -1.0, "mappedValue": -6000.0 }, { "value": 0.0, "mappedValue": 0.0 }, { "value": 1.0, "mappedValue": 6000.0 } ], "precision": 1 }, "unit": "FeetPerMinute" }, { "heliosType": "DCS.Common.Switch", "device": "Fuel system", "name": "Internal Wing Tank Fuel Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "340" } ], "deviceId": "6", "positions": [ { "argumentValue": "1.0", "name": "INHIBIT", "actionID": "3001" }, { "argumentValue": "0.0", "name": "NORM", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Fuel system", "name": "Probe Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "341" } ], "deviceId": "6", "positions": [ { "argumentValue": "1.0", "name": "EXTEND", "actionID": "3002" }, { "argumentValue": "0.0", "name": "RETRACT", "actionID": "3002" }, { "argumentValue": "-1.0", "name": "EMERG EXTD", "actionID": "3002" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Fuel system", "name": "External Wing Tanks Fuel Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "342" } ], "deviceId": "6", "positions": [ { "argumentValue": "1.0", "name": "STOP", "actionID": "3005" }, { "argumentValue": "0.0", "name": "NORM", "actionID": "3005" }, { "argumentValue": "-1.0", "name": "ORIDE", "actionID": "3005" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Fuel system", "name": "External Centerline Tank Fuel Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "343" } ], "deviceId": "6", "positions": [ { "argumentValue": "1.0", "name": "STOP", "actionID": "3004" }, { "argumentValue": "0.0", "name": "NORM", "actionID": "3004" }, { "argumentValue": "-1.0", "name": "ORIDE", "actionID": "3004" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Fuel system", "name": "Fuel Dump Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "344" } ], "deviceId": "6", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3003" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3003" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Landing Gear Control Handle", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "226" } ], "deviceId": "5", "positions": [ { "argumentValue": "1.0", "name": "UP", "actionID": "3001" }, { "argumentValue": "0.0", "name": "DOWN", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Gear system", "name": "Emergency Down - Push to unlock", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "228" } ], "buttons": [ { "deviceId": "5", "pushId": "3002", "pushValue": "1", "releaseId": "3002", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Gear system", "name": "Down Lock Override Button - Push to unlock", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "229" } ], "buttons": [ { "deviceId": "5", "pushId": "3003", "pushValue": "1", "releaseId": "3003", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Launch Bar Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "233" } ], "deviceId": "5", "positions": [ { "argumentValue": "0", "name": "Retract", "actionID": "3008" }, { "argumentValue": "1", "name": "Extend", "actionID": "3008" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Anti Skid Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "238" } ], "deviceId": "5", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3004" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3004" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Hook Bypass Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "239" } ], "deviceId": "9", "positions": [ { "argumentValue": "1.0", "name": "Field", "actionID": "3009" }, { "argumentValue": "0.0", "name": "Carrier", "actionID": "3009" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Emergency / Parking Brake Handle On/Off", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "240" } ], "deviceId": "5", "positions": [ { "argumentValue": "1.0", "name": "Pulled", "actionID": "3005" }, { "argumentValue": "0.5", "name": "Middle", "actionID": "3005" }, { "argumentValue": "0.0", "name": "Off", "actionID": "3005" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Brake Handle Park/Emergency", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "241" } ], "deviceId": "5", "positions": [ { "argumentValue": "1.0", "name": "Vertical Left", "actionID": "3006" }, { "argumentValue": "0.7", "name": "Vertical", "actionID": "3006", "stopActionID": "3006", "stopActionValue": "0.5" }, { "argumentValue": "0.0", "name": "Horizontal", "actionID": "3007", "stopActionID": "3007", "stopActionValue": "0.5" } ] }, { "heliosType": "DCS.Common.Rocker", "device": "Gear system", "name": "Brake Handle Park/Emergency release", "description": "Current state of this rocker.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "322" } ], "vertical": true, "buttons": [ { "deviceId": "5", "pushId": "3006", "pushValue": "1", "releaseId": "3007", "releaseValue": "0" }, { "deviceId": "5", "pushId": "3006", "pushValue": "-1", "releaseId": "3007", "releaseValue": "0" } ] },
{ "heliosType": "DCS.Common.Switch", "device": "Gear system", "name": "Arresting Hook Handle", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "293" } ], "deviceId": "5", "positions": [ { "argumentValue": "1.0", "name": "UP", "actionID": "3009" }, { "argumentValue": "0.0", "name": "DOWN", "actionID": "3009" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Head-Up Display", "name": "HUD Symbology Reject Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "140" } ], "deviceId": "34", "positions": [ { "argumentValue": "0.2", "name": "NORM", "actionID": "3001" }, { "argumentValue": "0.1", "name": "REJ 1", "actionID": "3001" }, { "argumentValue": "0.0", "name": "REJ 2", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Head-Up Display", "name": "HUD Symbology Brightness Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "141" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "34", "actionId": "3002" } } }, { "heliosType": "DCS.Common.Switch", "device": "Head-Up Display", "name": "HUD Symbology Brightness Selector Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "142" } ], "deviceId": "34", "positions": [ { "argumentValue": "1.0", "name": "DAY", "actionID": "3003" }, { "argumentValue": "0.0", "name": "NIGHT", "actionID": "3003" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Head-Up Display", "name": "Black Level Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "143" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "34", "actionId": "3004" } } }, { "heliosType": "DCS.Common.Switch", "device": "Head-Up Display", "name": "HUD Video Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "144" } ], "deviceId": "34", "positions": [ { "argumentValue": "0.0", "name": "W/B", "actionID": "3005" }, { "argumentValue": "0.1", "name": "VID", "actionID": "3005" }, { "argumentValue": "0.2", "name": "OFF", "actionID": "3005" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Head-Up Display", "name": "Balance Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "145" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "34", "actionId": "3006" } } }, { "heliosType": "DCS.Common.Axis", "device": "Head-Up Display", "name": "AOA Indexer Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "146" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "34", "actionId": "3007" } } }, { "heliosType": "DCS.Common.Switch", "device": "Head-Up Display", "name": "Altitude Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "147" } ], "deviceId": "34", "positions": [ { "argumentValue": "1.0", "name": "BARO", "actionID": "3008" }, { "argumentValue": "0.0", "name": "RDR", "actionID": "3008" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Head-Up Display", "name": "Attitude Selector Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "148" } ], "deviceId": "34", "positions": [ { "argumentValue": "1.0", "name": "INS", "actionID": "3009" }, { "argumentValue": "0.0", "name": "AUTO", "actionID": "3009" }, { "argumentValue": "-1.0", "name": "STBY", "actionID": "3009" } ] }, { "heliosType": "DCS.Common.Axis", "device": "HMD", "name": "HMD OFF/BRT", "description": "Current value of this axis.", "exports": [ { "format": "%.2f", "isExportedEveryFrame": false, "id": "136" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "58", "actionId": "3001" } } }, { "heliosType": "DCS.Common.Switch", "device": "HOTAS", "name": "Exterior Lights Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "494" } ], "deviceId": "13", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3041" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3041" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Hydraulic system", "name": "Hydraulic Isolate Override Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "369" } ], "deviceId": "4", "positions": [ { "argumentValue": "1.0", "name": "NORM", "actionID": "3001" }, { "argumentValue": "0.0", "name": "ORIDE", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "IFEI", "name": "IFEI Mode Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "168" } ], "buttons": [ { "deviceId": "33", "pushId": "3001", "pushValue": "1", "releaseId": "3001", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "IFEI", "name": "IFEI QTY Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "169" } ], "buttons": [ { "deviceId": "33", "pushId": "3002", "pushValue": "1", "releaseId": "3002", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "IFEI", "name": "IFEI Up Arrow Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "170" } ], "buttons": [ { "deviceId": "33", "pushId": "3003", "pushValue": "1", "releaseId": "3003", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "IFEI", "name": "IFEI Down Arrow Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "171" } ], "buttons": [ { "deviceId": "33", "pushId": "3004", "pushValue": "1", "releaseId": "3004", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "IFEI", "name": "IFEI ZONE Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "172" } ], "buttons": [ { "deviceId": "33", "pushId": "3005", "pushValue": "1", "releaseId": "3005", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "IFEI", "name": "IFEI ET Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "173" } ], "buttons": [ { "deviceId": "33", "pushId": "3006", "pushValue": "1", "releaseId": "3006", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "IFEI", "name": "IFEI Brightness Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "174" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.5, "argumentMax": 1.0, "actions": { "set": { "deviceId": "33", "actionId": "3007" } } }, { "heliosType": "DCS.Common.Switch", "device": "IFEI", "name": "Video Record Selector Switch HMD/LDDI/RDDI", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "175" } ], "deviceId": "0", "positions": [ { "argumentValue": "1.0", "name": "HMD", "actionID": "3104" }, { "argumentValue": "0.5", "name": "LDDI", "actionID": "3104" }, { "argumentValue": "0.0", "name": "RDDI", "actionID": "3104" } ] }, { "heliosType": "DCS.Common.Switch", "device": "IFEI", "name": "Video Record Selector Switch, HUD/LDIR/RDDI", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "176" } ], "deviceId": "0", "positions": [ { "argumentValue": "1.0", "name": "HUD", "actionID": "3105" }, { "argumentValue": "0.5", "name": "LDIR", "actionID": "3105" }, { "argumentValue": "0.0", "name": "RDDI", "actionID": "3105" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Bingo Value", "description": "Value of the BINGO fuel state", "exports": [ { "isExportedEveryFrame": false, "id": "2052" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Clock hours", "description": "Value of the clock HH", "exports": [ { "isExportedEveryFrame": false, "id": "2053" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Clock minutes", "description": "Value of the clock MM", "exports": [ { "isExportedEveryFrame": false, "id": "2054" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Clock seconds", "description": "Value of the clock SS", "exports": [ { "isExportedEveryFrame": false, "id": "2055" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Clock HH MM separator", "description": "Flag to display colon HH:MM on IFEI clock display", "exports": [ { "id": "2056" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Clock MM SS separator", "description": "Flag to display colon MM:SS on IFEI clock display", "exports": [ { "id": "2057" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Timer H MM separator", "description": "Flag to display colon HH:MM on IFEI timer display", "exports": [ { "id": "2058" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Timer MM SS separator", "description": "Flag to display colon MM:SS on IFEI timer display", "exports": [ { "id": "2060" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Left Fuel Flow Value", "description": "Value of the Fuel Flow for the Left Engine", "exports": [ { "isExportedEveryFrame": false, "id": "2061" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Right Fuel Flow Value", "description": "Value of the Fuel Flow for the Right Engine", "exports": [ { "isExportedEveryFrame": false, "id": "2062" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Internal Fuel Amount", "description": "Internel Fuel Value", "exports": [ { "isExportedEveryFrame": false, "id": "2063" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Total Fuel Amount", "description": "Total Fuel Value", "exports": [ { "isExportedEveryFrame": false, "id": "2064" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Left Oil Pressure", "description": "Value of the Left Engine Oil Pressure", "exports": [ { "isExportedEveryFrame": false, "id": "2065" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Right Oil Pressure", "description": "Value of the Right Engine Oil Pressure", "exports": [ { "isExportedEveryFrame": false, "id": "2066" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Left RPM Value", "description": "Left Engine RPM", "exports": [ { "isExportedEveryFrame": false, "id": "2067" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Right RPM Value", "description": "Right Engine RPM", "exports": [ { "isExportedEveryFrame": false, "id": "2068" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Left Temperature Value", "description": "Left Engine Temperature", "exports": [ { "isExportedEveryFrame": false, "id": "2069" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Right Temperature Value", "description": "Right Engine Temperature", "exports": [ { "isExportedEveryFrame": false, "id": "2070" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Timer seconds", "description": "Value of the Timer Seconds", "exports": [ { "isExportedEveryFrame": false, "id": "2071" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Timer minutes", "description": "Value of the Timer Minutes", "exports": [ { "isExportedEveryFrame": false, "id": "2072" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Timer hours", "description": "Value of the Timer Hours", "exports": [ { "isExportedEveryFrame": false, "id": "2073" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "SP Code", "description": "Value of the code before the SP", "exports": [ { "isExportedEveryFrame": false, "id": "2074" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "SP", "description": "Value of SP", "exports": [ { "isExportedEveryFrame": false, "id": "2075" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Draw Character", "description": "Draw Character Not sure what this is", "exports": [ { "isExportedEveryFrame": false, "id": "2076" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "T Value", "description": "T Value", "exports": [ { "isExportedEveryFrame": false, "id": "2077" } ] }, { "heliosType": "DCS.Common.Text", "device": "IFEI", "name": "Time Set Mode", "description": "Alter / Set Clock Mode", "exports": [ { "isExportedEveryFrame": false, "id": "2078" } ] }, { "heliosType": "DCS.Common.Switch", "device": "IFEI", "name": "Video Record Mode Selector Switch, MAN/OFF/AUTO", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "314" } ], "deviceId": "0", "positions": [ { "argumentValue": "1.0", "name": "MAN", "actionID": "3106" }, { "argumentValue": "0.5", "name": "OFF", "actionID": "3106" }, { "argumentValue": "0.0", "name": "AUTO", "actionID": "3106" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "RPM Flag", "description": "Show RPM on IFEI", "exports": [ { "id": "4000" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Temp Flag", "description": "Show Temp on IFEI", "exports": [ { "id": "4001" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "FF Flag", "description": "Show FF on IFEI", "exports": [ { "id": "4002" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Noz Flag", "description": "Show Noz on IFEI", "exports": [ { "id": "4003" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Oil Flag", "description": "Show Oil on IFEI", "exports": [ { "id": "4004" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Bingo Flag", "description": "Show Bingo on IFEI", "exports": [ { "id": "4005" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Left Scale Flag", "description": "Show Left Scale on IFEI", "exports": [ { "id": "4006" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Right Scale Flag", "description": "Show Right Scale on IFEI", "exports": [ { "id": "4007" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Left Scale 0 Flag", "description": "Show Left Scale 0 value on IFEI", "exports": [ { "id": "4008" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Right Scale 0 Flag", "description": "Show Right Scale 0 value on IFEI", "exports": [ { "id": "4009" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Left Scale 50 Flag", "description": "Show Left Scale 50 value on IFEI", "exports": [ { "id": "4010" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Right Scale 50 Flag", "description": "Show Right Scale 50 value on IFEI", "exports": [ { "id": "4011" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Left Scale 100 Flag", "description": "Show Left Scale 10 value on IFEI", "exports": [ { "id": "4012" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Right Scale 100 Flag", "description": "Show Right Scale 10 value on IFEI", "exports": [ { "id": "4013" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Left Nozzle Needle Flag", "description": "Left nozzle needle on IFEI", "exports": [ { "id": "4014" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Right Nozzle Needle Flag", "description": "Right nozzle needle on IFEI", "exports": [ { "id": "4015" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Zulu Time Flag", "description": "Z flag indicating Zulu time on IFEI", "exports": [ { "id": "4016" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Left Fuel Flag", "description": "L flag indicating Left fuel quantity on IFEI", "exports": [ { "id": "4017" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "Right Fuel Flag", "description": "R flag indicating Right fuel quantity on IFEI", "exports": [ { "id": "4018" } ] }, { "heliosType": "DCS.Common.Axis", "device": "IFEI", "name": "Left Nozzle Position", "description": "Current value of this axis.", "exports": [ { "isExportedEveryFrame": false, "id": "4019" } ], "loop": false, "argumentValue": 1.0, "argumentMin": 0.0, "argumentMax": 400.0, "actions": { "set": { "deviceId": "33", "actionId": "4019" } } }, { "heliosType": "DCS.Common.Axis", "device": "IFEI", "name": "Right Nozzle Position", "description": "Current value of this axis.", "exports": [ { "isExportedEveryFrame": false, "id": "4020" } ], "loop": false, "argumentValue": 1.0, "argumentMin": 0.0, "argumentMax": 400.0, "actions": { "set": { "deviceId": "33", "actionId": "4020" } } }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "IFEI", "exports": [ { "format": "%0.1f", "id": "468" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "IFEI", "name": "IFEI buttons", "exports": [ { "format": "%0.1f", "id": "469" } ] }, { "heliosType": "DCS.Common.Switch", "device": "INS", "name": "Inertial Navigation System Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "443" } ], "deviceId": "44", "positions": [ { "argumentValue": "0.0", "name": "Off", "actionID": "3001" }, { "argumentValue": "0.1", "name": "CV", "actionID": "3001" }, { "argumentValue": "0.2", "name": "GND", "actionID": "3001" }, { "argumentValue": "0.3", "name": "NAV", "actionID": "3001" }, { "argumentValue": "0.4", "name": "IFA", "actionID": "3001" }, { "argumentValue": "0.5", "name": "GYRO", "actionID": "3001" }, { "argumentValue": "0.6", "name": "GB", "actionID": "3001" }, { "argumentValue": "0.7", "name": "Test", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Intercom", "name": "Warning Tone Silence Button - Push to silence", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "230" } ], "buttons": [ { "deviceId": "40", "pushId": "3018", "pushValue": "1", "releaseId": "3018", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "Comm Relay Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "350" } ], "deviceId": "40", "positions": [ { "argumentValue": "1.0", "name": "CIPHER", "actionID": "3010" }, { "argumentValue": "0.5", "name": "OFF", "actionID": "3010" }, { "argumentValue": "0.0", "name": "PLAIN", "actionID": "3010" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "COMM G XMT Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "351" } ], "deviceId": "40", "positions": [ { "argumentValue": "1.0", "name": "COMM 1", "actionID": "3011" }, { "argumentValue": "0.5", "name": "OFF", "actionID": "3011" }, { "argumentValue": "0.0", "name": "COMM 2", "actionID": "3011" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "ILS Channel Selector Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "352" } ], "deviceId": "40", "positions": [] }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "ILS UFC/MAN Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "353" } ], "deviceId": "40", "positions": [ { "argumentValue": "1.0", "name": "UFC", "actionID": "3016" }, { "argumentValue": "0.0", "name": "MAN", "actionID": "3016" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "CRYPTO Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "354" } ], "deviceId": "40", "positions": [ { "argumentValue": "1", "name": "Hold", "actionID": "3014", "stopActionID": "3014", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Norm", "actionID": "3015" }, { "argumentValue": "-1", "name": "Zero", "actionID": "3015", "stopActionID": "3015", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "IFF Mode 4 Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "355" } ], "deviceId": "40", "positions": [ { "argumentValue": "1.0", "name": "DIS", "actionID": "3013" }, { "argumentValue": "0.7", "name": "AUD", "actionID": "3013" }, { "argumentValue": "0.3", "name": "DIS", "actionID": "3013" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3013" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "IFF Master Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "356" } ], "deviceId": "40", "positions": [ { "argumentValue": "1.0", "name": "EMER", "actionID": "3012" }, { "argumentValue": "0.0", "name": "NORM", "actionID": "3012" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "VOX Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "357" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "40", "actionId": "3002" } } }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "ICS Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "358" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "40", "actionId": "3003" } } }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "RWR Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "359" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "40", "actionId": "3004" } } }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "WPN Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "360" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "40", "actionId": "3005" } } }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "MIDS B Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "361" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "40", "actionId": "3007" } } }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "MIDS A Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "362" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "40", "actionId": "3006" } } }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "TACAN Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "363" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "40", "actionId": "3008" } } }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "AUX Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "364" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "40", "actionId": "3009" } } }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "KY-58 Mode Select Knob", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "444" } ], "deviceId": "41", "positions": [ { "argumentValue": "1.0", "name": "P", "actionID": "3001" }, { "argumentValue": "0.7", "name": "C", "actionID": "3001" }, { "argumentValue": "0.3", "name": "LD", "actionID": "3001" }, { "argumentValue": "0.0", "name": "RV", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Intercom", "name": "KY-58 Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "445" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "41", "actionId": "3005" } } }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "KY-58 Fill Select Knob", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "446" } ], "deviceId": "41", "positions": [ { "argumentValue": "1.0", "name": "Z 1-5", "actionID": "3002" }, { "argumentValue": "0.9", "name": "1", "actionID": "3002" }, { "argumentValue": "0.7", "name": "2", "actionID": "3002" }, { "argumentValue": "0.6", "name": "3", "actionID": "3002" }, { "argumentValue": "0.4", "name": "4", "actionID": "3002" }, { "argumentValue": "0.3", "name": "5", "actionID": "3002" }, { "argumentValue": "0.1", "name": "6", "actionID": "3002" }, { "argumentValue": "0.0", "name": "Z ALL", "actionID": "3002" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Intercom", "name": "KY-58 Power Select Knob", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "447" } ], "deviceId": "41", "positions": [ { "argumentValue": "1.0", "name": "OFF", "actionID": "3004" }, { "argumentValue": "0.5", "name": "ON", "actionID": "3004" }, { "argumentValue": "0.0", "name": "TD", "actionID": "3004" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "Console", "exports": [ { "format": "%0.1f", "id": "460" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "Flood", "exports": [ { "format": "%0.1f", "id": "461" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "NVG Flood", "exports": [ { "format": "%0.1f", "id": "462" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "Chart", "exports": [ { "format": "%0.1f", "id": "463" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "Emergancy Instruments", "exports": [ { "format": "%0.1f", "id": "464" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "Engine Instrument Flood", "exports": [ { "format": "%0.1f", "id": "465" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "Instrument", "exports": [ { "format": "%0.1f", "id": "466" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "Standby Compass", "exports": [ { "format": "%0.1f", "id": "467" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Internal Lights", "name": "Utility", "exports": [ { "format": "%0.1f", "id": "810" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Left MDI", "name": "Left MDI Brightness Selector Knob", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "51" } ], "deviceId": "35", "positions": [ { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" }, { "argumentValue": "0.1", "name": "NIGHT", "actionID": "3001" }, { "argumentValue": "0.2", "name": "DAY", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Left MDI", "name": "Left MDI Brightness Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "52" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "35", "actionId": "3002" } } }, { "heliosType": "DCS.Common.Axis", "device": "Left MDI", "name": "Left MDI Contrast Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "53" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "35", "actionId": "3003" } } }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 01", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "54" } ], "buttons": [ { "deviceId": "35", "pushId": "3011", "pushValue": "1", "releaseId": "3011", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 02", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "55" } ], "buttons": [ { "deviceId": "35", "pushId": "3012", "pushValue": "1", "releaseId": "3012", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 03", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "56" } ], "buttons": [ { "deviceId": "35", "pushId": "3013", "pushValue": "1", "releaseId": "3013", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 04", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "57" } ], "buttons": [ { "deviceId": "35", "pushId": "3014", "pushValue": "1", "releaseId": "3014", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 05", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "58" } ], "buttons": [ { "deviceId": "35", "pushId": "3015", "pushValue": "1", "releaseId": "3015", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 06", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "59" } ], "buttons": [ { "deviceId": "35", "pushId": "3016", "pushValue": "1", "releaseId": "3016", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 07", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "60" } ], "buttons": [ { "deviceId": "35", "pushId": "3017", "pushValue": "1", "releaseId": "3017", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 08", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "61" } ], "buttons": [ { "deviceId": "35", "pushId": "3018", "pushValue": "1", "releaseId": "3018", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 09", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "62" } ], "buttons": [ { "deviceId": "35", "pushId": "3019", "pushValue": "1", "releaseId": "3019", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 10", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "63" } ], "buttons": [ { "deviceId": "35", "pushId": "3020", "pushValue": "1", "releaseId": "3020", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 11", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "64" } ], "buttons": [ { "deviceId": "35", "pushId": "3021", "pushValue": "1", "releaseId": "3021", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 12", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "65" } ], "buttons": [ { "deviceId": "35", "pushId": "3022", "pushValue": "1", "releaseId": "3022", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 13", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "66" } ], "buttons": [ { "deviceId": "35", "pushId": "3023", "pushValue": "1", "releaseId": "3023", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 14", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "67" } ], "buttons": [ { "deviceId": "35", "pushId": "3024", "pushValue": "1", "releaseId": "3024", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 15", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "68" } ], "buttons": [ { "deviceId": "35", "pushId": "3025", "pushValue": "1", "releaseId": "3025", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 16", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "69" } ], "buttons": [ { "deviceId": "35", "pushId": "3026", "pushValue": "1", "releaseId": "3026", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 17", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "70" } ], "buttons": [ { "deviceId": "35", "pushId": "3027", "pushValue": "1", "releaseId": "3027", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 18", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "72" } ], "buttons": [ { "deviceId": "35", "pushId": "3028", "pushValue": "1", "releaseId": "3028", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 19", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "73" } ], "buttons": [ { "deviceId": "35", "pushId": "3029", "pushValue": "1", "releaseId": "3029", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Left MDI", "name": "OSB 20", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "75" } ], "buttons": [ { "deviceId": "35", "pushId": "3030", "pushValue": "1", "releaseId": "3030", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Master Arm Panel", "name": "IR Cooling Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "135" } ], "deviceId": "23", "positions": [ { "argumentValue": "0.2", "name": "ORIDE", "actionID": "3013" }, { "argumentValue": "0.1", "name": "NORM", "actionID": "3013" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3013" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Station Jettison Select Button CENTER", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "153" } ], "buttons": [ { "deviceId": "23", "pushId": "3005", "pushValue": "1", "releaseId": "3005", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Station Jettison Select Button LEFT IN", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "155" } ], "buttons": [ { "deviceId": "23", "pushId": "3006", "pushValue": "1", "releaseId": "3006", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Station Jettison Select Button LEFT OUT", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "157" } ], "buttons": [ { "deviceId": "23", "pushId": "3007", "pushValue": "1", "releaseId": "3007", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Station Jettison Select Button RIGHT IN", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "159" } ], "buttons": [ { "deviceId": "23", "pushId": "3008", "pushValue": "1", "releaseId": "3008", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Station Jettison Select Button RIGHT OUT", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "161" } ], "buttons": [ { "deviceId": "23", "pushId": "3009", "pushValue": "1", "releaseId": "3009", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Selective Jettison Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%.1f", "isExportedEveryFrame": false, "id": "235" } ], "buttons": [ { "deviceId": "23", "pushId": "3010", "pushValue": "1.0", "releaseId": "3010", "releaseValue": "0.0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Master Arm Panel", "name": "Selective Jettison Knob", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "236" } ], "deviceId": "23", "positions": [ { "argumentValue": "-0.1", "name": "L FUS MSL", "actionID": "3011" }, { "argumentValue": "0.0", "name": "SAFE", "actionID": "3011" }, { "argumentValue": "0.1", "name": "R FUS MSL", "actionID": "3011" }, { "argumentValue": "0.2", "name": "Rack / LCHR", "actionID": "3011" }, { "argumentValue": "0.3", "name": "STORES", "actionID": "3011" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Master Arm Panel", "name": "Auxiliary Release Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "258" } ], "deviceId": "23", "positions": [ { "argumentValue": "1.0", "name": "ENABLE", "actionID": "3012" }, { "argumentValue": "0.0", "name": "NORM", "actionID": "3012" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Master Mode Button A/A", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "458" } ], "buttons": [ { "deviceId": "23", "pushId": "3001", "pushValue": "1", "releaseId": "3001", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Master Mode Button A/G", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "459" } ], "buttons": [ { "deviceId": "23", "pushId": "3002", "pushValue": "1", "releaseId": "3002", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Master Arm Panel", "name": "Master Arm Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "49" } ], "deviceId": "23", "positions": [ { "argumentValue": "1.0", "name": "ARM", "actionID": "3003" }, { "argumentValue": "0.0", "name": "SAFE", "actionID": "3003" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Master Arm Panel", "name": "Emergency Jettison Button", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "50" } ], "buttons": [ { "deviceId": "23", "pushId": "3004", "pushValue": "1", "releaseId": "3004", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Oxygen system", "name": "OBOGS Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "365" } ], "deviceId": "10", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3001" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Oxygen system", "name": "OXY Flow Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "366" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "10", "actionId": "3002" } } }, { "heliosType": "DCS.Common.Switch", "device": "Power Plant", "name": "Fire and Bleed Air Test Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "331" } ], "deviceId": "12", "positions": [ { "argumentValue": "1", "name": "Test A", "actionID": "3006", "stopActionID": "3006", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Off", "actionID": "3007" }, { "argumentValue": "-1", "name": "Test B", "actionID": "3007", "stopActionID": "3007", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Power Plant", "name": "APU Control Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "375" } ], "deviceId": "12", "positions": [ { "argumentValue": "1.0", "name": "ON", "actionID": "3001" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Power Plant", "name": "Engine Crank Switch", "description": "Current position of this switch.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "377" } ], "deviceId": "12", "positions": [ { "argumentValue": "1", "name": "Right", "actionID": "3003", "stopActionID": "3003", "stopActionValue": "0" }, { "argumentValue": "0", "name": "Off", "actionID": "3002" }, { "argumentValue": "-1", "name": "Left", "actionID": "3002", "stopActionID": "3002", "stopActionValue": "0" } ] }, { "heliosType": "DCS.Common.NetworkValue", "device": "Radar Altimeter ID2163A", "name": "RADAR Altitude", "description": "Altitude in feet measured by RADAR.", "exports": [ { "format": "%.4f", "id": "286" } ], "valueDescription": "", "unit": "Feet" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Radar Altimeter ID2163A", "name": "Minimum Height Indicator", "description": "Minimum Altitude in Feet.", "exports": [ { "format": "%.4f", "id": "287" } ], "valueDescription": "", "unit": "Feet" }, { "heliosType": "DCS.Common.FlagValue", "device": "Radar Altimeter ID2163A", "name": "Off Flag", "exports": [ { "format": "%0.1f", "id": "288" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Radar Altimeter ID2163A", "name": "Green Lamp", "exports": [ { "format": "%0.1f", "id": "289" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "Radar Altimeter ID2163A", "name": "Red Lamp", "exports": [ { "format": "%0.1f", "id": "290" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Radar Altimeter ID2163A", "name": "Set Minimum Altitude", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "291" } ], "loop": true, "argumentValue": 0.001, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "30", "actionId": "3002" } } }, { "heliosType": "DCS.Common.PushButton", "device": "Radar Altimeter ID2163A", "name": "Push to Test Button", "description": "Current state of this button.", "exports": [ { "format": "%.1f", "isExportedEveryFrame": false, "id": "292" } ], "buttons": [ { "deviceId": "30", "pushId": "3001", "pushValue": "1.0", "releaseId": "3001", "releaseValue": "0.0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Right MDI", "name": "Right MDI Brightness Selector Knob", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "76" } ], "deviceId": "36", "positions": [ { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" }, { "argumentValue": "0.1", "name": "NIGHT", "actionID": "3001" }, { "argumentValue": "0.2", "name": "DAY", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Axis", "device": "Right MDI", "name": "Right MDI Brightness Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "77" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "36", "actionId": "3002" } } }, { "heliosType": "DCS.Common.Axis", "device": "Right MDI", "name": "Right MDI Contrast Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "78" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "36", "actionId": "3003" } } }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 01", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "79" } ], "buttons": [ { "deviceId": "36", "pushId": "3011", "pushValue": "1", "releaseId": "3011", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 02", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "80" } ], "buttons": [ { "deviceId": "36", "pushId": "3012", "pushValue": "1", "releaseId": "3012", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 03", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "81" } ], "buttons": [ { "deviceId": "36", "pushId": "3013", "pushValue": "1", "releaseId": "3013", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 04", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "82" } ], "buttons": [ { "deviceId": "36", "pushId": "3014", "pushValue": "1", "releaseId": "3014", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 05", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "83" } ], "buttons": [ { "deviceId": "36", "pushId": "3015", "pushValue": "1", "releaseId": "3015", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 06", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "84" } ], "buttons": [ { "deviceId": "36", "pushId": "3016", "pushValue": "1", "releaseId": "3016", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 07", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "85" } ], "buttons": [ { "deviceId": "36", "pushId": "3017", "pushValue": "1", "releaseId": "3017", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 08", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "86" } ], "buttons": [ { "deviceId": "36", "pushId": "3018", "pushValue": "1", "releaseId": "3018", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 09", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "87" } ], "buttons": [ { "deviceId": "36", "pushId": "3019", "pushValue": "1", "releaseId": "3019", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 10", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "88" } ], "buttons": [ { "deviceId": "36", "pushId": "3020", "pushValue": "1", "releaseId": "3020", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 11", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "89" } ], "buttons": [ { "deviceId": "36", "pushId": "3021", "pushValue": "1", "releaseId": "3021", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 12", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "90" } ], "buttons": [ { "deviceId": "36", "pushId": "3022", "pushValue": "1", "releaseId": "3022", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 13", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "91" } ], "buttons": [ { "deviceId": "36", "pushId": "3023", "pushValue": "1", "releaseId": "3023", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 14", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "92" } ], "buttons": [ { "deviceId": "36", "pushId": "3024", "pushValue": "1", "releaseId": "3024", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 15", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "93" } ], "buttons": [ { "deviceId": "36", "pushId": "3025", "pushValue": "1", "releaseId": "3025", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 16", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "94" } ], "buttons": [ { "deviceId": "36", "pushId": "3026", "pushValue": "1", "releaseId": "3026", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 17", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "95" } ], "buttons": [ { "deviceId": "36", "pushId": "3027", "pushValue": "1", "releaseId": "3027", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 18", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "96" } ], "buttons": [ { "deviceId": "36", "pushId": "3028", "pushValue": "1", "releaseId": "3028", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 19", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "97" } ], "buttons": [ { "deviceId": "36", "pushId": "3029", "pushValue": "1", "releaseId": "3029", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "Right MDI", "name": "OSB 20", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "98" } ], "buttons": [ { "deviceId": "36", "pushId": "3030", "pushValue": "1", "releaseId": "3030", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "RWR", "name": "RWR Intensity Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "216" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "53", "actionId": "3008" } } }, { "heliosType": "DCS.Common.Switch", "device": "RWR", "name": "ALR-67 DIS TYPE Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "261" } ], "deviceId": "53", "positions": [ { "argumentValue": "0.4", "name": "F", "actionID": "3007" }, { "argumentValue": "0.3", "name": "U", "actionID": "3007" }, { "argumentValue": "0.2", "name": "A", "actionID": "3007" }, { "argumentValue": "0.1", "name": "I", "actionID": "3007" }, { "argumentValue": "0.0", "name": "N", "actionID": "3007" } ] }, { "heliosType": "DCS.Common.Axis", "device": "RWR", "name": "ALR-67 AUDIO Control Knob (no function)", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "262" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "53", "actionId": "3009" } } }, { "heliosType": "DCS.Common.Axis", "device": "RWR", "name": "ALR-67 DMR Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "263" } ], "loop": false, "argumentValue": 0.15, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "53", "actionId": "3006" } } }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "Fail", "exports": [ { "format": "%0.1f", "id": "264" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "BIT", "exports": [ { "format": "%0.1f", "id": "265" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "RWR", "name": "ALR-67 BIT Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "266" } ], "buttons": [ { "deviceId": "53", "pushId": "3005", "pushValue": "1", "releaseId": "3005", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "Enable", "exports": [ { "format": "%0.1f", "id": "267" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "Offset", "exports": [ { "format": "%0.1f", "id": "268" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "RWR", "name": "ALR-67 OFFSET Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "269" } ], "buttons": [ { "deviceId": "53", "pushId": "3004", "pushValue": "1", "releaseId": "3004", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "Special Enable", "exports": [ { "format": "%0.1f", "id": "270" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "Special", "exports": [ { "format": "%0.1f", "id": "271" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "RWR", "name": "ALR-67 SPECIAL Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "272" } ], "buttons": [ { "deviceId": "53", "pushId": "3003", "pushValue": "1", "releaseId": "3003", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "Limit", "exports": [ { "format": "%0.1f", "id": "273" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "Display", "exports": [ { "format": "%0.1f", "id": "274" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "RWR", "name": "ALR-67 DISPLAY Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "275" } ], "buttons": [ { "deviceId": "53", "pushId": "3002", "pushValue": "1", "releaseId": "3002", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "RWR", "name": "ALR-67 POWER Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "277" } ], "buttons": [ { "deviceId": "53", "pushId": "3001", "pushValue": "1", "releaseId": "3001", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.FlagValue", "device": "RWR", "name": "RWR Lights Brightness ", "exports": [ { "format": "%0.1f", "id": "520" } ] }, { "heliosType": "DCS.Common.Axis", "device": "SAI", "name": "Caging Knob", "description": "Current state of this encoder.", "exports": [ { "format": "%.2f", "isExportedEveryFrame": false, "id": "214" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "32", "actionId": "3003" } } }, { "heliosType": "DCS.Common.PushButton", "device": "SAI", "name": "Cage Standby Attitude Indicator", "description": "Current state of this button.", "exports": [ { "format": "%.1f", "isExportedEveryFrame": false, "id": "213" } ], "buttons": [ { "deviceId": "32", "pushId": "3002", "pushValue": "1.0", "releaseId": "3002", "releaseValue": "0.0" } ] }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "SAI", "name": "Pitch", "description": "Current pitch displayed on the SAI.", "exports": [ { "format": "%.4f", "id": "205" } ], "baseValue": 0.0, "scale": 90.0, "unit": "Degrees" }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "SAI", "name": "Bank", "description": "Current bank displayed on the SAI.", "exports": [ { "format": "%.4f", "id": "206" } ], "baseValue": 0.0, "scale": -180.0, "unit": "Degrees" }, { "heliosType": "DCS.Common.NetworkValue", "device": "SAI", "name": "Slip Ball", "description": "Current position of the slip ball relative to the center of the tube.", "exports": [ { "format": "%.4f", "id": "207" } ], "valueDescription": "(-1 to 1) -1 is full left and 1 is full right.", "unit": "Numeric" }, { "heliosType": "DCS.Common.NetworkValue", "device": "SAI", "name": "Rate of Turn", "description": "Turn indicator position", "exports": [ { "format": "%.4f", "id": "208" } ], "valueDescription": "(-1 to 1) -1 is full left and 1 is full right.", "unit": "Numeric" }, { "heliosType": "DCS.Common.FlagValue", "device": "SAI", "name": "Warning Flag", "description": "Displayed when SAI is caged or non-functional.", "exports": [ { "format": "%0.1f", "id": "209" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "SAI", "name": "SAI Test Button - Push to test", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "215" } ], "buttons": [ { "deviceId": "32", "pushId": "3001", "pushValue": "1", "releaseId": "3001", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Sensor panel", "name": "RADAR Switch (MW to pull)", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "440" } ], "deviceId": "42", "positions": [ { "argumentValue": "0.0", "name": "OFF", "actionID": "3001" }, { "argumentValue": "0.1", "name": "STBY", "actionID": "3001" }, { "argumentValue": "0.2", "name": "OPR", "actionID": "3001" }, { "argumentValue": "0.3", "name": "EMERG(PULL)", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Sensor panel", "name": "FLIR", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "439" } ], "deviceId": "62", "positions": [
{ "argumentValue": "1.0", "name": "ON", "actionID": "3001" }, { "argumentValue": "0.5", "name": "STBY", "actionID": "3001" }, { "argumentValue": "0", "name": "OFF", "actionID": "3001" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Sensor panel", "name": "LTD/R", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "441" } ], "deviceId": "62", "positions": [
{ "argumentValue": "1.0", "name": "ARM", "actionID": "3002" }, { "argumentValue": "0.0", "name": "SAFE", "actionID": "3002" } ] }, { "heliosType": "DCS.Common.Switch", "device": "Sensor panel", "name": "LST/NFLR", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "442" } ], "deviceId": "62", "positions": [
{ "argumentValue": "1.0", "name": "ON", "actionID": "3003" }, { "argumentValue": "0.0", "name": "OFF", "actionID": "3003" } ] }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "pitch", "description": "Current pitch of the aircraft.", "exports": [ { "id": "T1" } ], "valueDescription": "(-180 to 180)", "unit": "Degrees" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "vertical velocity", "description": "Current vertical velocity of the aircraft.", "exports": [ { "id": "T13" } ], "valueDescription": "", "unit": "MetersPerSecond" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "indicated airspeed", "description": "Current indicated air speed of the aircraft.", "exports": [ { "id": "T14" } ], "valueDescription": "", "unit": "MetersPerSecond" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "angle of attack", "description": "Current angle of attack for the aircraft.", "exports": [ { "id": "T16" } ], "valueDescription": "", "unit": "Degrees" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "glide deviation", "description": "ILS Glide Deviation", "exports": [ { "id": "T17" } ], "valueDescription": "-1 to 1", "unit": "Numeric" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "side deviation", "description": "ILS Side Deiviation", "exports": [ { "id": "T18" } ], "valueDescription": "-1 to 1", "unit": "Numeric" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "Mach", "description": "Current Mach number", "exports": [ { "id": "T19" } ], "valueDescription": "number in M", "unit": "Numeric" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "bank", "description": "Current bank of the aircraft.", "exports": [ { "id": "T2" } ], "valueDescription": "(-180 to 180)", "unit": "Degrees" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "G", "description": "Current G load", "exports": [ { "id": "T20" } ], "valueDescription": "number in g", "unit": "Numeric" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "yaw", "description": "Current yaw of the aircraft.", "exports": [ { "id": "T3" } ], "valueDescription": "(-180 to 180)", "unit": "Degrees" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "barometric altitude", "description": "Current barometric altitude the aircraft.", "exports": [ { "id": "T4" } ], "valueDescription": "", "unit": "Meters" }, { "heliosType": "DCS.Common.NetworkValue", "device": "Simulator Telemetry", "name": "radar altitude", "description": "Current radar altitude of the aircraft.", "exports": [ { "id": "T5" } ], "valueDescription": "", "unit": "Meters" }, { "heliosType": "DCS.FA18C.Functions.Altimeter", "device": "Standby Baro Altimeter AAU-52/A", "name": "Altitude", "description": "Barometric altitude above sea level of the aircraft.", "exports": [ { "id": "2051" }, { "id": "2059" } ], "altitudeComments": "Value is adjusted per altimeter pressure setting.", "pressureComments": "", "device2": "Standby Baro Altimeter AAU-52/A", "name2": "Pressure", "description2": "Manually set barometric altitude." }, { "heliosType": "DCS.Common.Axis", "device": "Standby Baro Altimeter AAU-52/A", "name": "Pressure Setting Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "224" } ], "loop": true, "argumentValue": 0.01, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "26", "actionId": "3001" } } }, { "heliosType": "DCS.Common.NetworkValue", "device": "System Gauges", "name": "Brake pressure", "description": "Brake pressure in psi", "exports": [ { "format": "%0.2f", "id": "242" } ], "valueDescription": "", "unit": "PoundsPerSquareInch" }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "System Gauges", "name": "Cabin Altitude", "description": "Cabin altitude pressue in feet 0 to +50000.", "exports": [ { "format": "%.4f", "id": "285" } ], "calibration": { "points": [ { "value": -0.003, "mappedValue": -300.0 }, { "value": 0.0, "mappedValue": 0.0 }, { "value": 1.0, "mappedValue": 50000.0 } ], "precision": 1 }, "unit": "Numeric" }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "System Gauges", "name": "Left Hyd pressure display", "description": "Left Hydraulic system pressure in psi", "exports": [ { "format": "%.4f", "id": "310" } ], "calibration": { "points": [ { "value": 0.0, "mappedValue": 0.0 }, { "value": 1.0, "mappedValue": 5000.0 } ], "precision": 1 }, "unit": "PoundsPerSquareInch" }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "System Gauges", "name": "Right Hyd pressure display", "description": "Right Hydraulic system pressure in psi", "exports": [ { "format": "%.4f", "id": "311" } ], "calibration": { "points": [ { "value": 0.0, "mappedValue": 0.0 }, { "value": 1.0, "mappedValue": 5000.0 } ], "precision": 1 }, "unit": "PoundsPerSquareInch" }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "System Gauges", "name": "Voltage U", "description": "Battery Voltage U", "exports": [ { "format": "%.4f", "id": "400" } ], "calibration": { "points": [ { "value": 0.0, "mappedValue": 15.0 }, { "value": 1.0, "mappedValue": 30.0 } ], "precision": 1 }, "unit": "Numeric" }, { "heliosType": "DCS.Common.ScaledNetworkValue", "device": "System Gauges", "name": "Voltage E", "description": "Battery Voltage E", "exports": [ { "format": "%.4f", "id": "401" } ], "calibration": { "points": [ { "value": 0.0, "mappedValue": 15.0 }, { "value": 1.0, "mappedValue": 30.0 } ], "precision": 1 }, "unit": "Numeric" }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Option Select Pushbutton 1", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "100" } ], "buttons": [ { "deviceId": "25", "pushId": "3010", "pushValue": "1", "releaseId": "3010", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Option Select Pushbutton 2", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "101" } ], "buttons": [ { "deviceId": "25", "pushId": "3011", "pushValue": "1", "releaseId": "3011", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Option Select Pushbutton 3", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "102" } ], "buttons": [ { "deviceId": "25", "pushId": "3012", "pushValue": "1", "releaseId": "3012", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Option Select Pushbutton 4", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "103" } ], "buttons": [ { "deviceId": "25", "pushId": "3013", "pushValue": "1", "releaseId": "3013", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Option Select Pushbutton 5", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "106" } ], "buttons": [ { "deviceId": "25", "pushId": "3014", "pushValue": "1", "releaseId": "3014", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Switch", "device": "UFC", "name": "UFC ADF Function Select Switch", "description": "Current position of this switch.", "exports": [ { "format": "%0.1f", "isExportedEveryFrame": false, "id": "107" } ], "deviceId": "25", "positions": [ { "argumentValue": "1.0", "name": "1", "actionID": "3016" }, { "argumentValue": "0.5", "name": "OFF", "actionID": "3016" }, { "argumentValue": "0.0", "name": "2", "actionID": "3016" } ] }, { "heliosType": "DCS.Common.Axis", "device": "UFC", "name": "UFC COMM 1 Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "108" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "25", "actionId": "3030" } } }, { "heliosType": "DCS.Common.Axis", "device": "UFC", "name": "UFC Brightness Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "109" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "25", "actionId": "3032" } } }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Emission Control Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "110" } ], "buttons": [ { "deviceId": "25", "pushId": "3017", "pushValue": "1", "releaseId": "3017", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 1", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "111" } ], "buttons": [ { "deviceId": "25", "pushId": "3019", "pushValue": "1", "releaseId": "3019", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 2", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "112" } ], "buttons": [ { "deviceId": "25", "pushId": "3020", "pushValue": "1", "releaseId": "3020", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 3", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "113" } ], "buttons": [ { "deviceId": "25", "pushId": "3021", "pushValue": "1", "releaseId": "3021", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 4", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "114" } ], "buttons": [ { "deviceId": "25", "pushId": "3022", "pushValue": "1", "releaseId": "3022", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 5", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "115" } ], "buttons": [ { "deviceId": "25", "pushId": "3023", "pushValue": "1", "releaseId": "3023", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 6", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "116" } ], "buttons": [ { "deviceId": "25", "pushId": "3024", "pushValue": "1", "releaseId": "3024", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 7", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "117" } ], "buttons": [ { "deviceId": "25", "pushId": "3025", "pushValue": "1", "releaseId": "3025", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 8", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "118" } ], "buttons": [ { "deviceId": "25", "pushId": "3026", "pushValue": "1", "releaseId": "3026", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 9", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "119" } ], "buttons": [ { "deviceId": "25", "pushId": "3027", "pushValue": "1", "releaseId": "3027", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton 0", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "120" } ], "buttons": [ { "deviceId": "25", "pushId": "3018", "pushValue": "1", "releaseId": "3018", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton CLR", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "121" } ], "buttons": [ { "deviceId": "25", "pushId": "3028", "pushValue": "1", "releaseId": "3028", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Keyboard Pushbutton ENT", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "122" } ], "buttons": [ { "deviceId": "25", "pushId": "3029", "pushValue": "1", "releaseId": "3029", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "UFC", "name": "UFC COMM 2 Volume Control Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "123" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "25", "actionId": "3031" } } }, { "heliosType": "DCS.Common.Axis", "device": "UFC", "name": "UFC COMM 1 Channel Selector Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "124" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "25", "actionId": "3033" } } }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC COMM 1 Channel Selector Pull", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "125" } ], "buttons": [ { "deviceId": "25", "pushId": "3008", "pushValue": "1", "releaseId": "3008", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Axis", "device": "UFC", "name": "UFC COMM 2 Channel Selector Knob", "description": "Current value of this axis.", "exports": [ { "format": "%.3f", "isExportedEveryFrame": false, "id": "126" } ], "loop": false, "argumentValue": 0.1, "argumentMin": 0.0, "argumentMax": 1.0, "actions": { "set": { "deviceId": "25", "actionId": "3034" } } }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC COMM 2 Channel Selector Pull", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "127" } ], "buttons": [ { "deviceId": "25", "pushId": "3009", "pushValue": "1", "releaseId": "3009", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Function Selector Pushbutton A/P", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "128" } ], "buttons": [ { "deviceId": "25", "pushId": "3001", "pushValue": "1", "releaseId": "3001", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Function Selector Pushbutton IFF", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "129" } ], "buttons": [ { "deviceId": "25", "pushId": "3002", "pushValue": "1", "releaseId": "3002", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Function Selector Pushbutton TCN", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "130" } ], "buttons": [ { "deviceId": "25", "pushId": "3003", "pushValue": "1", "releaseId": "3003", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Function Selector Pushbutton ILS", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "131" } ], "buttons": [ { "deviceId": "25", "pushId": "3004", "pushValue": "1", "releaseId": "3004", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Function Selector Pushbutton D/L", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "132" } ], "buttons": [ { "deviceId": "25", "pushId": "3005", "pushValue": "1", "releaseId": "3005", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Function Selector Pushbutton BCN", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "133" } ], "buttons": [ { "deviceId": "25", "pushId": "3006", "pushValue": "1", "releaseId": "3006", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC Function Selector Pushbutton ON/OFF", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "134" } ], "buttons": [ { "deviceId": "25", "pushId": "3007", "pushValue": "1", "releaseId": "3007", "releaseValue": "0" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "UFC Unsure 1", "description": "Value of the (unsure!)", "exports": [ { "isExportedEveryFrame": false, "id": "2080" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "UFC Mask", "description": "Value of the UFC Mask", "exports": [ { "isExportedEveryFrame": false, "id": "2081" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 1", "description": "Text Value of the Option Display #1", "exports": [ { "isExportedEveryFrame": false, "id": "2082" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 2", "description": "Text Value of the Option Display #2", "exports": [ { "isExportedEveryFrame": false, "id": "2083" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 3", "description": "Text Value of the Option Display #3", "exports": [ { "isExportedEveryFrame": false, "id": "2084" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 4", "description": "Text Value of the Option Display #4", "exports": [ { "isExportedEveryFrame": false, "id": "2085" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 5", "description": "Text Value of the Option Display #5", "exports": [ { "isExportedEveryFrame": false, "id": "2086" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 1 Selected", "description": "Option Display #1 Selected", "exports": [ { "isExportedEveryFrame": false, "id": "2087" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 2 Selected", "description": "Option Display #2 Selected", "exports": [ { "isExportedEveryFrame": false, "id": "2088" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 3 Selected", "description": "Option Display #3 Selected", "exports": [ { "isExportedEveryFrame": false, "id": "2089" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 4 Selected", "description": "Option Display #4 Selected", "exports": [ { "isExportedEveryFrame": false, "id": "2090" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Option Display 5 Selected", "description": "Option Display #5 Selected", "exports": [ { "isExportedEveryFrame": false, "id": "2091" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Scratchpad 1", "description": "Value of the first scratchpad display", "exports": [ { "isExportedEveryFrame": false, "id": "2092" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Scratchpad 2", "description": "Value of the second scratchpad display", "exports": [ { "isExportedEveryFrame": false, "id": "2093" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Scratchpad Number", "description": "Value of the scratchpad number display", "exports": [ { "isExportedEveryFrame": false, "id": "2094" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Comm Channel 1", "description": "Value of Communications Channel 1 display", "exports": [ { "isExportedEveryFrame": false, "id": "2095" } ] }, { "heliosType": "DCS.Common.Text", "device": "UFC", "name": "Comm Channel 2", "description": "Value of Communications Channel 2 display", "exports": [ { "isExportedEveryFrame": false, "id": "2096" } ] }, { "heliosType": "DCS.Common.PushButton", "device": "UFC", "name": "UFC I/P Pushbutton", "description": "Current state of this button.", "exports": [ { "format": "%1d", "isExportedEveryFrame": false, "id": "99" } ], "buttons": [ { "deviceId": "25", "pushId": "3015", "pushValue": "1", "releaseId": "3015", "releaseValue": "0" } ] } ] }

BlueFinBima commented 1 year ago

@davidmontpellier thanks, but in the interests of getting the release out, I've committed the entries you told me about this morning, If there are even more changes, then these will have to wait for another release. It would be useful if you could assess 1.6.5500 to see what additional changes are needed.

davidmontpellier commented 1 year ago

@BlueFinBima I understand.

I'll wait for the next release and I will submit a new issue with my changes (if any)

Best regards David

BlueFinBima commented 1 year ago

@davidmontpellier David, below is the current status. I spent way too long on the pitch adjust knob and still could not coax the output binding to behave. Input binding is fine. It'll just have to wait (unless you have the magic incantation for a control) which works.

BlueFinBima commented 1 year ago

Delivered in 1.6.5500.0