RoystonS / BetterBravoLights

Utility for controlling lights on a Honeycomb Bravo Throttle from Microsoft Flight Simulator
MIT License
45 stars 8 forks source link

Develop support for Fenix A320 #48

Open RoystonS opened 2 years ago

RoystonS commented 2 years ago

Software version

0.8.2

Problem

The Fenix A320 is a popular aircraft so it would be good to have configuration for it.

Suggested solution

No response

What alternatives are there?

No response

Other information

No response

RoystonS commented 2 years ago

Some lvar details are available here: https://hubhop.mobiflight.com/presets/

First problem is that we need to know the aircraft id...

RoystonS commented 2 years ago

I'll start to collect some config ideas here. These are totally untested as I don't have this aircraft.

[Aircraft.WhatsTheAircraftCode]

EngineFire = (L:I_ENG_FIRE_1 > 0) OR (L:I_ENG_FIRE_2 > 0) OR (L:I_OH_FIRE_APU_AGENT_U > 0) OR (L:I_OH_FIRE_APU_AGENT_L > 0)
APU = L:I_OH_ELEC_APU_MASTER_U > 0
Sehadi commented 2 years ago

Hey this is sehadi. tried autopilot thing yesterday for fenix but same question confuses me to what is the air craft id I tried with aircraft.fenix_320 but did not work and also I wasn't sure if that code was correct let me know where to find AF ID in fnx directory so I can let you know and I ll send you that file as well I checked aircraft.cfg but don't think its there?

RoystonS commented 2 years ago

Hi @Sehadi,

We need to get the exact Aircraft id that MSFS is using. If you right-click the Better Bravo Lights light bulb icon in the system tray and select 'Debugger', it'll bring up the 'Lights Monitor' window, and the id of the current aircraft will be shown in the top right:

image
alexcrawford commented 2 years ago

Here's my config progress so far. Gear lights, AP master and APR are working based on the status of the annunciator lights in the cockpit:

[Aircraft.fnx320]
MasterEnable = (L:S_OH_ELEC_BAT1 == 1) OR (L:S_OH_ELEC_BAT2 == 1)
GearLGreen = L:I_MIP_GEAR_1_L == 1
GearLRed = L:I_MIP_GEAR_1_U == 1
GearCGreen = L:I_MIP_GEAR_2_L == 1
GearCRed = L:I_MIP_GEAR_2_U == 1
GearRGreen = L:I_MIP_GEAR_3_L == 1
GearRRed = L:I_MIP_GEAR_3_U == 1
AUTOPILOT = L:I_FCU_AP1 == 1 OR L:I_FCU_AP2 == 1
APR = L:I_FCU_APPR == 1

I should be able to get the other lights done today or tomorrow.

RoystonS commented 2 years ago

Nice one, @alexcrawford !

Will that configuration ever produce amber gear lights? If not, that's fine. I'm just slightly nervous about shipping standard configs that produce amber: https://github.com/RoystonS/BetterBravoLights/wiki/Amber

alexcrawford commented 2 years ago

Potentially, there is a split second where both annunciator lights are lit.

I've tweaked the config to prevent both red and green from being lit simultaneously:

MasterEnable = (L:S_OH_ELEC_BAT1 == 1) OR (L:S_OH_ELEC_BAT2 == 1)
GearLGreen = L:I_MIP_GEAR_1_L == 1 AND L:I_MIP_GEAR_1_U == 0
GearLRed = L:I_MIP_GEAR_1_U == 1
GearCGreen = L:I_MIP_GEAR_2_L == 1 AND L:I_MIP_GEAR_2_U == 0
GearCRed = L:I_MIP_GEAR_2_U == 1
GearRGreen = L:I_MIP_GEAR_3_L == 1 AND L:I_MIP_GEAR_3_U == 0
GearRRed = L:I_MIP_GEAR_3_U == 1
AUTOPILOT = L:I_FCU_AP1 == 1 OR L:I_FCU_AP2 == 1
APR = L:I_FCU_APPR == 1

I've also done a few of the warning lights:

