Page 4 of 17 FirstFirst 1234567814 ... LastLast
Results 31 to 40 of 167
  1. #31
    150+ Forum Groupie AVIATor-Olav's Avatar
    Join Date
    Jun 2009
    Location
    Norway
    Posts
    173
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norweigian 727-200 project

    Time for a small update.

    Finally got a juicy enough 5v power supply


    Getting cozy


    John from Ruscool in New Zealand has been kind enough to design and build me a retro radio stack. He's been hard at work for a few weeks, here's a few pictures of the prototypes. Btw. he might offer these as a new product on his website in the future for anyone interested.



    Here's a picture of a finished NAV/COMM panel.


    Will look very authentic with white digits!


    Thanks to Castle on the forum, my newly aquired TQ has made it's way from Colorado to Pennsylvania. It's currently being loaded in a container along wih my glare shield and will cross the pond in my direction over the next few weeks



    Yesterday I got these off e-bay! :P Ships in from France.


    Cheers!

  2. Thanks Norwegian737project thanked for this post
  3. #32
    75+ Posting Member Stijn's Avatar
    Join Date
    Aug 2008
    Location
    Netherlands
    Posts
    83
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norwegian 727-200 project

    Awesome!! nothing more to say


    Stijn

  4. #33
    150+ Forum Groupie AVIATor-Olav's Avatar
    Join Date
    Jun 2009
    Location
    Norway
    Posts
    173
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norwegian 727-200 project

    Thanks a lot Stijn! How's your project coming along?

  5. #34
    75+ Posting Member Stijn's Avatar
    Join Date
    Aug 2008
    Location
    Netherlands
    Posts
    83
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norweigian 727-200 project

    Waiting for some electronics i orderd for the MIP, when I hook them up the MIP is finished. The pedestal is finished and the throttle quadrant is comming along nicely.

    A lot of small things need to be done, hope to assemble everything next month.

    I will upload some pic's this weekend.

    Stijn

  6. #35
    150+ Forum Groupie AVIATor-Olav's Avatar
    Join Date
    Jun 2009
    Location
    Norway
    Posts
    173
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norweigian 727-200 project

    Cool, can't wait to see some pictures! Have you interfaced a real TQ?

  7. #36
    150+ Forum Groupie AVIATor-Olav's Avatar
    Join Date
    Jun 2009
    Location
    Norway
    Posts
    173
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norweigian 727-200 project

    Got all he lights for the audio select panel hooked up today. The switches I need are interfaced, and ready to plug into my input card. There's something very rewarding about breathing new life into these old components!


  8. #37
    75+ Posting Member Stijn's Avatar
    Join Date
    Aug 2008
    Location
    Netherlands
    Posts
    83
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norwegian 727-200 project

    no, don't have the money for that, just a student

    Stijn

  9. #38
    150+ Forum Groupie AVIATor-Olav's Avatar
    Join Date
    Jun 2009
    Location
    Norway
    Posts
    173
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norwegian 727-200 project

    Have you built one? I initially thought of doing that, but I came across a real one at a reasonable price so I decided to get it!

  10. #39
    75+ Posting Member Stijn's Avatar
    Join Date
    Aug 2008
    Location
    Netherlands
    Posts
    83
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norwegian 727-200 project

    yeah, just finished the 3 throttle levers.


    It's not easy and i'm not that skilled so i have to exclude some functions, for example: only one revers-lever is interfaced, so i cant revers engines individually.

    I build as many as I can from scratch, and when i stumble across some real components for a good price I will add them in my project.

    Stijn

  11. #40
    25+ Posting Member
    Join Date
    Jun 2008
    Location
    Berlin, Germany
    Posts
    49
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Norwegian 727-200 project

    Hi,

    perhaps I can convince you to start with SIOC

    Here is my code for the audio selector - with me it works.


    // ///////////////////////////////////////////////////////////////////
    // Audio Selector
    // ///////////////////////////////////////////////////////////////////

    Var 3500, name FO_AudioSelect, Link FSUIPC_OUT Offset $3122, Length 1 // Audio Selector except ADF2, 2^7 COM1 transmit, 2^6 COM2 transmit, 2^5 COM receive both, 2^4 NAV1 sound, 2^3 NAV2 sound, 2^2 Marker sound, 2^1 DME sound, 2^0 ADF1 sound

    Var 3501, name FO_AudSelADF2, Link FSUIPC_OUT Offset $02FB, Length 1 // Audio Selector ADF2, 1 = on, 0 = off

    Var 3510, name AudSel_ADF1_SW, Link IOCARD_SW, Device 1, Input 275 // Audio Selector Switch ADF1
    {
    IF &AudSel_ADF1_SW = 1
    {
    &FO_AudioSelect = SETBIT 0
    }
    ELSE
    {
    &FO_AudioSelect = CLEARBIT 0
    }
    }

    Var 3511, name AudSel_DME_SW, Link IOCARD_SW, Device 1, Input 270 // Audio Selector Switch DME
    {
    IF &AudSel_DME_SW = 1
    {
    &FO_AudioSelect = SETBIT 1
    }
    ELSE
    {
    &FO_AudioSelect = CLEARBIT 1
    }
    }

    Var 3512, name AudSel_MKR_SW, Link IOCARD_SW, Device 1, Input 272 // Audio Selector Switch Marker
    {
    IF &AudSel_MKR_SW = 1
    {
    &FO_AudioSelect = SETBIT 2
    }
    ELSE
    {
    &FO_AudioSelect = CLEARBIT 2
    }
    }

    Var 3513, name AudSel_NAV2_SW, Link IOCARD_SW, Device 1, Input 273 // Audio Selector Switch NAV2
    {
    IF &AudSel_NAV2_SW = 1
    {
    &FO_AudioSelect = SETBIT 3
    }
    ELSE
    {
    &FO_AudioSelect = CLEARBIT 3
    }
    }

    Var 3514, name AudSel_NAV1_SW, Link IOCARD_SW, Device 1, Input 271 // Audio Selector Switch NAV1
    {
    IF &AudSel_NAV1_SW = 0
    {
    &FO_AudioSelect = SETBIT 4
    }
    ELSE
    {
    &FO_AudioSelect = CLEARBIT 4
    }
    }

    Var 3515, name AudSel_COM2_SW, Link IOCARD_SW, Device 1, Input 277 // Audio Selector Switch COMM2
    {
    CALL &AudSelComm_Sub
    }

    Var 3516, name AudSel_COM1_SW, Link IOCARD_SW, Device 1, Input 278 // Audio Selector Switch COMM1
    {
    CALL &AudSelComm_Sub
    }

    Var 3517, name AudSel_ADF2_SW, Link IOCARD_SW, Device 1, Input 274 // Audio Selector Switch ADF2
    {
    &FO_AudSelADF2 = &AudSel_ADF2_SW
    }

    Var 3518, name AudSel_VHF3_SW, Link IOCARD_SW, Device 1, Input 276 // Audio Selector Switch VHF3, used as "Both", temporary solution
    {
    IF &AudSel_VHF3_SW = 1
    {
    &FO_AudioSelect = SETBIT 7 // Transmit COMM1
    &FO_AudioSelect = SETBIT 5 // Receive Both
    &FO_AudioSelect = CLEARBIT 6 // Clear Transmit COMM2
    }
    ELSE
    {
    &FO_AudioSelect = CLEARBIT 7 // Clear Transmit COMM1
    &FO_AudioSelect = CLEARBIT 5 // Clear Receive Both
    &FO_AudioSelect = SETBIT 6 // Transmit COMM2
    }
    }

Page 4 of 17 FirstFirst 1234567814 ... LastLast

Tags for this Thread