Hi,
I've recently purchased a stream controller (Soomfon) and it's working beautifully with the Fenix L:Var/Lua file in FSUIPC - I assign a keyboard key and it binds to that function - then use the box to call on that key combo and absolutely everything works perfectly (overhead panel buttons, FCU, Lights, etc) but the APU start button does not seem to work after following normal procedures - APU Master SW - APU start - APU bleed. The master switch works and so does the bleed - but not the APU start - any ideas why?
My Lua file is the following:
-- Toggle APU Start Button
local val = ipc.readLvar("S_OH_ELEC_APU_START")
if val == 0 then
ipc.writeLvar("S_OH_ELEC_APU_START", 1)
else
ipc.writeLvar("S_OH_ELEC_APU_START", 0)
end