Updated README
Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
parent
2443d3a4d0
commit
b402fbee46
1 changed files with 61 additions and 0 deletions
61
README.md
61
README.md
|
@ -28,6 +28,67 @@ If you want to run the MCDU on a phone or tablet for better realism and easier i
|
||||||
If you have issues installing, please check INSTALL.MD!
|
If you have issues installing, please check INSTALL.MD!
|
||||||
Specifically, make sure you remove -dev from the folder name!
|
Specifically, make sure you remove -dev from the folder name!
|
||||||
|
|
||||||
|
## Hardware configuration
|
||||||
|
Here are bindings for commonly used buttons
|
||||||
|
|
||||||
|
### FO Sidestick
|
||||||
|
Bind the axis to:
|
||||||
|
* elevator: `/controls/flight/elevator[1]`
|
||||||
|
* aileron: `/controls/flight/aileron[1]`
|
||||||
|
|
||||||
|
### AP Disconnect
|
||||||
|
```
|
||||||
|
<button n="X">
|
||||||
|
<desc type="string">Custom</desc>
|
||||||
|
<binding>
|
||||||
|
<command type="string">nasal</command>
|
||||||
|
<script type="string">
|
||||||
|
fcu.FCUController.APDisc(side=1, press=1);
|
||||||
|
</script>
|
||||||
|
<module type="string">__js3</module>
|
||||||
|
<offset type="double">1</offset>
|
||||||
|
</binding>
|
||||||
|
<mod-up>
|
||||||
|
<binding>
|
||||||
|
<command type="string">nasal</command>
|
||||||
|
<script type="string">
|
||||||
|
fcu.FCUController.APDisc(side=1, press=0);
|
||||||
|
</script>
|
||||||
|
<module type="string">__js3</module>
|
||||||
|
<offset type="double">1</offset>
|
||||||
|
</binding>
|
||||||
|
</mod-up>
|
||||||
|
<repeatable type="double">0</repeatable>
|
||||||
|
</button>
|
||||||
|
```
|
||||||
|
For the FO Sidestick, use `side=2`
|
||||||
|
|
||||||
|
### A/THR Disconnect
|
||||||
|
```
|
||||||
|
<button n="X">
|
||||||
|
<desc type="string">A/THR Disc</desc>
|
||||||
|
<binding>
|
||||||
|
<command type="string">nasal</command>
|
||||||
|
<script type="string">
|
||||||
|
fcu.FCUController.ATDisc();
|
||||||
|
</script>
|
||||||
|
</binding>
|
||||||
|
</button>
|
||||||
|
```
|
||||||
|
|
||||||
|
If you only want these bindings for the A320 family,
|
||||||
|
add the following to the script:
|
||||||
|
```
|
||||||
|
if (string.match(getprop("/sim/aero"), "A3[12][0189]-*"))
|
||||||
|
{
|
||||||
|
<command-above>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<other-command>
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## External tools
|
## External tools
|
||||||
Some external tools you might want to checkout and use with this Model.
|
Some external tools you might want to checkout and use with this Model.
|
||||||
NOTE: These are external tools so make sure to check their terms of use
|
NOTE: These are external tools so make sure to check their terms of use
|
||||||
|
|
Loading…
Add table
Reference in a new issue