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:12] dwheele [Helpful Websites] |
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 45: | Line 46: | ||
| ^X-Plane Dev - Screen Coordinates|https:// | ^X-Plane Dev - Screen Coordinates|https:// | ||
| ^X-Plane Dev - XPLMDisplay|https:// | ^X-Plane Dev - XPLMDisplay|https:// | ||
| - | |||
| ^Microsoft - General information about how OpenGL works.|https:// | ^Microsoft - General information about how OpenGL works.|https:// | ||
| ^X-Plane Dev - Register Custom DataRef|https:// | ^X-Plane Dev - Register Custom DataRef|https:// | ||
| Line 51: | Line 51: | ||
| ^X-Plane DataRefs, more up-to-date|https:// | ^X-Plane DataRefs, more up-to-date|https:// | ||
| ^PilotEdge Online ATIS, Related Flight Routes and info|http:// | ^PilotEdge Online ATIS, Related Flight Routes and info|http:// | ||
| - | ^Title|https:// | + | ^Discord - PilotEdge|https:// |
| ^FlightAware IFR Route Planning|https:// | ^FlightAware IFR Route Planning|https:// | ||
| ^PilotEdge Online ATIS for KPHX|https:// | ^PilotEdge Online ATIS for KPHX|https:// | ||
| - | ^^PilotEdge Online ATIS for KSEA|https:// | + | ^PilotEdge Online ATIS for KSEA|https:// |
| ^Writing to the framebuffer|http:// | ^Writing to the framebuffer|http:// | ||
| ^Programming the Linux Framebuffer|https:// | ^Programming the Linux Framebuffer|https:// | ||
| Line 82: | 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:// | ||
| + | |||