Cockpitbuilders.com

LUA Projects => General Discussions => Topic started by: Stinger2k2 on February 11, 2017, 04:09:20 AM

Title: Lua code help needed=Answered !
Post by: Stinger2k2 on February 11, 2017, 04:09:20 AM
Hi all,

Can a LUA expert have a look at this for me please to see what I am doing wrong...

The aircraft I am working with is the Carenado Phenom 300.

This is what I see in the LINDA tracer when right click the ALT SEL knob in the aircraft VC to switch between altitude increments of 100 or 1000.
******
Watching new LVar: H850XPAltWheelPUSHTOGGLE = 0
LVar: H850XPAltWheelPUSHTOGGLE = 1
LVar: H850XPAltWheelPUSHTOGGLE = 0
LVar: H850XPAltWheelPUSHTOGGLE = 1
********
This is the LUA function I wrote .....
********
function alt_incr_toggle_100 ()
     ipc.writeLvar("HP850XPAltwheelPUSHTOGGLE", 1)
end
function alt_incr_toggle_1000 ()
     ipc.writeLvar("HP850XPAltwheelPUSHTOGGLE", 0)
end
********
I then assigned this onto a button in LINDA using the fields ON PRESS and ON RELEASE.

However when I watch the same Lvar in the tracer while pushing and releasing the assigned button the tracer shows no change? LINDA sees the button as working (i.e when I push the button LINDA moves to assign button position 30)

This is similar code that I have written for other switch functions and they work ok.

Any ideas?


Regards
Stinger
Title: Re: Lua code help needed--Answered
Post by: Stinger2k2 on February 11, 2017, 06:34:33 AM
Ok, sorted myself out now thanks.