MasterCaution = L:I_MIP_MASTER_CAUTION_CAPT == 1
MasterWarning = L:I_MIP_MASTER_WARNING_CAPT == 1
APU = L:I_OH_ELEC_APU_MASTER_L == 1 AND L:I_OH_ELEC_APU_START_U == 1
EngineFire = L:I_OH_FIRE_ENG1_BUTTON == 1 OR L:I_OH_FIRE_ENG2_BUTTON == 1 OR L:I_OH_FIRE_APU_BUTTON == 1
AntiIce = L:I_OH_PNEUMATIC_ENG1_ANTI_ICE_L == 1 OR L:I_OH_PNEUMATIC_ENG2_ANTI_ICE_L == 1 OR L:I_OH_PNEUMATIC_WING_ANTI_ICE_L == 1
StarterEngaged = L:S_ENG_MODE == 0 OR L:S_ENG_MODE == 2
;LowVolts is lit when the aircraft is running solely on battery power - is this reasonable?
LowVolts = L:I_OH_ELEC_GEN1_U == 1 AND L:I_OH_ELEC_GEN2_U == 1 AND L:I_OH_ELEC_EXT_PWR_L == 0 AND L:I_OH_ELEC_APU_START_U == 0

Getting the status of the FCU for lighting the HDG, NAV, ALT, VS and IAS buttons may not be possible as there is no annunciator light for these. The cockpit indicators are part of a display and I can't identity any relevant LVARs.

I'm also unsure how to handle the various low pressure and aux fuel pump and warning lights. Door warning may also be problematic. I'll spend some more time looking into this tomorrow.

Sehadi commented 2 years ago

Hello everyone Thank you for trying to solve this issue . I have tried your config with my HC Bravo . when I load the aircraft all FCU lights(alt,hdg,nav,vs rev, apr,ias) are illuminated and does not matter what panel state I load the airbus however the other lights are working fine such as gear, door , apu and low volts, master caution. Autopilot light extinguished when engage during flying but other fcu light doesn’t work at all except they lit all the time . they all are mapped with the aircraft and functionality is fine. I have uploaded config file so you can have a look if there is any mistake I have done during copy. As far as low volts I will try to check with the one the real pilots whether this needs to be lit when plane is on battery mode only. Thank you very much once again Sehadi

Sent from Mailhttps://go.microsoft.com/fwlink/?LinkId=550986 for Windows

