Visit Captain Sim web site  
  Welcome, Guest. Please Login or Register

 

Page Index Toggle Pages: 1 Send TopicPrint
737 Original and Honeycomb switches (Read 1033 times)
JPFlight
Full Member
*
Offline



Posts: 6
Joined: Aug 1st, 2021
737 Original and Honeycomb switches
Dec 21st, 2021 at 7:58pm
Print Post  
Hi all,

purchased the 737-200 for P3DV4 in the sale and i'm trying to get the switches to work with my Honeycomb Alpha (bravo to be tried next) but weirdly though the switches move in the cockpit there is no  external change. For example if i switch the landing lights switch they move in the cockpit but externally theres no effect on the ground, neither do the outboard wing landing lights extend.

Is this an issue with the aircraft or the sim? My other CS products have always worked with honeycomb

thanks for any thoughts in advance

James
  
Back to top
 
IP Logged
 
Angel of Attack
Full Member
*
Offline



Posts: 249
Joined: Dec 15th, 2019
Re: 737 Original and Honeycomb switches
Reply #1 - Dec 22nd, 2021 at 5:26am
Print Post  
I noticed the same with some switches with LINDA, some of the lua data only works on knobs position visually, and there was a hidden one that works with actually system.
I do have landing light switches works by detect in with LINDA develop mode, I'll check it back when I'm home.
  
Back to top
 
IP Logged
 
Angel of Attack
Full Member
*
Offline



Posts: 249
Joined: Dec 15th, 2019
Re: 737 Original and Honeycomb switches
Reply #2 - Dec 22nd, 2021 at 11:13am
Print Post  
Code
Select All
function CS_OUTB_LDGL_ON()
    ipc.writeLvar("L:O06_001_SW3",2)
    ipc.writeLvar("L:O06_002_SW3",2)
    ipc.writeLvar("L:O06_001_SW3_C",-1)
    ipc.writeLvar("L:O06_002_SW3_C",-1)
    ipc.writeLvar("L:O06_001_SW3_C",-1)
    ipc.writeLvar("L:O06_002_SW3_C",-1)
    ipc.sleep(10)
    ipc.writeLvar("L:O06_001_SW3_C",0)
    ipc.writeLvar("L:O06_002_SW3_C",0)
end

function CS_OUTB_LDGL_OFF()
    ipc.writeLvar("L:O06_001_SW3",0)
    ipc.writeLvar("L:O06_002_SW3",0)
    ipc.writeLvar("L:O06_001_SW3_C",1)
    ipc.writeLvar("L:O06_002_SW3_C",1)
    ipc.writeLvar("L:O06_001_SW3_C",1)
    ipc.writeLvar("L:O06_002_SW3_C",1)
    ipc.sleep(10)
    ipc.writeLvar("L:O06_001_SW3_C",0)
    ipc.writeLvar("L:O06_002_SW3_C",0)
end

function CS_INB_LDGL_ON()
    ipc.writeLvar("L:O06_003_SW2",1)
    ipc.writeLvar("L:O06_004_SW2",1)
    ipc.writeLvar("L:O06_003_SW2_C",1)
    ipc.writeLvar("L:O06_004_SW2_C",1)
    ipc.sleep(10)
    ipc.writeLvar("L:O06_003_SW2_C",0)
    ipc.writeLvar("L:O06_004_SW2_C",0)
end

function CS_INB_LDGL_OFF()
    ipc.writeLvar("L:O06_003_SW2",0)
    ipc.writeLvar("L:O06_004_SW2",0)
    ipc.writeLvar("L:O06_003_SW2_C",1)
    ipc.writeLvar("L:O06_004_SW2_C",1)
    ipc.sleep(10)
    ipc.writeLvar("L:O06_003_SW2_C",0)
    ipc.writeLvar("L:O06_004_SW2_C",0)
end

function CS_TAXIL_ON()
    ipc.writeLvar("L:O06_007_SW2",1)
end
function CS_TAXIL_OFF()
    ipc.writeLvar("L:O06_007_SW2",0)
end

function CS_TAXI_toggle()
    ipc.writeLvar("L:O06_007_SW2_C",1)
    ipc.sleep(10)
    ipc.writeLvar("L:O06_007_SW2_C",0)
end

function CS_RTFL_ON()
    ipc.writeLvar("L:O06_005_SW2",1)
    ipc.writeLvar("L:O06_006_SW2",1)
end
function CS_RTFL_OFF()
    ipc.writeLvar("L:O06_005_SW2",0)
    ipc.writeLvar("L:O06_006_SW2",0)
end

function CS_RTFL_toggle()
    ipc.writeLvar("L:O06_005_SW2_C",1)
    ipc.writeLvar("L:O06_006_SW2_C",1)
    ipc.sleep(10)
    ipc.writeLvar("L:O06_005_SW2_C",0)
    ipc.writeLvar("L:O06_006_SW2_C",0)
end 


Here is my lua script for LINDA on 732's lights
  
Back to top
 
IP Logged
 
JPFlight
Full Member
*
Offline



Posts: 6
Joined: Aug 1st, 2021
Re: 737 Original and Honeycomb switches
Reply #3 - Dec 22nd, 2021 at 3:52pm
Print Post  
Many thanks Angle of Attack, very useful and we have lights!
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint
 
  « Board Index ‹ Board  ^Top