This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
flightsim:start [2021/07/22 03:02] dwheele |
flightsim:start [2023/01/10 00:32] (current) dwheele |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| * [[.x-plane: | * [[.x-plane: | ||
| + | * [[.msfs2020: | ||
| ===== Helpful Websites ===== | ===== Helpful Websites ===== | ||
| Line 9: | Line 10: | ||
| ^LA ARTCC - Los Angeles Division of VATUSA|http:// | ^LA ARTCC - Los Angeles Division of VATUSA|http:// | ||
| ^Aviation Photography|http:// | ^Aviation Photography|http:// | ||
| - | ^VPilot (online VATSIM Audio Communications)|http:// | + | ^VPilot (online VATSIM Audio Communications |
| ^Alaska Virtual Airlines|http:// | ^Alaska Virtual Airlines|http:// | ||
| ^SkyVector Aeronautical Charts|https:// | ^SkyVector Aeronautical Charts|https:// | ||
| Line 21: | Line 22: | ||
| ^Graphing Calculator|https:// | ^Graphing Calculator|https:// | ||
| ^Aviation Calculator (pressure conversions, | ^Aviation Calculator (pressure conversions, | ||
| - | ^FAA Digital | + | ^FAA Digital |
| ^X-Plane XPLMGraphics (API to X-Plane)|http:// | ^X-Plane XPLMGraphics (API to X-Plane)|http:// | ||
| ^X-Plane Tutorials for Blender 2.79 scenery and aircraft|https:// | ^X-Plane Tutorials for Blender 2.79 scenery and aircraft|https:// | ||
| Line 36: | Line 37: | ||
| ^X-Plane 737-900 Ultimate Info (I'm not using this)|https:// | ^X-Plane 737-900 Ultimate Info (I'm not using this)|https:// | ||
| ^Title|https:// | ^Title|https:// | ||
| - | ^Title|http:// | + | ^LUA FFI Library|http:// |
| ^X-Plane SDK|https:// | ^X-Plane SDK|https:// | ||
| ^X-Plane - Building and Installing Plugins|https:// | ^X-Plane - Building and Installing Plugins|https:// | ||
| Line 49: | Line 50: | ||
| ^X-Plane Dev - Developing Plugins|https:// | ^X-Plane Dev - Developing Plugins|https:// | ||
| ^X-Plane DataRefs, more up-to-date|https:// | ^X-Plane DataRefs, more up-to-date|https:// | ||
| - | ^PilotEdge Related Flight Routes and info|http:// | + | ^PilotEdge |
| - | ^Title|https:// | + | ^Discord - PilotEdge|https:// |
| - | ^Title|https:// | + | ^FlightAware IFR Route Planning|https:// |
| - | ^Title|https:// | + | ^PilotEdge Online ATIS for KPHX|https:// |
| - | ^Title|https:// | + | ^PilotEdge Online ATIS for KSEA|https:// |
| - | ^Title|https:// | + | ^Writing to the framebuffer|http:// |
| - | ^Title|https:// | + | ^Programming the Linux Framebuffer|https:// |
| - | ^Title|https:// | + | ^FAA - Find Terminal Coordinates, |
| - | ^Title|http:// | + | |
| - | ^Title|http:// | + | |
| - | ^Title|https:// | + | |
| - | ^Title|https:// | + | |
| - | ^Title|https:// | + | |
| - | ^Title|https:// | + | |
| ===== ATC Verbiage ===== | ===== ATC Verbiage ===== | ||
| Line 87: | Line 82: | ||
| "Air Canada 301, Los Angeles Clearance Delivery. Cleared to the Calgary International Airport via the Gorman Four Departure, Shafter Transition, then as filed. Maintain 5000, Expect Flight Level Three Four Zero - five minutes after departure. Departure Frequency 124.30, Squawk 7201. Good Morning." | "Air Canada 301, Los Angeles Clearance Delivery. Cleared to the Calgary International Airport via the Gorman Four Departure, Shafter Transition, then as filed. Maintain 5000, Expect Flight Level Three Four Zero - five minutes after departure. Departure Frequency 124.30, Squawk 7201. Good Morning." | ||
| + | |||
| + | ====== Spad.Next ====== | ||
| + | |||
| + | Found at spadnext.com, | ||
| + | |||
| + | This is an expression which helps fulfill Flight Reversing in MSFS 2020. Basically, you pull the throttle down, then push and hold the Button 7 (Labeled D on the X52 Saitek throttle controller), | ||
| + | |||
| + | This works by turning the output of Z Axis negative when Button 7 is pressed. Other numbers shown here are needed because the values to be returned to the simulator is about +/- 12K, but the Throttle axis is 0 to 100. | ||
| + | |||
| + | Letting go of Button 7 causes positive thrust to give some unwanted boost. | ||
| + | |||
| + | * On Z_Axis, add event for "Axis value changed" | ||
| + | * Simulator event: THROTTLE_SET | ||
| + | |||
| + | < | ||
| + | (100 - [LOCAL: | ||
| + | (-50 - (213 * ([LOCAL: | ||
| + | </ | ||
| + | |||
| + | Thrust Reverser interesting information: | ||
| + | https:// | ||
| + | |||