From: Alex @.> Sent: 29 May 2022 00:07 To: @.> Cc: @.>; @.> Subject: Re: [RoystonS/BetterBravoLights] Develop support for Fenix A320 (Issue #48)

Potentially, there is a split second where both annunciator lights are lit.

I've tweaked the config to prevent both red and green from being lit simultaneously:

MasterEnable = (L:S_OH_ELEC_BAT1 == 1) OR (L:S_OH_ELEC_BAT2 == 1)

GearLGreen = L:I_MIP_GEAR_1_L == 1 AND L:I_MIP_GEAR_1_U == 0

GearLRed = L:I_MIP_GEAR_1_U == 1

GearCGreen = L:I_MIP_GEAR_2_L == 1 AND L:I_MIP_GEAR_2_U == 0

GearCRed = L:I_MIP_GEAR_2_U == 1

GearRGreen = L:I_MIP_GEAR_3_L == 1 AND L:I_MIP_GEAR_3_U == 0

GearRRed = L:I_MIP_GEAR_3_U == 1

AUTOPILOT = L:I_FCU_AP1 == 1 OR L:I_FCU_AP2 == 1

APR = L:I_FCU_APPR == 1

I've also done a few of the warning lights:

MasterCaution = L:I_MIP_MASTER_CAUTION_CAPT == 1

MasterWarning = L:I_MIP_MASTER_WARNING_CAPT == 1

APU = L:S_OH_ELEC_APU_MASTER == 1 AND L:I_OH_ELEC_APU_START_U == 1

EngineFire = L:I_OH_FIRE_ENG1_BUTTON == 1 OR L:I_OH_FIRE_ENG2_BUTTON == 1 OR L:I_OH_FIRE_APU_BUTTON == 1

AntiIce = L:I_OH_PNEUMATIC_ENG1_ANTI_ICE_L == 1 OR L:I_OH_PNEUMATIC_ENG2_ANTI_ICE_L == 1 OR L:I_OH_PNEUMATIC_WING_ANTI_ICE_L == 1

StarterEngaged = L:S_ENG_MODE == 0 OR L:S_ENG_MODE == 2

;LowVolts is lit when the aircraft is running solely on battery power - is this reasonable?

LowVolts = L:I_OH_ELEC_GEN1_U == 1 AND L:I_OH_ELEC_GEN2_U == 1 AND L:I_OH_ELEC_EXT_PWR_L == 0 AND L:I_OH_ELEC_APU_START_U == 0

Getting the status of the FCU for lighting the HDG, NAV, ALT, VS and IAS buttons may not be possible as there is no annunciator light for these. The cockpit indicators are part of a display and I can't identity any relevant LVARs.

I'm also unsure how to handle the various low pressure and aux fuel pump and warning lights. Door warning may also be problematic. I'll spend some more time looking into this tomorrow.

— Reply to this email directly, view it on GitHubhttps://github.com/RoystonS/BetterBravoLights/issues/48#issuecomment-1140341317, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AZLGUOOPDFK6KN4MIFJEF5LVMKRJ3ANCNFSM5XALVTAA. You are receiving this because you were mentioned.Message ID: @.***>

RoystonS commented 2 years ago

Potentially, there is a split second where both annunciator lights are lit. I've tweaked the config to prevent both red and green from being lit simultaneously:

Ok, if it's just for a split second that's fine; nothing's going to get destroyed in that time and it's not worth making a more complicated expression to avoid a tiny transient overlap. I've just contacted Honeycomb to ask them what the support status is of 'amber', to see if I can get an official statement from them that it's ok to drive the hardware in that way. I'm not really expecting a reply: I contacted them in the past to ask them about the original Bravo software and the USB protocol, but didn't get a reply, which is why I wrote BetterBravoLights in the first place. :)

alexcrawford commented 2 years ago

@Sehadi have you got any other custom config that could be interfering? I can only say I don't have the same issue.

It's strange that anything other than APR would be illuminated as I didn't include the conditions for any of the others.

Sehadi commented 2 years ago

@alexcrawford I don't have any custom config. I am using only this aircraft at the moment I have emailed config file did you check ? anyway below you can see my config file and let me know what you think

###############################################

Better Bravo Lights user configuration file

###############################################

Place your own personal configuration entries in this file

and they will override or add to the built in configuration.

The file Program\Config.BuiltIn.ini for many examples of what you can

do. Full configuration documentation is available at

https://roystons.github.io/BetterBravoLights/configuration.html

[Default] AUTOPILOT = A:AUTOPILOT MASTER, percent over 100 == 1

Uncomment the line below to invert the display logic for the top row of auto-pilot lights Invert = HDG, NAV, APR, REV, ALT, VS, IAS, AUTOPILOT

;EngineFire = (L:I_ENG_FIRE_1 > 0) OR (L:I_ENG_FIRE_2 > 0) OR (L:I_OH_FIRE_APU_AGENT_U > 0) OR (L:I_OH_FIRE_APU_AGENT_L > 0) ;APU = L:I_OH_ELEC_APU_MASTER_U > 0

