Jump to content

A320NeoV2 - xsaitekpanels.ini


Recommended Posts

Hallo zusammen,

hat jemand eine gut funktionierende xsaitekpanels.ini für den JARDesign A320 NeoV2 für mich. Die mitgelieferte tut es irgendwie nicht, dabei habe ich nur den Start Drehknopf am Switchpanel deaktiviert. Oder wer kann mir helfen bei der Erstellung einer Konfigurationsdatei?

Habe Saitek Proflight Yoke und Pedale (aber das geht auch über die Joystick Konfiguration). Dazu dann Multi, Radio und Switchpanel.

Danke für Eure Unterstützung!

Gruß Martin

Link to comment
Share on other sites

Hallo zusammen,

nutzt niemand den A320 mit Saitek Panels..?

Anbei meine xsaitekpanels.ini, als Textfile - Funktioniert jetzt weitestgehend bis auf Altitude - Knopf. Kann ich drehen bis ich umfalle. Vielleicht hat ja jemand eine Idee..? Habe Parallel mal JARDesign angeschrieben.

Danke und Gruß,

Martin

xsaitekpanels.txt

Link to comment
Share on other sites

Hallo zusammen!

Vielleicht interessiert es ja noch jemand, ich habe den Support von JARDesign diesbezüglich angeschrieben. Wenn ich die Sache mit dem Altitude Knopf gelöst habe poste ich die ini-Datei noch mal als Textfile.

Viele Grüße,

Martin

Hier die Antwort:

Greetings! Thank you for your email!

Hi! You need install DataRefEditor plugin for X-Plane and will be possible to read all custom datarefs via enter "xap" to finder string

Your friend and Tech support,
Eugeny Romanov.

Moscow/Russia.

Link to comment
Share on other sites

Hallo zusammen,

so hier ist die Lösung. Aufgrund der Stellung zwischen 100er Schritten und 1000er Schritten muss für den Altitudeknopf ein Script genommen werden. Ich habe es jetzt mit Hilfe gelöst und dem was mir JAR freundlicherweise zur Verfügung gestellt hat. Hier noch mal das Reply von JARDesign. Ich habe jetzt die LUA Module und das Script für den A320 von William Good genommen und angepasst.

Gruß Martin

Hier die Mail:

Greetings! Thank you for your email!

this do 3 data refs

sim/custom/xap/fcu/alt100x
sim/custom/xap/fcu/alt1000x
sim/custom/xap/fcu/100_1000

logic is here:

if get(sel_100_1000) == 0 then
fcu_alt_now = get(fcu_alt100x) * 100
if fcu_alt_now ~= fcu_alt_old then
if fcu_alt_now > 40000 then fcu_alt_now = 40000 set(fcu_alt100x, 400) end
fcu_alt_chtime = get(time_sec)
end
if get(time_sec) - fcu_alt_chtime > 1 then fcu_alt_stable = fcu_alt_now end
fcu_alt_old = fcu_alt_now
set(fcu_alt1000x, get(fcu_alt100x) / 10)
else
fcu_alt_now = get(fcu_alt1000x) * 1000
if fcu_alt_now ~= fcu_alt_old then
if fcu_alt_now > 40000 then fcu_alt_now = 40000 set(fcu_alt1000x, 40) end
fcu_alt_chtime = get(time_sec)
end
if get(time_sec) - fcu_alt_chtime > 1 then fcu_alt_stable = fcu_alt_now end
fcu_alt_old = fcu_alt_now
set(fcu_alt100x, get(fcu_alt1000x) * 10)
end

------------------------------

This mean that if sel_100_1000 set to 0 device should read altitude as get(fcu_alt100x) * 100
another (set to 1) should read as get(fcu_alt1000x) * 10


Your friend and Tech support,
Eugeny Romanov.

Moscow/Russia.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy & Terms of Use