Jump to content

Carliolian

Members
  • Content Count

    21
  • Donations

    $0.00 
  • Joined

  • Last visited

Community Reputation

1 Neutral

Profile Information

  • Gender
    Male
  • Location
    EHRD

Flight Sim Profile

  • Commercial Member
    No
  • Online Flight Organization Membership
    IVAO
  • Virtual Airlines
    Yes

Recent Profile Visitors

933 profile views
  1. Andrew Got the ground connections working. Use Lvar "7X7X_Ground_Power_Light_NotInUse" not "7X7X_Ground_Power_Light_Connected" -- $$ Grund Power Unit function PMDG_CDU2_GroundPower_on () PMDG_CDU2_GroundConn () ipc.sleep(10) NGXchocks = ipc.readLvar("NGXWheelChocks") NGXGPU = ipc.readLvar("7X7X_Ground_Power_Light_NotInUse") ipc.sleep(100) if NGXchocks == 0 and NGXGPU == 0 then DspShow ("not", "able") ipc.sleep(1000) DspShow ("set", "chks") elseif NGXchocks == 1 and NGXGPU == 0 then PMDG_PED_CDU2_LSK_2L () else DspShow ("GPU", "on") end end function PMDG_CDU2_GroundPower_off () PMDG_CDU2_GroundConn () ipc.sleep(10) NGXchocks = ipc.readLvar("NGXWheelChocks") NGXGPU = ipc.readLvar("7X7X_Ground_Power_Light_NotInUse") ipc.sleep(100) if NGXchocks == 0 and NGXGPU == 0 then DspShow ("not", "able") ipc.sleep(1000) DspShow ("set", "chks") elseif NGXchocks == 1 and NGXGPU == 1 then PMDG_PED_CDU2_LSK_2L () else DspShow ("GPU", "off") end end function PMDG_CDU2_GroundPower_toggle () if _tl("7X7X_Ground_Power_Light_NotInUse", 0) then PMDG_CDU2_GroundPower_on () else PMDG_CDU2_GroundPower_off () end end Frank
  2. Andrew this: function PMDG_CDU1_GroundPower_toggle () if _tl("7X7X_Ground_Power_Light_Connected", 0) then PMDG_GroundPower_on () <<<<---------------- should be PMDG_CDU1_GroundPower_on else PMDG_GroundPower_off () <<<<---------------- should be PMDG_CDU1_GroundPower_off end end But it still does not woek for me Frank
  3. Hi Andrew I think that I have the same problem I don’t see the installed aircraft any more. All my current aircraft work ok. I have MSFS installed on my F: drive. When MSFS installed it asks you twice where to install. There is a thin file/directory select at the bottom. The first part is the flight sim location +/- 10 GB. The second is the location for all the scenery and content. Most people don’t see it. Once I missed it myself, had to download 60+ GB twice. During Beta testing I saw this link “how to move MSFS” https://forums.flightsimulator.com/t/how-to-change-the-installation-path-of-installed-packages-inc-community-folder/471682 Having you sim on a custom location has many advantages. Frank
  4. Good news, the P3D actions for the DC 6 also work in MSFS. I haven't tested everything, just the ones I need so far.
  5. If after SU 5 "Linda ready" etc messages are not showing. There is a new option in "Assistance settings" - "Software tips" needs to be on.
  6. A32NX_OVHD_ELEC_BAT_2_PB_IS_AUTO is for the FBW A320 neo It can be watched in Developermode -> Windows -> model behavour debug -> LoCAL VARIABLES. If you are not using FBW A320 then it will not be there. SO the "if" statements will return a nil. Frank
  7. Hi ???? I think you probably don't have the WASM installed. Download and install the latest FSUIPC Version 7.2 from https://forum.simflight.com/topic/92507-fsuipc7-v720-beta-release-new-facility-to-add-lvars-to-offsets-for-both-read-and-writeupdate/ Frank
  8. Hi Joe I have been working on some functions. I had some problems and I think I found the answer. ipc.readLvar was not working sometimes when "L:" was included the with variable. I have changed the Battery functions A32NX_OVHD_ELEC_BAT_1_PB_IS_AUTO not A32NX_OVHD_ELEC_BAT_10_PB_IS_AUTO and they now work. Also I have added APU start/stop using Lvars. I am working on increase /decrease display brightness but not having much luck. Uses control 67227 with parameters 84 .. 94 can be seen the the console, each parameter is a different display but there is no way to apply a direction? Frank. function A32nx_Bat1_SET(bat1Status) ipc.writeLvar("A32NX_OVHD_ELEC_BAT_1_PB_IS_AUTO", bat1Status) end function A32nx_Bat1_ON() DspShow ("Bat1", "On") bat1Status = 1 A32nx_Bat1_SET(bat1Status) end function A32nx_Bat1_OFF() DspShow ("Bat1", "Off") bat1Status = 0 A32nx_Bat1_SET(bat1Status) end function A32nx_Bat1_TOGGLE() bat1Status = ipc.readLvar("A32NX_OVHD_ELEC_BAT_1_PB_IS_AUTO") if bat1Status >= 1 then bat1Status = 0 else bat1Status = 1 end A32nx_Bat1_SET(bat1Status) end function A32nx_Bat2_SET(bat2Status) ipc.writeLvar("L:A32NX_OVHD_ELEC_BAT_2_PB_IS_AUTO", bat2Status) end function A32nx_Bat2_ON() bat2Status = 1 A32nx_Bat2_SET(bat2Status) end function A32nx_Bat2_OFF() bat2Status = 0 A32nx_Bat2_SET(bat2Status) end function A32nx_Bat2_TOGGLE() bat2Status = ipc.readLvar("A32NX_OVHD_ELEC_BAT_2_PB_IS_AUTO") if bat2Status >= 1 then bat2Status = 0 else bat2Status = 1 end A32nx_Bat2_SET(bat2Status) end function A32nx_OHD_BTN_APU_ON() ipc.writeLvar("A32NX_OVHD_APU_MASTER_SW_PB_IS_ON", 1) end function A32nx_OHD_BTN_APU_OFF() ipc.writeLvar("A32NX_OVHD_APU_MASTER_SW_PB_IS_ON", 0) end function A32nx_OHD_BTN_APU_START() ipc.writeLvar("A32NX_OVHD_APU_START_PB_IS_ON", 1) end function A32nx_OHD_BTN_ENG1_ANTI_ICE_ON() ipc.writeLvar("XMLVAR_Momentary_PUSH_OVHD_ANTIICE_ENG1_Pressed", 1) end function A32nx_OHD_BTN_ENG1_ANTI_ICE_OFF() ipc.writeLvar("XMLVAR_Momentary_PUSH_OVHD_ANTIICE_ENG1_Pressed", 0) end function A32nx_OHD_BTN_ENG2_ANTI_ICE_ON() ipc.writeLvar("XMLVAR_Momentary_PUSH_OVHD_ANTIICE_ENG2_Pressed", 1) end function A32nx_OHD_BTN_ENG2_ANTI_ICE_OFF() ipc.writeLvar("XMLVAR_Momentary_PUSH_OVHD_ANTIICE_ENG2_Pressed", 0) end function A32nx_OHD_BTN_WING_ANTI_ICE_ON() ipc.writeLvar("XMLVAR_Momentary_PUSH_OVHD_ANTIICE_WING_Pressed", 1) end function A32nx_OHD_BTN_WING_ANTI_ICE_OFF() ipc.writeLvar("XMLVAR_Momentary_PUSH_OVHD_ANTIICE_WING_Pressed", 0) end function A32nx_OHD_ALL_ANTI_ICE_OFF() A32nx_OHD_BTN_ENG1_ANTI_ICE_OFF() ipc.sleep(10) A32nx_OHD_BTN_ENG2_ANTI_ICE_OFF() ipc.sleep(100) A32nx_OHD_BTN_WING_ANTI_ICE_OFF() end function A32nx_OHD_ALL_ANTI_ICE_ON() A32nx_OHD_BTN_ENG1_ANTI_ICE_ON() ipc.sleep(100) A32nx_OHD_BTN_ENG2_ANTI_ICE_ON() ipc.sleep(100) A32nx_OHD_BTN_WING_ANTI_ICE_ON() end function DCDU_L_Brightness10 () ipc.writeLvar("A32NX_PANEL_DCDU_L_BRIGHTNESS", 10) end function DCDU_L_Brightness5 () ipc.writeLvar("A32NX_PANEL_DCDU_L_BRIGHTNESS", 0.5) end function MCDU_L_Brightness1 () -- default= 0.4 to 1 ipc.writeLvar("A32NX_MCDU_L_BRIGHTNESS", 1) end function MCDU_L_Brightness5 () ipc.writeLvar("A32NX_MCDU_L_BRIGHTNESS", 0.4) end
  9. Yes I have got the latest versions. I have been following this for some time, waiting for a breakthrough. At the moment I think it might be something to do with access rights . I will do more testing today. I see all the hvars in "list lvars".
  10. Dear Joe I have been trying to get Lvar/Hvar working this last week. Thanks for your work so far, if I get any more working I will let you know. BUT I still do not have the H:vars working. I just read this in the FSUIPC forum. https://forum.simflight.com/topic/92032-fsuipc-wasm-module-client-side-api-lvarhvar-discussion-topic/?do=findComment&comment=560594 you need to have the Hvars listed in the community \FSUIPC WASM folder. Can I have a copy of yours please. I am working on it this afternoon. Frank
  11. Good Morning Scott Thanks for all your good work over the last few years and especially now with MSFS. Today I got the new FSUIPC7 and was hoping that we will soon be able to create profiles in Linda for MSFS. The default settings are good, so far, but I think that profiles for different aircraft should be the highest priority at the moment. look forward to your reply Frank
  12. Thanks Andrew I will investigate further. FS Labs A320 update released 50 minutes ago😊 Frank Darbyshire
  13. Hi everyone Nothing about P3D V4.4 so far so I will start. So far I have not had any problems everything seems to go quicker, loading, response etc and that's my problem now. I have just been flying the MJC Dash 8-400 when I adjust the heading or altitude on the VRinsight MCP the values jump by 1000' i.e. in fast mode unless you turn the knob slowly. I will b flying again this afternoon and will try other planes. Any ideas how to slow things down. Frank Darbyshire
  14. Try UK Virtual https://flyuk.aero/en/index.php?page=home
×
×
  • Create New...