[Aircraft.fnx320] MasterEnable = (L:S_OH_ELEC_BAT1 == 1) OR (L:S_OH_ELEC_BAT2 == 1) GearLGreen = L:I_MIP_GEAR_1_L == 1 AND L:I_MIP_GEAR_1_U == 0 GearLRed = L:I_MIP_GEAR_1_U == 1 GearCGreen = L:I_MIP_GEAR_2_L == 1 AND L:I_MIP_GEAR_2_U == 0 GearCRed = L:I_MIP_GEAR_2_U == 1 GearRGreen = L:I_MIP_GEAR_3_L == 1 AND L:I_MIP_GEAR_3_U == 0 GearRRed = L:I_MIP_GEAR_3_U == 1 AUTOPILOT = L:I_FCU_AP1 == 1 OR L:I_FCU_AP2 == 1 APR = L:I_FCU_APPR == 1 MasterCaution = L:I_MIP_MASTER_CAUTION_CAPT == 1 MasterWarning = L:I_MIP_MASTER_WARNING_CAPT == 1 APU = L:S_OH_ELEC_APU_MASTER == 1 AND L:I_OH_ELEC_APU_START_U == 1 EngineFire = L:I_OH_FIRE_ENG1_BUTTON == 1 OR L:I_OH_FIRE_ENG2_BUTTON == 1 OR L:I_OH_FIRE_APU_BUTTON == 1 AntiIce = L:I_OH_PNEUMATIC_ENG1_ANTI_ICE_L == 1 OR L:I_OH_PNEUMATIC_ENG2_ANTI_ICE_L == 1 OR L:I_OH_PNEUMATIC_WING_ANTI_ICE_L == 1 StarterEngaged = L:S_ENG_MODE == 0 OR L:S_ENG_MODE == 2 ;LowVolts is lit when the aircraft is running solely on battery power - is this reasonable? LowVolts = L:I_OH_ELEC_GEN1_U == 1 AND L:I_OH_ELEC_GEN2_U == 1 AND L:I_OH_ELEC_EXT_PWR_L == 0 AND L:I_OH_ELEC_APU_START_U == 0

Sehadi commented 2 years ago

@alexcrawford When opened debbuger and clicked different fcu names then i found the vars .you can see if these are of any interest? Alt hdg NAV ?

Sehadi commented 2 years ago

@alexcrawford Just an update that I have changed the config file and now every thing is working as it should. SEE IF YOU CAN DO SOMETHING WITH THE FCU LIGHTS! THANK YOU

alexcrawford commented 2 years ago

@RoystonS

I've done some further work on the warning lights, see below my current config. With some of the lights like "LOW HYD PRESSURE", there's no way to pull out the pressures from the sim that I can find so I'm just going by whether or not pumps have been switched off or are showing a fault. Take a look at my comments below - see if you think they are reasonable.

AUX FUEL PUMP, LOW OIL PRESSURE and DOOR are INOP, along with all of the FCU lights (apart from APR) unfortunately.

[Aircraft.fnx320]
MasterEnable = (L:S_OH_ELEC_BAT1 == 1) OR (L:S_OH_ELEC_BAT2 == 1)
GearLGreen = L:I_MIP_GEAR_1_L == 1
GearLRed = L:I_MIP_GEAR_1_U == 1 AND L:I_MIP_GEAR_1_L == 0
GearCGreen = L:I_MIP_GEAR_2_L == 1
GearCRed = L:I_MIP_GEAR_2_U == 1  AND L:I_MIP_GEAR_2_L == 0
GearRGreen = L:I_MIP_GEAR_3_L == 1
GearRRed = L:I_MIP_GEAR_3_U == 1 AND L:I_MIP_GEAR_3_L == 0
AUTOPILOT = L:I_FCU_AP1 == 1 OR L:I_FCU_AP2 == 1
APR = L:I_FCU_APPR == 1
MasterCaution = L:I_MIP_MASTER_CAUTION_CAPT == 1
MasterWarning = L:I_MIP_MASTER_WARNING_CAPT == 1
StarterEngaged = L:S_ENG_MODE == 0 OR L:S_ENG_MODE == 2
EngineFire = L:I_OH_FIRE_ENG1_BUTTON == 1 OR L:I_OH_FIRE_ENG2_BUTTON == 1 OR L:I_OH_FIRE_APU_BUTTON == 1
AntiIce = L:I_OH_PNEUMATIC_ENG1_ANTI_ICE_L == 1 OR L:I_OH_PNEUMATIC_ENG2_ANTI_ICE_L == 1 OR L:I_OH_PNEUMATIC_WING_ANTI_ICE_L == 1

# AVAIL is illuminated
APU = L:I_OH_ELEC_APU_START_U == 1

# Aircraft is running on battery power
LowVolts = L:I_OH_ELEC_GEN1_U == 1 AND L:I_OH_ELEC_GEN2_U == 1 AND L:I_OH_ELEC_EXT_PWR_L == 0 AND L:I_OH_ELEC_APU_START_U == 0

# ANY of the fuel pumps are OFF or FAULT
LowFuelPressure = L:I_OH_FUEL_CENTER_1_L == 1 OR L:I_OH_FUEL_CENTER_1_U == 1 OR L:I_OH_FUEL_CENTER_2_L == 1 OR L:I_OH_FUEL_CENTER_2_U == 1 OR L:I_OH_FUEL_LEFT_1_L == 1 OR L:I_OH_FUEL_LEFT_1_U == 1 OR L:I_OH_FUEL_LEFT_2_L == 1 OR L:I_OH_FUEL_LEFT_2_U == 1 OR L:I_OH_FUEL_RIGHT_1_L == 1 OR L:I_OH_FUEL_RIGHT_1_U == 1 OR L:I_OH_FUEL_RIGHT_2_L == 1 OR L:I_OH_FUEL_RIGHT_2_U == 1

# Either of the engine hydraulic pumps are OFF or FAULT
LowHydPressure = L:I_OH_HYD_ENG_1_PUMP_L == 1 OR L:I_OH_HYD_ENG_1_PUMP_U == 1 OR L:I_OH_HYD_ENG_2_PUMP_L == 1 OR L:I_OH_HYD_ENG_2_PUMP_U == 1

# Pack 1 or 2 OFF or FAULT
Vacuum = L:I_OH_PNEUMATIC_PACK_1_L == 1 OR L:I_OH_PNEUMATIC_PACK_1_U == 1 OR L:I_OH_PNEUMATIC_PACK_2_L == 1 OR L:I_OH_PNEUMATIC_PACK_2_U == 1
RoystonS commented 2 years ago

Fabulous, @alexcrawford. I don't have the Fenix so I can't really comment very much. Thank you for the quick and thorough work!

Yes, I had the same issues with oil pressure with the PMDG 737: they've not exposed the oil pressure through any variables there; neither the standard MS A: vars nor any new lvars, and because it's an annunciation that appears on the screen rather than in a cabin control they haven't mapped a variable for the warning light either. Sounds like the Fenix is similar.

If you're happy that this list is sufficiently complete for now, I'll get them in (with credits to you) and get a release out. More config can always be added later; it's good to get something in to get feedback.

Btw, do you have any feedback on anything that would make developing these expressions easier? Did you use the variables list and/or the Lights Monitor views much? Any issues/difficulties with them?

alexcrawford commented 2 years ago

I've done a couple of test flights with this config now and I'd say it's working well - shame about the FCU annunciator lights but hopefully someone else will crack it or Fenix will give us something to work with.

The debug tool was excellent - I loved that it automatically updated when I saved the config and it was really easy to see what the software was doing with the variables.

One thing that would make the config file easier to read would be the ability to write expressions over multiple lines. I appreciate you would probably have to move away from .ini format to support that though.

LowFuelPressure = 
    L:I_OH_FUEL_CENTER_1_L == 1 
    OR L:I_OH_FUEL_CENTER_1_U == 1 
    OR L:I_OH_FUEL_CENTER_2_L == 1 
    OR L:I_OH_FUEL_CENTER_2_U == 1 
    OR L:I_OH_FUEL_LEFT_1_L == 1
    OR L:I_OH_FUEL_LEFT_1_U == 1 
    OR L:I_OH_FUEL_LEFT_2_L == 1 
    OR L:I_OH_FUEL_LEFT_2_U == 1 
    OR L:I_OH_FUEL_RIGHT_1_L == 1 
    OR L:I_OH_FUEL_RIGHT_1_U == 1 
    OR L:I_OH_FUEL_RIGHT_2_L == 1 
    OR L:I_OH_FUEL_RIGHT_2_U == 1
RoystonS commented 2 years ago

Good stuff. Yes, very good point: some of those lines are definitely getting a bit long, and nobody likes scrolling horizontally...

Yes, I'm quite keen to keep the .ini format. YAML, JSON and XML are all a bit complex for non-technical users to edit. What I could do is add in some 'standard' line continuation characters?

e.g.

LowFuelPressure = L:I_OH_FUEL_CENTER_1_L == 1  \
    OR L:I_OH_FUEL_CENTER_1_U == 1 \
    OR L:I_OH_FUEL_CENTER_2_L == 1 \
    OR L:I_OH_FUEL_CENTER_2_U == 1 \
    ... \
    OR L:I_OH_FUEL_RIGHT_2_U == 1

That feels like it wouldn't be breaking .ini syntax too badly... Worthwhile, or too fiddly?

RoystonS commented 2 years ago

That line continuation works well. I've just implemented it, and in fact, Visual Studio seems to understand it immediately: it automatically offers to fold the lines, so it seems a reasonable solution...

image
ptimale commented 2 years ago

hello

translated by Google

my little contribution for the Fenix A320

HDG = L:I_FCU_HEADING_MANAGED == 1 NAV = L:I_MIP_GPWS_TERRAIN_ON_ND_CAPT_L ==1 APR = L:I_FCU_APPR == 1 REV = ALT = L:I_FCU_ALTITUDE_MANAGED == 1 VS = L:S_FCU_VERTICAL_SPEED == 2 IAS = L:I_FCU_SPEED_MANAGED == 1

I'm not sure about the VS button

Warper4 commented 2 years ago

My little contribution for lighting with the doors:

Door = L:A320_door_0 > 0 OR L:A320_door_1 > 0 OR L:A320_door_2 > 0 OR L:A320_door_3 > 0 OR L:A320_door_4 > 0 OR L:A320_door_5 > 0

AAL311 commented 2 years ago

Who has a complete config file entry that they have been using that can be copied and used, possibly built off of? What I see above seem to be bits and piece, but I may be wrong. I have only been looking at this for a couple of days.

RoystonS commented 2 years ago

I'm hoping to get a full release out with everything combined over the next week or so.

Sehadi commented 1 year ago

HI All, Hop you are doing well. I have done some work on Inibuilds A310. Please find the text file attached with this email. Things I have not done Gear levers. Lights are working by default in my case so I did not do any thing AUTPILOT NO LIGHTS FOR VS, ALT, AND IAS (IF SOMEBODY CAN TRY SORT OUT THIS ISSUE AS I DID NOT FIND ANY VARS FOR THESE BUTTONS) NEEDED WORK ON LOW FUEL PRESSUE.

.HOPE YOU WILL FIND THIS LITTLE CONTRIBUTION USEFUL AND PLEASE LET ME KNOW IF ANY UPDATE FROM YOUR SIDE

THANK YOU Sehadi

Sent from Mailhttps://go.microsoft.com/fwlink/?LinkId=550986 for Windows

From: Royston @.> Sent: 14 November 2022 11:53 To: @.> Cc: @.>; @.> Subject: Re: [RoystonS/BetterBravoLights] Develop support for Fenix A320 (Issue #48)

I'm hoping to get a full release out with everything combined over the next week or so.

— Reply to this email directly, view it on GitHubhttps://github.com/RoystonS/BetterBravoLights/issues/48#issuecomment-1313562977, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AZLGUOKQSELHPHTPUPTAYHLWIIR35ANCNFSM5XALVTAA. You are receiving this because you were mentioned.Message ID: @.***>

[Aircraft.microsoft_a310_300]

;AUTOPILOT

AUTOPILOT = L:A310_ap1_on == 1 OR L:A310_ap2_on == 1 NAV = L:A310_MCU_NAV_LIGHT == 1 APR = L:A310_MCU_LAND_LIGHT == 1 IAS = L:A310_FCU_SELECTED_SPEED_BUTTON == 1 HDG = L:A310_MCU_HDG_SEL_LIGHT == 1 VS = L:A310_vvi_dial > 0

APU STARTER LIGHT

APU = L:A310_apu_master_switch == 1

;WARNING_LIGHTS

MasterWarning = L:A310_MASTER_WARNING_ACTIVE == 1 MasterCaution = L:A310_MASTER_CAUTION_ACTIVE == 1 StarterEngaged = L:A310_eng_ignition_switch == 1 LowHydPressure = L:A310_SPEEDBRAKE7_FAULT == 1 OR L:A310_SPEEDBRAKE6_FAULT == 1 OR L:A310_SPEEDBRAKE5_FAULT == 1 OR L:A310_SPEEDBRAKE4_1_FAULT == 1 OR L:A310_SPEEDBRAKE3_2_FAULT == 1 OR L:A310_SPEEDBRAKE7 == 0 OR L:A310_SPEEDBRAKE6 == 0 OR L:A310_SPEEDBRAKE5 == 0 OR L:A310_SPEEDBRAKE4_1 == 0 OR L:A310_SPEEDBRAKE3_2 == 0 OR L:A310_PITCH_FEEL1_FAULT == 1 OR L:A310_PITCH_FEEL2_FAULT == 1 OR L:A310_PITCH_FEEL1 == 0 OR L:A310_PITCH_FEEL2 == 0 OR L:A310_RUDDER_TRAVEL1_FAULT == 1 OR L:A310_RUDDER_TRAVEL2_FAULT == 1 OR L:A310_RUDDER_TRAVEL1 == 0 OR L:A310_RUDDER_TRAVEL2 == 0 OR L:A310_hyd_servo_blue_low_pressure == 1 OR L:A310_hyd_servo_green_low_pressure == 1 OR L:A310_hyd_servo_yellow_low_pressure == 1 OR L:A310_hyd_eng1_A_switch_pos == 0 OR L:A310_hyd_eng2_B_switch_pos == 0 OR L:A310_hyd_eng2_switch_pos == 0 OR L:A310_hyd_blue_light == 1 OR L:A310_hyd_green1_light == 1 OR L:A310_hyd_green2_light == 1 OR L:A310_hyd_yellow_light == 1 LowFuelPressure = L:A310_OUTER_TANK1_RIGHT == 0 OR L:A310_OUTER_TANK2_RIGHT == 0 OR L:A310_OUTER_TANK1_LEFT == 0 OR L:A310_OUTER_TANK2_LEFT == 0 OR L:A310_INNER_TANK1_RIGHT == 0 OR L:A310_INNER_TANK2_RIGHT == 0 OR L:A310_INNER_TANK1_LEFT == 0 OR L:A310_INNER_TANK2_LEFT == 0 OR L:A310_CENTER_TANK1 == 0 OR L:A310_CENTER_TANK2 == 0 OR L:A310_TRIM_TANK1 == 0 OR L:A310_TRIM_TANK2 == 0

LowOilPressure = ??

EngineFire = L:A310_ENGINE1_LOOP_TEST_SWITCH == 1 OR L:A310_APU_LOOP_TEST_SWITCH == 1 OR L:A310_ENGINE2_LOOP_TEST_SWITCH == 1

Pack 1 or 2 OFF or FAULT

Vacuum = L:A300_PACK1_BUTTON == 0 OR L:A300_PACK2_BUTTON == 0 AntiIce = L:A310_ENG1_ANTI_ICE == 1 OR L:A310_ENG2_ANTI_ICE == 1 OR L:A310_WING_ANTI_ICE == 1

Leon30217 commented 1 year ago

Hey here is Marco. I need your help. How I get the amened config to a running system? In config.ini, i copy this ………. [Aircraft.fnx320] MasterEnable = (L:S_OH_ELEC_BAT1 == 1) OR (L:S_OH_ELEC_BAT2 == 1) GearLGreen = L:I_MIP_GEAR_1_L == 1 GearLRed = L:I_MIP_GEAR_1_U == 1 GearCGreen = L:I_MIP_GEAR_2_L == 1 GearCRed = L:I_MIP_GEAR_2_U == 1 GearRGreen = L:I_MIP_GEAR_3_L == 1 GearRRed = L:I_MIP_GEAR_3_U == 1 AUTOPILOT = L:I_FCU_AP1 == 1 OR L:I_FCU_AP2 == 1 APR = L:I_FCU_APPR == 1

…..and delete the existing contents. Saved config.ini, in configfnx320.ini and then?

Probably, is this my mistake, but where? Could you help ne? Thanks

chrisnoy commented 1 year ago

Hey there, any news on getting a release for the Fenix? Thanks