βΉοΈ Skipped - page is already crawled
| Filter | Status | Condition | Details |
|---|---|---|---|
| HTTP status | PASS | download_http_code = 200 | HTTP 200 |
| Age cutoff | PASS | download_stamp > now() - 6 MONTH | 0.7 months ago |
| History drop | PASS | isNull(history_drop_reason) | No drop reason |
| Spam/ban | PASS | fh_dont_index != 1 AND ml_spam_score = 0 | ml_spam_score=0 |
| Canonical | PASS | meta_canonical IS NULL OR = '' OR = src_unparsed | Not set |
| Property | Value |
|---|---|
| URL | https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect |
| Last Crawled | 2026-03-27 01:28:25 (19 days ago) |
| First Indexed | 2025-02-28 15:56:35 (1 year ago) |
| HTTP Status Code | 200 |
| Meta Title | simconnect package - github.com/flysim-apps/simgo/simconnect - Go Packages |
| Meta Description | Package simconnect is a binding for FS2020 βοΈ in GO. |
| Meta Canonical | null |
| Boilerpipe Text | Package simconnect is a binding for FS2020 βοΈ in GO.
Please see EasySimConnect for best use
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarStructLatlonalt(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
latlonalt, err := simVar.GetDataLatLonAlt()
if err != nil {
panic(err)
}
log.Printf("%s : %#v\nIn Feet %#v\n", simVar.Name, latlonalt, latlonalt.GetFeets())
}
}
<-sc.Close() // wait close confirmation
}
ExampleGetSimVar this example show how to get SimVar with Easysim
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarPlaneAltitude(),
sim.SimVarPlaneLatitude(sim.UnitDegrees), // you can force the units
sim.SimVarPlaneLongitude(),
sim.SimVarIndicatedAltitude(),
sim.SimVarAutopilotAltitudeLockVar(),
sim.SimVarAutopilotMaster(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
f, err := simVar.GetFloat64()
if err != nil {
panic(err)
}
log.Printf("%#v\n", f)
}
}
<-sc.Close() // wait close confirmation
}
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarGeneralEngRpm(1),
sim.SimVarTransponderCode(1),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
if simVar.Name == sim.SimVarTransponderCode().Name {
i, err := simVar.GetInt()
if err != nil {
panic(err)
}
log.Printf("%s : %x\n", simVar.Name, i)
} else {
f, err := simVar.GetFloat64()
if err != nil {
panic(err)
}
log.Printf("%s : %f\n", simVar.Name, f)
}
}
}
<-sc.Close() // wait close confirmation
}
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarTitle(),
sim.SimVarCategory(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
str := simVar.GetString()
log.Printf("%s : %#v\n", simVar.Name, str)
}
}
<-sc.Close() // wait close confirmation
}
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarEyepointPosition(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
xyz, err := simVar.GetDataXYZ()
if err != nil {
panic(err)
}
log.Printf("%s : %#v\n", simVar.Name, xyz)
}
}
<-sc.Close() // wait close confirmation
}
Example_iFaceSetSimVar Example how to use interface for assign value in simulator actualy support only float64
package main
import (
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
type ExampleSetSimVar struct {
PlaneAltitude float64 `sim:"PLANE ALTITUDE" simUnit:"Feet"`
PlaneLatitude float64 `sim:"PLANE LATITUDE" simUnit:"Degrees"`
PlaneLongitude float64 `sim:"PLANE LONGITUDE" simUnit:"Degrees"`
Speed float64 `sim:"AIRSPEED INDICATED" simUnit:"Knots"`
}
func main() {
sc := connect()
iFace := ExampleSetSimVar{
PlaneLatitude: 46.2730077,
PlaneLongitude: 6.1324663,
PlaneAltitude: 10000.0,
Speed: 150.0,
}
sc.SetSimVarInterfaceInSim(iFace)
<-sc.Close() // wait close confirmation
// NOEXEC Output:
}
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
type ExampleInterface struct {
PlaneAltitude float64 `sim:"PLANE ALTITUDE" simUnit:"Feet"`
PlaneLatitude float64 `sim:"PLANE LATITUDE"`
PlaneLongitude float64 `sim:"PLANE LONGITUDE" simUnit:"Degrees"`
IndicatedAltitude float64 `sim:"INDICATED ALTITUDE"`
AutopilotAltitudeLockVar float64 `sim:"AUTOPILOT ALTITUDE LOCK VAR"`
SimVarAutopilotMaster bool `sim:"GENERAL ENG RPM:1"`
PlaneName string `sim:"TITLE"`
}
func main() {
sc := connect()
cInterface, err := sc.ConnectInterfaceToSimVar(ExampleInterface{})
if err != nil {
panic(err)
}
iFace, ok := (<-cInterface).(ExampleInterface)
if ok {
log.Printf("%#v", iFace)
} else {
log.Fatalln("interface error in Example_interfaceSimVar")
}
<-sc.Close()
}
package main
import (
"time"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
newalt := sim.SimVarPlaneAltitude()
newalt.SetFloat64(6000.0)
sc.SetSimObject(newalt)
time.Sleep(1000 * time.Millisecond)
<-sc.Close() // wait close confirmation
// NOEXEC Output:
}
Example_showText Actually color no effect in the sim
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
ch, err := sc.ShowText("Test", 1, sim.SIMCONNECT_TEXT_TYPE_PRINT_GREEN)
if err != nil {
panic(err)
}
log.Println(<-ch)
<-sc.Close() // wait close confirmation
}
Example_simEvent You can wait chan if you will surre the event has finish with succes. If your app finish before all event probably not effect.
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
aileronsSet := sc.NewSimEvent(sim.KeyAxisAileronsSet)
throttleSet := sc.NewSimEvent(sim.KeyThrottleSet)
altVarInc := sc.NewSimEvent(sim.KeyApAltVarInc)
altVarDec := sc.NewSimEvent(sim.KeyApAltVarDec)
log.Println(<-aileronsSet.RunWithValue(-16383))
log.Println(<-throttleSet.RunWithValue(16383))
for i := 0; i < 10; i++ {
<-altVarInc.Run()
}
for i := 0; i < 10; i++ {
<-altVarDec.Run()
}
<-sc.Close() // wait close confirmation
}
Constants
func InterfaceAssignSimVar(listSimVar []SimVar, iFace interface{})
func SimVarAssignInterface(iFace interface{}, listSimVar []SimVar) interface{}
type EasySimConnect
func NewEasySimConnect(ctx context.Context) (*EasySimConnect, error)
func (esc *EasySimConnect) Close() <-chan bool
func (esc *EasySimConnect) Connect(appName string) (<-chan bool, error)
func (esc *EasySimConnect) ConnectInterfaceToSimVar(iFace interface{}) (<-chan interface{}, error)
func (esc *EasySimConnect) ConnectSysEventAircraftLoaded() <-chan string
func (esc *EasySimConnect) ConnectSysEventCrashReset() <-chan bool
func (esc *EasySimConnect) ConnectSysEventCrashed() <-chan bool
func (esc *EasySimConnect) ConnectSysEventFlightLoaded() <-chan string
func (esc *EasySimConnect) ConnectSysEventFlightPlanActivated() <-chan string
func (esc *EasySimConnect) ConnectSysEventFlightPlanDeactivated() <-chan bool
func (esc *EasySimConnect) ConnectSysEventFlightSaved() <-chan string
func (esc *EasySimConnect) ConnectSysEventPause() <-chan bool
func (esc *EasySimConnect) ConnectSysEventPaused() <-chan bool
func (esc *EasySimConnect) ConnectSysEventSim() <-chan bool
func (esc *EasySimConnect) ConnectToSimVar(listSimVar ...SimVar) (<-chan []SimVar, error)
func (esc *EasySimConnect) ConnectToSimVarObject(listSimVar ...SimVar) <-chan []SimVar
deprecated
func (esc *EasySimConnect) IsAlive() bool
func (esc *EasySimConnect) NewSimEvent(simEventStr KeySimEvent) SimEvent
func (esc *EasySimConnect) SetDelay(t time.Duration)
func (esc *EasySimConnect) SetLoggerLevel(level EasySimConnectLogLevel)
func (esc *EasySimConnect) SetSimObject(simVar SimVar)
func (esc *EasySimConnect) SetSimVarInterfaceInSim(iFace interface{}) error
func (esc *EasySimConnect) ShowText(str string, time float32, color PrintColor) (<-chan int, error)
type EasySimConnectLogLevel
type EventFlag
type GUID
type GroupPriority
type KeySimEvent
type PrintColor
type SIMCONNECT_DATA_FACILITY_AIRPORT
type SIMCONNECT_DATA_FACILITY_NDB
type SIMCONNECT_DATA_FACILITY_VOR
type SIMCONNECT_DATA_FACILITY_WAYPOINT
type SIMCONNECT_DATA_INITPOSITION
type SIMCONNECT_DATA_LATLONALT
func (s SIMCONNECT_DATA_LATLONALT) GetFeets() int
type SIMCONNECT_DATA_MARKERSTATE
type SIMCONNECT_DATA_RACE_RESULT
type SIMCONNECT_DATA_WAYPOINT
type SIMCONNECT_DATA_XYZ
type SIMCONNECT_RECV
type SIMCONNECT_RECV_AIRPORT_LIST
type SIMCONNECT_RECV_ASSIGNED_OBJECT_ID
type SIMCONNECT_RECV_CLIENT_DATA
type SIMCONNECT_RECV_CLOUD_STATE
type SIMCONNECT_RECV_CUSTOM_ACTION
type SIMCONNECT_RECV_EVENT
type SIMCONNECT_RECV_EVENT_FILENAME
type SIMCONNECT_RECV_EVENT_FRAME
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED
type SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE
type SIMCONNECT_RECV_EVENT_RACE_END
type SIMCONNECT_RECV_EVENT_RACE_LAP
type SIMCONNECT_RECV_EVENT_WEATHER_MODE
type SIMCONNECT_RECV_EXCEPTION
type SIMCONNECT_RECV_FACILITIES_LIST
type SIMCONNECT_RECV_NDB_LIST
type SIMCONNECT_RECV_OPEN
type SIMCONNECT_RECV_QUIT
type SIMCONNECT_RECV_RESERVED_KEY
type SIMCONNECT_RECV_SIMOBJECT_DATA
type SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE
type SIMCONNECT_RECV_SYSTEM_STATE
type SIMCONNECT_RECV_VOR_LIST
type SIMCONNECT_RECV_WAYPOINT_LIST
type SIMCONNECT_RECV_WEATHER_OBSERVATION
type ScrollColor
type SimConnect
func NewSimConnect() (*SimConnect, error)
func (sc *SimConnect) AICreateEnrouteATCAircraft(szContainerTitle string, szTailNumber string, iFlightNumber int, ...) (error, uint32)
func (sc *SimConnect) AICreateNonATCAircraft(szContainerTitle string, szTailNumber string, InitPos uint32, RequestID uint32) (error, uint32)
func (sc *SimConnect) AICreateParkedATCAircraft(szContainerTitle string, szTailNumber string, szAirportID string, ...) (error, uint32)
func (sc *SimConnect) AICreateSimulatedObject(szContainerTitle string, InitPos uint32, RequestID uint32) (error, uint32)
func (sc *SimConnect) AIReleaseControl(ObjectID uint32, RequestID uint32) (error, uint32)
func (sc *SimConnect) AIRemoveObject(ObjectID uint32, RequestID uint32) (error, uint32)
func (sc *SimConnect) AISetAircraftFlightPlan(ObjectID uint32, szFlightPlanPath string, RequestID uint32) (error, uint32)
func (sc *SimConnect) AddClientEventToNotificationGroup(GroupID uint32, EventID uint32, bMaskable bool) (error, uint32)
func (sc *SimConnect) AddToClientDataDefinition(DefineID uint32, dwOffset uint32, dwSizeOrType uint32, fEpsilon float32, ...) (error, uint32)
func (sc *SimConnect) AddToDataDefinition(DefineID uint32, DatumName string, UnitsName string, DatumType uint32, ...) (error, uint32)
func (sc *SimConnect) CameraSetRelative6DOF(fDeltaX float32, fDeltaY float32, fDeltaZ float32, fPitchDeg float32, ...) (error, uint32)
func (sc *SimConnect) ClearClientDataDefinition(DefineID uint32) (error, uint32)
func (sc *SimConnect) ClearDataDefinition(DefineID uint32) (error, uint32)
func (sc *SimConnect) ClearInputGroup(GroupID uint32) (error, uint32)
func (sc *SimConnect) ClearNotificationGroup(GroupID uint32) (error, uint32)
func (sc *SimConnect) Close() (error, uint32)
func (sc *SimConnect) CompleteCustomMissionAction(guidInstanceID GUID) (error, uint32)
func (sc *SimConnect) CreateClientData(ClientDataID uint32, dwSize uint32, Flags uint32) (error, uint32)
func (sc *SimConnect) ExecuteMissionAction(guidInstanceID GUID) (error, uint32)
func (sc *SimConnect) FlightLoad(szFileName string) (error, uint32)
func (sc *SimConnect) FlightPlanLoad(szFileName string) (error, uint32)
func (sc *SimConnect) FlightSave(szFileName string, szTitle string, szDescription string, Flags uint32) (error, uint32)
func (sc *SimConnect) GetLastSentPacketID(pdwError *uint32) error
func (sc *SimConnect) GetNextDispatch(ppData *unsafe.Pointer, pcbData *uint32) (error, uint32)
func (sc *SimConnect) InsertString(pDest string, cbDest uint32, ppEnd *uint32, pcbStringV *uint32, pSource string) (error, uint32)
func (sc *SimConnect) MapClientDataNameToID(szClientDataName string, ClientDataID uint32) (error, uint32)
func (sc *SimConnect) MapClientEventToSimEvent(EventID uint32, EventName string) (error, uint32)
func (sc *SimConnect) MapInputEventToClientEvent(GroupID uint32, szInputDefinition string, DownEventID uint32, DownValue uint32, ...) (error, uint32)
func (sc *SimConnect) MenuAddItem(szMenuItem string, MenuEventID uint32, dwData uint32) (error, uint32)
func (sc *SimConnect) MenuAddSubItem(MenuEventID uint32, szMenuItem string, SubMenuEventID uint32, dwData uint32) (error, uint32)
func (sc *SimConnect) MenuDeleteItem(MenuEventID uint32) (error, uint32)
func (sc *SimConnect) MenuDeleteSubItem(MenuEventID uint32, constSubMenuEventID uint32) (error, uint32)
func (sc *SimConnect) Open(appTitle string) (error, uint32)
func (sc *SimConnect) RemoveClientEvent(GroupID uint32, EventID uint32) (error, uint32)
func (sc *SimConnect) RemoveInputEvent(GroupID uint32, szInputDefinition string) (error, uint32)
func (sc *SimConnect) RequestClientData(ClientDataID uint32, RequestID uint32, DefineID uint32, Period uint32, ...) (error, uint32)
func (sc *SimConnect) RequestDataOnSimObject(RequestID uint32, DefineID uint32, ObjectID uint32, Period uint32, ...) (error, uint32)
func (sc *SimConnect) RequestDataOnSimObjectType(RequestID uint32, DefineID uint32, dwRadiusMeters uint32, t uint32) (error, uint32)
func (sc *SimConnect) RequestFacilitiesList(t uint32, RequestID uint32) (error, uint32)
func (sc *SimConnect) RequestNotificationGroup(GroupID uint32, dwReserved uint32, Flags uint32) (error, uint32)
func (sc *SimConnect) RequestReservedKey(EventID uint32, szKeyChoice1 string, szKeyChoice2 string, szKeyChoice3 string) (error, uint32)
func (sc *SimConnect) RequestResponseTimes(nCount uint32, fElapsedSeconds *float32) (error, uint32)
func (sc *SimConnect) RequestSystemState(RequestID uint32, szState string) (error, uint32)
func (sc *SimConnect) RetrieveString(pData *uint32, cbData uint32, pStringV string, pszString **string, ...) (error, uint32)
func (sc *SimConnect) SetClientData(ClientDataID uint32, DefineID uint32, Flags uint32, dwReserved uint32, ...) (error, uint32)
func (sc *SimConnect) SetDataOnSimObject(DefineID uint32, ObjectID uint32, Flags uint32, ArrayCount uint32, ...) (error, uint32)
func (sc *SimConnect) SetInputGroupPriority(GroupID uint32, uPriority uint32) (error, uint32)
func (sc *SimConnect) SetInputGroupState(GroupID uint32, dwState SimConnectStat) (error, uint32)
func (sc *SimConnect) SetNotificationGroupPriority(GroupID uint32, uPriority GroupPriority) (error, uint32)
func (sc *SimConnect) SetSystemEventState(EventID uint32, dwState uint32) (error, uint32)
func (sc *SimConnect) SetSystemState(szState string, dwInteger uint32, fFloat float32, szString string) (error, uint32)
func (sc *SimConnect) SubscribeToFacilities(t uint32, RequestID uint32) (error, uint32)
func (sc *SimConnect) SubscribeToSystemEvent(EventID uint32, SystemEventName SystemEvent) (error, uint32)
func (sc *SimConnect) Text(t uint32, fTimeSeconds float32, EventID uint32, pDataSet string) (error, uint32)
func (sc *SimConnect) TransmitClientEvent(ObjectID uint32, EventID uint32, dwData int, GroupID GroupPriority, ...) (error, uint32)
func (sc *SimConnect) UnsubscribeFromSystemEvent(EventID uint32) (error, uint32)
func (sc *SimConnect) UnsubscribeToFacilities(t uint32) (error, uint32)
func (sc *SimConnect) WeatherCreateStation(RequestID uint32, szICAO string, szName string, lat float32, lon float32, ...) (error, uint32)
func (sc *SimConnect) WeatherCreateThermal(RequestID uint32, lat float32, lon float32, alt float32, radius float32, ...) (error, uint32)
func (sc *SimConnect) WeatherRemoveStation(RequestID uint32, szICAO string) (error, uint32)
func (sc *SimConnect) WeatherRemoveThermal(ObjectID uint32) (error, uint32)
func (sc *SimConnect) WeatherRequestCloudState(RequestID uint32, minLat float32, minLon float32, minAlt float32, ...) (error, uint32)
func (sc *SimConnect) WeatherRequestInterpolatedObservation(RequestID uint32, lat float32, lon float32, alt float32) (error, uint32)
func (sc *SimConnect) WeatherRequestObservationAtNearestStation(RequestID uint32, lat float32, lon float32) (error, uint32)
func (sc *SimConnect) WeatherRequestObservationAtStation(RequestID uint32, szICAO string) (error, uint32)
func (sc *SimConnect) WeatherSetDynamicUpdateRate(dwRate uint32) (error, uint32)
func (sc *SimConnect) WeatherSetModeCustom() (error, uint32)
func (sc *SimConnect) WeatherSetModeGlobal() (error, uint32)
func (sc *SimConnect) WeatherSetModeServer(dwPort uint32, dwSeconds uint32) (error, uint32)
func (sc *SimConnect) WeatherSetModeTheme(szThemeName string) (error, uint32)
func (sc *SimConnect) WeatherSetObservation(Seconds uint32, szMETAR string) (error, uint32)
type SimConnectStat
type SimEvent
func (s SimEvent) Run() <-chan int32
func (s SimEvent) RunWithValue(value int) <-chan int32
type SimVar
func SimVarAbsoluteTime(args ...interface{}) SimVar
func SimVarAccelerationBodyX(args ...interface{}) SimVar
func SimVarAccelerationBodyY(args ...interface{}) SimVar
func SimVarAccelerationBodyZ(args ...interface{}) SimVar
func SimVarAccelerationWorldX(args ...interface{}) SimVar
func SimVarAccelerationWorldY(args ...interface{}) SimVar
func SimVarAccelerationWorldZ(args ...interface{}) SimVar
func SimVarAdfActiveFrequency(args ...interface{}) SimVar
func SimVarAdfAvailable(args ...interface{}) SimVar
func SimVarAdfCard(args ...interface{}) SimVar
func SimVarAdfExtFrequency(args ...interface{}) SimVar
func SimVarAdfFrequency(args ...interface{}) SimVar
func SimVarAdfIdent(args ...interface{}) SimVar
func SimVarAdfLatlonalt(args ...interface{}) SimVar
func SimVarAdfName(args ...interface{}) SimVar
func SimVarAdfRadial(args ...interface{}) SimVar
func SimVarAdfSignal(args ...interface{}) SimVar
func SimVarAdfSound(args ...interface{}) SimVar
func SimVarAdfStandbyFrequency(args ...interface{}) SimVar
func SimVarAiCurrentWaypoint(args ...interface{}) SimVar
func SimVarAiDesiredHeading(args ...interface{}) SimVar
func SimVarAiDesiredSpeed(args ...interface{}) SimVar
func SimVarAiGroundcruisespeed(args ...interface{}) SimVar
func SimVarAiGroundturnspeed(args ...interface{}) SimVar
func SimVarAiGroundturntime(args ...interface{}) SimVar
func SimVarAiTrafficAssignedParking(args ...interface{}) SimVar
func SimVarAiTrafficAssignedRunway(args ...interface{}) SimVar
func SimVarAiTrafficCurrentAirport(args ...interface{}) SimVar
func SimVarAiTrafficEta(args ...interface{}) SimVar
func SimVarAiTrafficEtd(args ...interface{}) SimVar
func SimVarAiTrafficFromairport(args ...interface{}) SimVar
func SimVarAiTrafficIsifr(args ...interface{}) SimVar
func SimVarAiTrafficState(args ...interface{}) SimVar
func SimVarAiTrafficToairport(args ...interface{}) SimVar
func SimVarAiWaypointList(args ...interface{}) SimVar
func SimVarAileronAverageDeflection(args ...interface{}) SimVar
func SimVarAileronLeftDeflection(args ...interface{}) SimVar
func SimVarAileronLeftDeflectionPct(args ...interface{}) SimVar
func SimVarAileronPosition(args ...interface{}) SimVar
func SimVarAileronRightDeflection(args ...interface{}) SimVar
func SimVarAileronRightDeflectionPct(args ...interface{}) SimVar
func SimVarAileronTrim(args ...interface{}) SimVar
func SimVarAileronTrimPct(args ...interface{}) SimVar
func SimVarAircraftWindX(args ...interface{}) SimVar
func SimVarAircraftWindY(args ...interface{}) SimVar
func SimVarAircraftWindZ(args ...interface{}) SimVar
func SimVarAirspeedBarberPole(args ...interface{}) SimVar
func SimVarAirspeedIndicated(args ...interface{}) SimVar
func SimVarAirspeedMach(args ...interface{}) SimVar
func SimVarAirspeedSelectIndicatedOrTrue(args ...interface{}) SimVar
func SimVarAirspeedTrue(args ...interface{}) SimVar
func SimVarAirspeedTrueCalibrate(args ...interface{}) SimVar
func SimVarAlternateStaticSourceOpen(args ...interface{}) SimVar
func SimVarAmbientDensity(args ...interface{}) SimVar
func SimVarAmbientInCloud(args ...interface{}) SimVar
func SimVarAmbientPrecipState(args ...interface{}) SimVar
func SimVarAmbientPressure(args ...interface{}) SimVar
func SimVarAmbientTemperature(args ...interface{}) SimVar
func SimVarAmbientVisibility(args ...interface{}) SimVar
func SimVarAmbientWindDirection(args ...interface{}) SimVar
func SimVarAmbientWindVelocity(args ...interface{}) SimVar
func SimVarAmbientWindX(args ...interface{}) SimVar
func SimVarAmbientWindY(args ...interface{}) SimVar
func SimVarAmbientWindZ(args ...interface{}) SimVar
func SimVarAnemometerPctRpm(args ...interface{}) SimVar
func SimVarAngleOfAttackIndicator(args ...interface{}) SimVar
func SimVarAntiskidBrakesActive(args ...interface{}) SimVar
func SimVarApplyHeatToSystems(args ...interface{}) SimVar
func SimVarApuGeneratorActive(args ...interface{}) SimVar
func SimVarApuGeneratorSwitch(args ...interface{}) SimVar
func SimVarApuOnFireDetected(args ...interface{}) SimVar
func SimVarApuPctRpm(args ...interface{}) SimVar
func SimVarApuPctStarter(args ...interface{}) SimVar
func SimVarApuVolts(args ...interface{}) SimVar
func SimVarArtificialGroundElevation(args ...interface{}) SimVar
func SimVarAtcAirline(args ...interface{}) SimVar
func SimVarAtcFlightNumber(args ...interface{}) SimVar
func SimVarAtcHeavy(args ...interface{}) SimVar
func SimVarAtcId(args ...interface{}) SimVar
func SimVarAtcModel(args ...interface{}) SimVar
func SimVarAtcSuggestedMinRwyLanding(args ...interface{}) SimVar
func SimVarAtcSuggestedMinRwyTakeoff(args ...interface{}) SimVar
func SimVarAtcType(args ...interface{}) SimVar
func SimVarAttitudeBarsPosition(args ...interface{}) SimVar
func SimVarAttitudeCage(args ...interface{}) SimVar
func SimVarAttitudeIndicatorBankDegrees(args ...interface{}) SimVar
func SimVarAttitudeIndicatorPitchDegrees(args ...interface{}) SimVar
func SimVarAutoBrakeSwitchCb(args ...interface{}) SimVar
func SimVarAutoCoordination(args ...interface{}) SimVar
func SimVarAutopilotAirspeedHold(args ...interface{}) SimVar
func SimVarAutopilotAirspeedHoldVar(args ...interface{}) SimVar
func SimVarAutopilotAltitudeLock(args ...interface{}) SimVar
func SimVarAutopilotAltitudeLockVar(args ...interface{}) SimVar
func SimVarAutopilotApproachHold(args ...interface{}) SimVar
func SimVarAutopilotAttitudeHold(args ...interface{}) SimVar
func SimVarAutopilotAvailable(args ...interface{}) SimVar
func SimVarAutopilotBackcourseHold(args ...interface{}) SimVar
func SimVarAutopilotFlightDirectorActive(args ...interface{}) SimVar
func SimVarAutopilotFlightDirectorBank(args ...interface{}) SimVar
func SimVarAutopilotFlightDirectorPitch(args ...interface{}) SimVar
func SimVarAutopilotGlideslopeHold(args ...interface{}) SimVar
func SimVarAutopilotHeadingLock(args ...interface{}) SimVar
func SimVarAutopilotHeadingLockDir(args ...interface{}) SimVar
func SimVarAutopilotMachHold(args ...interface{}) SimVar
func SimVarAutopilotMachHoldVar(args ...interface{}) SimVar
func SimVarAutopilotMaster(args ...interface{}) SimVar
func SimVarAutopilotMaxBank(args ...interface{}) SimVar
func SimVarAutopilotNav1Lock(args ...interface{}) SimVar
func SimVarAutopilotNavSelected(args ...interface{}) SimVar
func SimVarAutopilotPitchHold(args ...interface{}) SimVar
func SimVarAutopilotPitchHoldRef(args ...interface{}) SimVar
func SimVarAutopilotRpmHold(args ...interface{}) SimVar
func SimVarAutopilotRpmHoldVar(args ...interface{}) SimVar
func SimVarAutopilotTakeoffPowerActive(args ...interface{}) SimVar
func SimVarAutopilotThrottleArm(args ...interface{}) SimVar
func SimVarAutopilotVerticalHold(args ...interface{}) SimVar
func SimVarAutopilotVerticalHoldVar(args ...interface{}) SimVar
func SimVarAutopilotWingLeveler(args ...interface{}) SimVar
func SimVarAutopilotYawDamper(args ...interface{}) SimVar
func SimVarAutothrottleActive(args ...interface{}) SimVar
func SimVarAuxWheelRotationAngle(args ...interface{}) SimVar
func SimVarAuxWheelRpm(args ...interface{}) SimVar
func SimVarAvionicsMasterSwitch(args ...interface{}) SimVar
func SimVarBarberPoleMach(args ...interface{}) SimVar
func SimVarBarometerPressure(args ...interface{}) SimVar
func SimVarBetaDot(args ...interface{}) SimVar
func SimVarBlastShieldPosition(args ...interface{}) SimVar
func SimVarBleedAirSourceControl(args ...interface{}) SimVar
func SimVarBrakeDependentHydraulicPressure(args ...interface{}) SimVar
func SimVarBrakeIndicator(args ...interface{}) SimVar
func SimVarBrakeLeftPosition(args ...interface{}) SimVar
func SimVarBrakeParkingIndicator(args ...interface{}) SimVar
func SimVarBrakeParkingPosition(args ...interface{}) SimVar
func SimVarBrakeRightPosition(args ...interface{}) SimVar
func SimVarCabinNoSmokingAlertSwitch(args ...interface{}) SimVar
func SimVarCabinSeatbeltsAlertSwitch(args ...interface{}) SimVar
func SimVarCanopyOpen(args ...interface{}) SimVar
func SimVarCarbHeatAvailable(args ...interface{}) SimVar
func SimVarCategory(args ...interface{}) SimVar
func SimVarCenterWheelRotationAngle(args ...interface{}) SimVar
func SimVarCenterWheelRpm(args ...interface{}) SimVar
func SimVarCgAftLimit(args ...interface{}) SimVar
func SimVarCgFwdLimit(args ...interface{}) SimVar
func SimVarCgMaxMach(args ...interface{}) SimVar
func SimVarCgMinMach(args ...interface{}) SimVar
func SimVarCgPercent(args ...interface{}) SimVar
func SimVarCgPercentLateral(args ...interface{}) SimVar
func SimVarCircuitAutoBrakesOn(args ...interface{}) SimVar
func SimVarCircuitAutoFeatherOn(args ...interface{}) SimVar
func SimVarCircuitAutopilotOn(args ...interface{}) SimVar
func SimVarCircuitAvionicsOn(args ...interface{}) SimVar
func SimVarCircuitFlapMotorOn(args ...interface{}) SimVar
func SimVarCircuitGearMotorOn(args ...interface{}) SimVar
func SimVarCircuitGearWarningOn(args ...interface{}) SimVar
func SimVarCircuitGeneralPanelOn(args ...interface{}) SimVar
func SimVarCircuitHydraulicPumpOn(args ...interface{}) SimVar
func SimVarCircuitMarkerBeaconOn(args ...interface{}) SimVar
func SimVarCircuitPitotHeatOn(args ...interface{}) SimVar
func SimVarCircuitPropSyncOn(args ...interface{}) SimVar
func SimVarCircuitStandyVacuumOn(args ...interface{}) SimVar
func SimVarComActiveFrequency(args ...interface{}) SimVar
func SimVarComAvailable(args ...interface{}) SimVar
func SimVarComReceiveAll(args ...interface{}) SimVar
func SimVarComRecieveAll(args ...interface{}) SimVar
func SimVarComStandbyFrequency(args ...interface{}) SimVar
func SimVarComStatus(args ...interface{}) SimVar
func SimVarComTest(args ...interface{}) SimVar
func SimVarComTransmit(args ...interface{}) SimVar
func SimVarConcordeNoseAngle(args ...interface{}) SimVar
func SimVarConcordeVisorNoseHandle(args ...interface{}) SimVar
func SimVarConcordeVisorPositionPercent(args ...interface{}) SimVar
func SimVarCrashFlag(args ...interface{}) SimVar
func SimVarCrashSequence(args ...interface{}) SimVar
func SimVarDecisionAltitudeMsl(args ...interface{}) SimVar
func SimVarDecisionHeight(args ...interface{}) SimVar
func SimVarDeltaHeadingRate(args ...interface{}) SimVar
func SimVarDesignSpeedVc(args ...interface{}) SimVar
func SimVarDesignSpeedVs0(args ...interface{}) SimVar
func SimVarDesignSpeedVs1(args ...interface{}) SimVar
func SimVarDiskBankAngle(args ...interface{}) SimVar
func SimVarDiskBankPct(args ...interface{}) SimVar
func SimVarDiskConingPct(args ...interface{}) SimVar
func SimVarDiskPitchAngle(args ...interface{}) SimVar
func SimVarDiskPitchPct(args ...interface{}) SimVar
func SimVarDmeSound(args ...interface{}) SimVar
func SimVarDroppableObjectsCount(args ...interface{}) SimVar
func SimVarDroppableObjectsType(args ...interface{}) SimVar
func SimVarDroppableObjectsUiName(args ...interface{}) SimVar
func SimVarDynamicPressure(args ...interface{}) SimVar
func SimVarElectricalAvionicsBusAmps(args ...interface{}) SimVar
func SimVarElectricalAvionicsBusVoltage(args ...interface{}) SimVar
func SimVarElectricalBatteryBusAmps(args ...interface{}) SimVar
func SimVarElectricalBatteryBusVoltage(args ...interface{}) SimVar
func SimVarElectricalBatteryLoad(args ...interface{}) SimVar
func SimVarElectricalBatteryVoltage(args ...interface{}) SimVar
func SimVarElectricalGenaltBusAmps(args ...interface{}) SimVar
func SimVarElectricalGenaltBusVoltage(args ...interface{}) SimVar
func SimVarElectricalHotBatteryBusAmps(args ...interface{}) SimVar
func SimVarElectricalHotBatteryBusVoltage(args ...interface{}) SimVar
func SimVarElectricalMainBusAmps(args ...interface{}) SimVar
func SimVarElectricalMainBusVoltage(args ...interface{}) SimVar
func SimVarElectricalMasterBattery(args ...interface{}) SimVar
func SimVarElectricalOldChargingAmps(args ...interface{}) SimVar
func SimVarElectricalTotalLoadAmps(args ...interface{}) SimVar
func SimVarElevatorDeflection(args ...interface{}) SimVar
func SimVarElevatorDeflectionPct(args ...interface{}) SimVar
func SimVarElevatorPosition(args ...interface{}) SimVar
func SimVarElevatorTrimIndicator(args ...interface{}) SimVar
func SimVarElevatorTrimPct(args ...interface{}) SimVar
func SimVarElevatorTrimPosition(args ...interface{}) SimVar
func SimVarElevonDeflection(args ...interface{}) SimVar
func SimVarEmptyWeight(args ...interface{}) SimVar
func SimVarEmptyWeightCrossCoupledMoi(args ...interface{}) SimVar
func SimVarEmptyWeightPitchMoi(args ...interface{}) SimVar
func SimVarEmptyWeightRollMoi(args ...interface{}) SimVar
func SimVarEmptyWeightYawMoi(args ...interface{}) SimVar
func SimVarEngAntiIce(args ...interface{}) SimVar
func SimVarEngCombustion(args ...interface{}) SimVar
func SimVarEngCylinderHeadTemperature(args ...interface{}) SimVar
func SimVarEngElectricalLoad(args ...interface{}) SimVar
func SimVarEngExhaustGasTemperature(args ...interface{}) SimVar
func SimVarEngExhaustGasTemperatureGes(args ...interface{}) SimVar
func SimVarEngFailed(args ...interface{}) SimVar
func SimVarEngFuelFlowBugPosition(args ...interface{}) SimVar
func SimVarEngFuelFlowPph(args ...interface{}) SimVar
func SimVarEngFuelPressure(args ...interface{}) SimVar
func SimVarEngHydraulicPressure(args ...interface{}) SimVar
func SimVarEngHydraulicQuantity(args ...interface{}) SimVar
func SimVarEngManifoldPressure(args ...interface{}) SimVar
func SimVarEngMaxRpm(args ...interface{}) SimVar
func SimVarEngN1Rpm(args ...interface{}) SimVar
func SimVarEngN2Rpm(args ...interface{}) SimVar
func SimVarEngOilPressure(args ...interface{}) SimVar
func SimVarEngOilQuantity(args ...interface{}) SimVar
func SimVarEngOilTemperature(args ...interface{}) SimVar
func SimVarEngOnFire(args ...interface{}) SimVar
func SimVarEngPressureRatio(args ...interface{}) SimVar
func SimVarEngRotorRpm(args ...interface{}) SimVar
func SimVarEngRpmAnimationPercent(args ...interface{}) SimVar
func SimVarEngRpmScaler(args ...interface{}) SimVar
func SimVarEngTorque(args ...interface{}) SimVar
func SimVarEngTorquePercent(args ...interface{}) SimVar
func SimVarEngTransmissionPressure(args ...interface{}) SimVar
func SimVarEngTransmissionTemperature(args ...interface{}) SimVar
func SimVarEngTurbineTemperature(args ...interface{}) SimVar
func SimVarEngVibration(args ...interface{}) SimVar
func SimVarEngineControlSelect(args ...interface{}) SimVar
func SimVarEngineMixureAvailable(args ...interface{}) SimVar
func SimVarEngineType(args ...interface{}) SimVar
func SimVarEstimatedCruiseSpeed(args ...interface{}) SimVar
func SimVarEstimatedFuelFlow(args ...interface{}) SimVar
func SimVarExitOpen(args ...interface{}) SimVar
func SimVarExitPosx(args ...interface{}) SimVar
func SimVarExitPosy(args ...interface{}) SimVar
func SimVarExitPosz(args ...interface{}) SimVar
func SimVarExitType(args ...interface{}) SimVar
func SimVarEyepointPosition(args ...interface{}) SimVar
func SimVarFireBottleDischarged(args ...interface{}) SimVar
func SimVarFireBottleSwitch(args ...interface{}) SimVar
func SimVarFlapDamageBySpeed(args ...interface{}) SimVar
func SimVarFlapSpeedExceeded(args ...interface{}) SimVar
func SimVarFlapsAvailable(args ...interface{}) SimVar
func SimVarFlapsHandleIndex(args ...interface{}) SimVar
func SimVarFlapsHandlePercent(args ...interface{}) SimVar
func SimVarFlapsNumHandlePositions(args ...interface{}) SimVar
func SimVarFlyByWireElacFailed(args ...interface{}) SimVar
func SimVarFlyByWireElacSwitch(args ...interface{}) SimVar
func SimVarFlyByWireFacFailed(args ...interface{}) SimVar
func SimVarFlyByWireFacSwitch(args ...interface{}) SimVar
func SimVarFlyByWireSecFailed(args ...interface{}) SimVar
func SimVarFlyByWireSecSwitch(args ...interface{}) SimVar
func SimVarFoldingWingLeftPercent(args ...interface{}) SimVar
func SimVarFoldingWingRightPercent(args ...interface{}) SimVar
func SimVarFuelCrossFeed(args ...interface{}) SimVar
func SimVarFuelLeftCapacity(args ...interface{}) SimVar
func SimVarFuelLeftQuantity(args ...interface{}) SimVar
func SimVarFuelRightCapacity(args ...interface{}) SimVar
func SimVarFuelRightQuantity(args ...interface{}) SimVar
func SimVarFuelSelectedQuantity(args ...interface{}) SimVar
func SimVarFuelSelectedQuantityPercent(args ...interface{}) SimVar
func SimVarFuelSelectedTransferMode(args ...interface{}) SimVar
func SimVarFuelTankCenter2Capacity(args ...interface{}) SimVar
func SimVarFuelTankCenter2Level(args ...interface{}) SimVar
func SimVarFuelTankCenter2Quantity(args ...interface{}) SimVar
func SimVarFuelTankCenter3Capacity(args ...interface{}) SimVar
func SimVarFuelTankCenter3Level(args ...interface{}) SimVar
func SimVarFuelTankCenter3Quantity(args ...interface{}) SimVar
func SimVarFuelTankCenterCapacity(args ...interface{}) SimVar
func SimVarFuelTankCenterLevel(args ...interface{}) SimVar
func SimVarFuelTankCenterQuantity(args ...interface{}) SimVar
func SimVarFuelTankExternal1Capacity(args ...interface{}) SimVar
func SimVarFuelTankExternal1Level(args ...interface{}) SimVar
func SimVarFuelTankExternal1Quantity(args ...interface{}) SimVar
func SimVarFuelTankExternal2Capacity(args ...interface{}) SimVar
func SimVarFuelTankExternal2Level(args ...interface{}) SimVar
func SimVarFuelTankExternal2Quantity(args ...interface{}) SimVar
func SimVarFuelTankLeftAuxCapacity(args ...interface{}) SimVar
func SimVarFuelTankLeftAuxLevel(args ...interface{}) SimVar
func SimVarFuelTankLeftAuxQuantity(args ...interface{}) SimVar
func SimVarFuelTankLeftMainCapacity(args ...interface{}) SimVar
func SimVarFuelTankLeftMainLevel(args ...interface{}) SimVar
func SimVarFuelTankLeftMainQuantity(args ...interface{}) SimVar
func SimVarFuelTankLeftTipCapacity(args ...interface{}) SimVar
func SimVarFuelTankLeftTipLevel(args ...interface{}) SimVar
func SimVarFuelTankLeftTipQuantity(args ...interface{}) SimVar
func SimVarFuelTankRightAuxCapacity(args ...interface{}) SimVar
func SimVarFuelTankRightAuxLevel(args ...interface{}) SimVar
func SimVarFuelTankRightAuxQuantity(args ...interface{}) SimVar
func SimVarFuelTankRightMainCapacity(args ...interface{}) SimVar
func SimVarFuelTankRightMainLevel(args ...interface{}) SimVar
func SimVarFuelTankRightMainQuantity(args ...interface{}) SimVar
func SimVarFuelTankRightTipCapacity(args ...interface{}) SimVar
func SimVarFuelTankRightTipLevel(args ...interface{}) SimVar
func SimVarFuelTankRightTipQuantity(args ...interface{}) SimVar
func SimVarFuelTankSelector(args ...interface{}) SimVar
func SimVarFuelTotalCapacity(args ...interface{}) SimVar
func SimVarFuelTotalQuantity(args ...interface{}) SimVar
func SimVarFuelTotalQuantityWeight(args ...interface{}) SimVar
func SimVarFuelWeightPerGallon(args ...interface{}) SimVar
func SimVarFullThrottleThrustToWeightRatio(args ...interface{}) SimVar
func SimVarGForce(args ...interface{}) SimVar
func SimVarGearAnimationPosition(args ...interface{}) SimVar
func SimVarGearAuxPosition(args ...interface{}) SimVar
func SimVarGearAuxSteerAngle(args ...interface{}) SimVar
func SimVarGearAuxSteerAnglePct(args ...interface{}) SimVar
func SimVarGearCenterPosition(args ...interface{}) SimVar
func SimVarGearCenterSteerAngle(args ...interface{}) SimVar
func SimVarGearCenterSteerAnglePct(args ...interface{}) SimVar
func SimVarGearDamageBySpeed(args ...interface{}) SimVar
func SimVarGearEmergencyHandlePosition(args ...interface{}) SimVar
func SimVarGearHandlePosition(args ...interface{}) SimVar
func SimVarGearHydraulicPressure(args ...interface{}) SimVar
func SimVarGearLeftPosition(args ...interface{}) SimVar
func SimVarGearLeftSteerAngle(args ...interface{}) SimVar
func SimVarGearLeftSteerAnglePct(args ...interface{}) SimVar
func SimVarGearPosition(args ...interface{}) SimVar
func SimVarGearRightPosition(args ...interface{}) SimVar
func SimVarGearRightSteerAngle(args ...interface{}) SimVar
func SimVarGearRightSteerAnglePct(args ...interface{}) SimVar
func SimVarGearSpeedExceeded(args ...interface{}) SimVar
func SimVarGearSteerAngle(args ...interface{}) SimVar
func SimVarGearSteerAnglePct(args ...interface{}) SimVar
func SimVarGearTailPosition(args ...interface{}) SimVar
func SimVarGearTotalPctExtended(args ...interface{}) SimVar
func SimVarGearWarning(args ...interface{}) SimVar
func SimVarGeneralEngAntiIcePosition(args ...interface{}) SimVar
func SimVarGeneralEngCombustion(args ...interface{}) SimVar
func SimVarGeneralEngCombustionSoundPercent(args ...interface{}) SimVar
func SimVarGeneralEngDamagePercent(args ...interface{}) SimVar
func SimVarGeneralEngElapsedTime(args ...interface{}) SimVar
func SimVarGeneralEngExhaustGasTemperature(args ...interface{}) SimVar
func SimVarGeneralEngFailed(args ...interface{}) SimVar
func SimVarGeneralEngFuelPressure(args ...interface{}) SimVar
func SimVarGeneralEngFuelPumpOn(args ...interface{}) SimVar
func SimVarGeneralEngFuelPumpSwitch(args ...interface{}) SimVar
func SimVarGeneralEngFuelUsedSinceStart(args ...interface{}) SimVar
func SimVarGeneralEngFuelValve(args ...interface{}) SimVar
func SimVarGeneralEngGeneratorActive(args ...interface{}) SimVar
func SimVarGeneralEngGeneratorSwitch(args ...interface{}) SimVar
func SimVarGeneralEngMasterAlternator(args ...interface{}) SimVar
func SimVarGeneralEngMaxReachedRpm(args ...interface{}) SimVar
func SimVarGeneralEngMixtureLeverPosition(args ...interface{}) SimVar
func SimVarGeneralEngOilLeakedPercent(args ...interface{}) SimVar
func SimVarGeneralEngOilPressure(args ...interface{}) SimVar
func SimVarGeneralEngOilTemperature(args ...interface{}) SimVar
func SimVarGeneralEngPctMaxRpm(args ...interface{}) SimVar
func SimVarGeneralEngPropellerLeverPosition(args ...interface{}) SimVar
func SimVarGeneralEngRpm(args ...interface{}) SimVar
func SimVarGeneralEngStarter(args ...interface{}) SimVar
func SimVarGeneralEngStarterActive(args ...interface{}) SimVar
func SimVarGeneralEngThrottleLeverPosition(args ...interface{}) SimVar
func SimVarGenerator(iFace interface{}) ([]SimVar, error)
func SimVarGpsApproachAirportId(args ...interface{}) SimVar
func SimVarGpsApproachApproachId(args ...interface{}) SimVar
func SimVarGpsApproachApproachIndex(args ...interface{}) SimVar
func SimVarGpsApproachApproachType(args ...interface{}) SimVar
func SimVarGpsApproachIsFinal(args ...interface{}) SimVar
func SimVarGpsApproachIsMissed(args ...interface{}) SimVar
func SimVarGpsApproachIsWpRunway(args ...interface{}) SimVar
func SimVarGpsApproachMode(args ...interface{}) SimVar
func SimVarGpsApproachSegmentType(args ...interface{}) SimVar
func SimVarGpsApproachTimezoneDeviation(args ...interface{}) SimVar
func SimVarGpsApproachTransitionId(args ...interface{}) SimVar
func SimVarGpsApproachTransitionIndex(args ...interface{}) SimVar
func SimVarGpsApproachWpCount(args ...interface{}) SimVar
func SimVarGpsApproachWpIndex(args ...interface{}) SimVar
func SimVarGpsApproachWpType(args ...interface{}) SimVar
func SimVarGpsCourseToSteer(args ...interface{}) SimVar
func SimVarGpsDrivesNav1(args ...interface{}) SimVar
func SimVarGpsEta(args ...interface{}) SimVar
func SimVarGpsEte(args ...interface{}) SimVar
func SimVarGpsFlightPlanWpCount(args ...interface{}) SimVar
func SimVarGpsFlightPlanWpIndex(args ...interface{}) SimVar
func SimVarGpsGroundMagneticTrack(args ...interface{}) SimVar
func SimVarGpsGroundSpeed(args ...interface{}) SimVar
func SimVarGpsGroundTrueHeading(args ...interface{}) SimVar
func SimVarGpsGroundTrueTrack(args ...interface{}) SimVar
func SimVarGpsIsActiveFlightPlan(args ...interface{}) SimVar
func SimVarGpsIsActiveWayPoint(args ...interface{}) SimVar
func SimVarGpsIsActiveWpLocked(args ...interface{}) SimVar
func SimVarGpsIsApproachActive(args ...interface{}) SimVar
func SimVarGpsIsApproachLoaded(args ...interface{}) SimVar
func SimVarGpsIsArrived(args ...interface{}) SimVar
func SimVarGpsIsDirecttoFlightplan(args ...interface{}) SimVar
func SimVarGpsMagvar(args ...interface{}) SimVar
func SimVarGpsPositionAlt(args ...interface{}) SimVar
func SimVarGpsPositionLat(args ...interface{}) SimVar
func SimVarGpsPositionLon(args ...interface{}) SimVar
func SimVarGpsTargetAltitude(args ...interface{}) SimVar
func SimVarGpsTargetDistance(args ...interface{}) SimVar
func SimVarGpsWpBearing(args ...interface{}) SimVar
func SimVarGpsWpCrossTrk(args ...interface{}) SimVar
func SimVarGpsWpDesiredTrack(args ...interface{}) SimVar
func SimVarGpsWpDistance(args ...interface{}) SimVar
func SimVarGpsWpEta(args ...interface{}) SimVar
func SimVarGpsWpEte(args ...interface{}) SimVar
func SimVarGpsWpNextAlt(args ...interface{}) SimVar
func SimVarGpsWpNextId(args ...interface{}) SimVar
func SimVarGpsWpNextLat(args ...interface{}) SimVar
func SimVarGpsWpNextLon(args ...interface{}) SimVar
func SimVarGpsWpPrevAlt(args ...interface{}) SimVar
func SimVarGpsWpPrevId(args ...interface{}) SimVar
func SimVarGpsWpPrevLat(args ...interface{}) SimVar
func SimVarGpsWpPrevLon(args ...interface{}) SimVar
func SimVarGpsWpPrevValid(args ...interface{}) SimVar
func SimVarGpsWpTrackAngleError(args ...interface{}) SimVar
func SimVarGpsWpTrueBearing(args ...interface{}) SimVar
func SimVarGpsWpTrueReqHdg(args ...interface{}) SimVar
func SimVarGpsWpVerticalSpeed(args ...interface{}) SimVar
func SimVarGpwsSystemActive(args ...interface{}) SimVar
func SimVarGpwsWarning(args ...interface{}) SimVar
func SimVarGroundAltitude(args ...interface{}) SimVar
func SimVarGroundVelocity(args ...interface{}) SimVar
func SimVarGyroDriftError(args ...interface{}) SimVar
func SimVarHeadingIndicator(args ...interface{}) SimVar
func SimVarHoldbackBarInstalled(args ...interface{}) SimVar
func SimVarHsiBearing(args ...interface{}) SimVar
func SimVarHsiBearingValid(args ...interface{}) SimVar
func SimVarHsiCdiNeedle(args ...interface{}) SimVar
func SimVarHsiCdiNeedleValid(args ...interface{}) SimVar
func SimVarHsiDistance(args ...interface{}) SimVar
func SimVarHsiGsiNeedle(args ...interface{}) SimVar
func SimVarHsiGsiNeedleValid(args ...interface{}) SimVar
func SimVarHsiHasLocalizer(args ...interface{}) SimVar
func SimVarHsiSpeed(args ...interface{}) SimVar
func SimVarHsiStationIdent(args ...interface{}) SimVar
func SimVarHsiTfFlags(args ...interface{}) SimVar
func SimVarHydraulicPressure(args ...interface{}) SimVar
func SimVarHydraulicReservoirPercent(args ...interface{}) SimVar
func SimVarHydraulicSwitch(args ...interface{}) SimVar
func SimVarHydraulicSystemIntegrity(args ...interface{}) SimVar
func SimVarIncidenceAlpha(args ...interface{}) SimVar
func SimVarIncidenceBeta(args ...interface{}) SimVar
func SimVarIndicatedAltitude(args ...interface{}) SimVar
func SimVarInductorCompassHeadingRef(args ...interface{}) SimVar
func SimVarInductorCompassPercentDeviation(args ...interface{}) SimVar
func SimVarInnerMarker(args ...interface{}) SimVar
func SimVarInnerMarkerLatlonalt(args ...interface{}) SimVar
func SimVarIsAltitudeFreezeOn(args ...interface{}) SimVar
func SimVarIsAttachedToSling(args ...interface{}) SimVar
func SimVarIsAttitudeFreezeOn(args ...interface{}) SimVar
func SimVarIsGearFloats(args ...interface{}) SimVar
func SimVarIsGearRetractable(args ...interface{}) SimVar
func SimVarIsGearSkids(args ...interface{}) SimVar
func SimVarIsGearSkis(args ...interface{}) SimVar
func SimVarIsGearWheels(args ...interface{}) SimVar
func SimVarIsLatitudeLongitudeFreezeOn(args ...interface{}) SimVar
func SimVarIsSlewActive(args ...interface{}) SimVar
func SimVarIsSlewAllowed(args ...interface{}) SimVar
func SimVarIsTailDragger(args ...interface{}) SimVar
func SimVarIsUserSim(args ...interface{}) SimVar
func SimVarKohlsmanSettingHg(args ...interface{}) SimVar
func SimVarKohlsmanSettingMb(args ...interface{}) SimVar
func SimVarLandingLightPbh(args ...interface{}) SimVar
func SimVarLaunchbarPosition(args ...interface{}) SimVar
func SimVarLeadingEdgeFlapsLeftAngle(args ...interface{}) SimVar
func SimVarLeadingEdgeFlapsLeftPercent(args ...interface{}) SimVar
func SimVarLeadingEdgeFlapsRightAngle(args ...interface{}) SimVar
func SimVarLeadingEdgeFlapsRightPercent(args ...interface{}) SimVar
func SimVarLeftWheelRotationAngle(args ...interface{}) SimVar
func SimVarLeftWheelRpm(args ...interface{}) SimVar
func SimVarLightBeacon(args ...interface{}) SimVar
func SimVarLightBeaconOn(args ...interface{}) SimVar
func SimVarLightBrakeOn(args ...interface{}) SimVar
func SimVarLightCabin(args ...interface{}) SimVar
func SimVarLightCabinOn(args ...interface{}) SimVar
func SimVarLightHeadOn(args ...interface{}) SimVar
func SimVarLightLanding(args ...interface{}) SimVar
func SimVarLightLandingOn(args ...interface{}) SimVar
func SimVarLightLogo(args ...interface{}) SimVar
func SimVarLightLogoOn(args ...interface{}) SimVar
func SimVarLightNav(args ...interface{}) SimVar
func SimVarLightNavOn(args ...interface{}) SimVar
func SimVarLightOnStates(args ...interface{}) SimVar
func SimVarLightPanel(args ...interface{}) SimVar
func SimVarLightPanelOn(args ...interface{}) SimVar
func SimVarLightRecognition(args ...interface{}) SimVar
func SimVarLightRecognitionOn(args ...interface{}) SimVar
func SimVarLightStates(args ...interface{}) SimVar
func SimVarLightStrobe(args ...interface{}) SimVar
func SimVarLightStrobeOn(args ...interface{}) SimVar
func SimVarLightTaxi(args ...interface{}) SimVar
func SimVarLightTaxiOn(args ...interface{}) SimVar
func SimVarLightWing(args ...interface{}) SimVar
func SimVarLightWingOn(args ...interface{}) SimVar
func SimVarLinearClAlpha(args ...interface{}) SimVar
func SimVarLocalDayOfMonth(args ...interface{}) SimVar
func SimVarLocalDayOfWeek(args ...interface{}) SimVar
func SimVarLocalDayOfYear(args ...interface{}) SimVar
func SimVarLocalMonthOfYear(args ...interface{}) SimVar
func SimVarLocalTime(args ...interface{}) SimVar
func SimVarLocalYear(args ...interface{}) SimVar
func SimVarMachMaxOperate(args ...interface{}) SimVar
func SimVarMagneticCompass(args ...interface{}) SimVar
func SimVarMagvar(args ...interface{}) SimVar
func SimVarManualFuelPumpHandle(args ...interface{}) SimVar
func SimVarManualInstrumentLights(args ...interface{}) SimVar
func SimVarMarkerBeaconState(args ...interface{}) SimVar
func SimVarMarkerSound(args ...interface{}) SimVar
func SimVarMasterIgnitionSwitch(args ...interface{}) SimVar
func SimVarMaxGForce(args ...interface{}) SimVar
func SimVarMaxGrossWeight(args ...interface{}) SimVar
func SimVarMaxRatedEngineRpm(args ...interface{}) SimVar
func SimVarMiddleMarker(args ...interface{}) SimVar
func SimVarMiddleMarkerLatlonalt(args ...interface{}) SimVar
func SimVarMinDragVelocity(args ...interface{}) SimVar
func SimVarMinGForce(args ...interface{}) SimVar
func SimVarNavActiveFrequency(args ...interface{}) SimVar
func SimVarNavAvailable(args ...interface{}) SimVar
func SimVarNavBackCourseFlags(args ...interface{}) SimVar
func SimVarNavCdi(args ...interface{}) SimVar
func SimVarNavCodes(args ...interface{}) SimVar
func SimVarNavDme(args ...interface{}) SimVar
func SimVarNavDmeLatlonalt(args ...interface{}) SimVar
func SimVarNavDmespeed(args ...interface{}) SimVar
func SimVarNavGlideSlope(args ...interface{}) SimVar
func SimVarNavGlideSlopeError(args ...interface{}) SimVar
func SimVarNavGsFlag(args ...interface{}) SimVar
func SimVarNavGsLatlonalt(args ...interface{}) SimVar
func SimVarNavGsLlaf64(args ...interface{}) SimVar
func SimVarNavGsi(args ...interface{}) SimVar
func SimVarNavHasDme(args ...interface{}) SimVar
func SimVarNavHasGlideSlope(args ...interface{}) SimVar
func SimVarNavHasLocalizer(args ...interface{}) SimVar
func SimVarNavHasNav(args ...interface{}) SimVar
func SimVarNavIdent(args ...interface{}) SimVar
func SimVarNavLocalizer(args ...interface{}) SimVar
func SimVarNavMagvar(args ...interface{}) SimVar
func SimVarNavName(args ...interface{}) SimVar
func SimVarNavObs(args ...interface{}) SimVar
func SimVarNavRadial(args ...interface{}) SimVar
func SimVarNavRadialError(args ...interface{}) SimVar
func SimVarNavRawGlideSlope(args ...interface{}) SimVar
func SimVarNavRelativeBearingToStation(args ...interface{}) SimVar
func SimVarNavSignal(args ...interface{}) SimVar
func SimVarNavSound(args ...interface{}) SimVar
func SimVarNavStandbyFrequency(args ...interface{}) SimVar
func SimVarNavTofrom(args ...interface{}) SimVar
func SimVarNavVorLatlonalt(args ...interface{}) SimVar
func SimVarNavVorLlaf64(args ...interface{}) SimVar
func SimVarNumFuelSelectors(args ...interface{}) SimVar
func SimVarNumberOfCatapults(args ...interface{}) SimVar
func SimVarNumberOfEngines(args ...interface{}) SimVar
func SimVarOuterMarker(args ...interface{}) SimVar
func SimVarOuterMarkerLatlonalt(args ...interface{}) SimVar
func SimVarOverspeedWarning(args ...interface{}) SimVar
func SimVarPanelAntiIceSwitch(args ...interface{}) SimVar
func SimVarPanelAutoFeatherSwitch(args ...interface{}) SimVar
func SimVarPartialPanelAdf(args ...interface{}) SimVar
func SimVarPartialPanelAirspeed(args ...interface{}) SimVar
func SimVarPartialPanelAltimeter(args ...interface{}) SimVar
func SimVarPartialPanelAttitude(args ...interface{}) SimVar
func SimVarPartialPanelAvionics(args ...interface{}) SimVar
func SimVarPartialPanelComm(args ...interface{}) SimVar
func SimVarPartialPanelCompass(args ...interface{}) SimVar
func SimVarPartialPanelElectrical(args ...interface{}) SimVar
func SimVarPartialPanelEngine(args ...interface{}) SimVar
func SimVarPartialPanelFuelIndicator(args ...interface{}) SimVar
func SimVarPartialPanelHeading(args ...interface{}) SimVar
func SimVarPartialPanelNav(args ...interface{}) SimVar
func SimVarPartialPanelPitot(args ...interface{}) SimVar
func SimVarPartialPanelTransponder(args ...interface{}) SimVar
func SimVarPartialPanelTurnCoordinator(args ...interface{}) SimVar
func SimVarPartialPanelVacuum(args ...interface{}) SimVar
func SimVarPartialPanelVerticalVelocity(args ...interface{}) SimVar
func SimVarPayloadStationCount(args ...interface{}) SimVar
func SimVarPayloadStationName(args ...interface{}) SimVar
func SimVarPayloadStationNumSimobjects(args ...interface{}) SimVar
func SimVarPayloadStationObject(args ...interface{}) SimVar
func SimVarPayloadStationWeight(args ...interface{}) SimVar
func SimVarPitotHeat(args ...interface{}) SimVar
func SimVarPitotIcePct(args ...interface{}) SimVar
func SimVarPlaneAltAboveGround(args ...interface{}) SimVar
func SimVarPlaneAltitude(args ...interface{}) SimVar
func SimVarPlaneBankDegrees(args ...interface{}) SimVar
func SimVarPlaneHeadingDegreesGyro(args ...interface{}) SimVar
func SimVarPlaneHeadingDegreesMagnetic(args ...interface{}) SimVar
func SimVarPlaneHeadingDegreesTrue(args ...interface{}) SimVar
func SimVarPlaneLatitude(args ...interface{}) SimVar
func SimVarPlaneLongitude(args ...interface{}) SimVar
func SimVarPlanePitchDegrees(args ...interface{}) SimVar
func SimVarPressureAltitude(args ...interface{}) SimVar
func SimVarPressurizationCabinAltitude(args ...interface{}) SimVar
func SimVarPressurizationCabinAltitudeGoal(args ...interface{}) SimVar
func SimVarPressurizationCabinAltitudeRate(args ...interface{}) SimVar
func SimVarPressurizationDumpSwitch(args ...interface{}) SimVar
func SimVarPressurizationPressureDifferential(args ...interface{}) SimVar
func SimVarPropAutoCruiseActive(args ...interface{}) SimVar
func SimVarPropAutoFeatherArmed(args ...interface{}) SimVar
func SimVarPropBeta(args ...interface{}) SimVar
func SimVarPropBetaMax(args ...interface{}) SimVar
func SimVarPropBetaMin(args ...interface{}) SimVar
func SimVarPropBetaMinReverse(args ...interface{}) SimVar
func SimVarPropDeiceSwitch(args ...interface{}) SimVar
func SimVarPropFeatherSwitch(args ...interface{}) SimVar
func SimVarPropFeathered(args ...interface{}) SimVar
func SimVarPropFeatheringInhibit(args ...interface{}) SimVar
func SimVarPropMaxRpmPercent(args ...interface{}) SimVar
func SimVarPropRotationAngle(args ...interface{}) SimVar
func SimVarPropRpm(args ...interface{}) SimVar
func SimVarPropSyncActive(args ...interface{}) SimVar
func SimVarPropSyncDeltaLever(args ...interface{}) SimVar
func SimVarPropThrust(args ...interface{}) SimVar
func SimVarPushbackAngle(args ...interface{}) SimVar
func SimVarPushbackContactx(args ...interface{}) SimVar
func SimVarPushbackContacty(args ...interface{}) SimVar
func SimVarPushbackContactz(args ...interface{}) SimVar
func SimVarPushbackState(args ...interface{}) SimVar
func SimVarPushbackWait(args ...interface{}) SimVar
func SimVarRadInsSwitch(args ...interface{}) SimVar
func SimVarRadioHeight(args ...interface{}) SimVar
func SimVarRealism(args ...interface{}) SimVar
func SimVarRealismCrashDetection(args ...interface{}) SimVar
func SimVarRealismCrashWithOthers(args ...interface{}) SimVar
func SimVarRecipCarburetorTemperature(args ...interface{}) SimVar
func SimVarRecipEngAlternateAirPosition(args ...interface{}) SimVar
func SimVarRecipEngAntidetonationTankMaxQuantity(args ...interface{}) SimVar
func SimVarRecipEngAntidetonationTankQuantity(args ...interface{}) SimVar
func SimVarRecipEngAntidetonationTankValve(args ...interface{}) SimVar
func SimVarRecipEngBrakePower(args ...interface{}) SimVar
func SimVarRecipEngCoolantReservoirPercent(args ...interface{}) SimVar
func SimVarRecipEngCowlFlapPosition(args ...interface{}) SimVar
func SimVarRecipEngCylinderHeadTemperature(args ...interface{}) SimVar
func SimVarRecipEngCylinderHealth(args ...interface{}) SimVar
func SimVarRecipEngDetonating(args ...interface{}) SimVar
func SimVarRecipEngEmergencyBoostActive(args ...interface{}) SimVar
func SimVarRecipEngEmergencyBoostElapsedTime(args ...interface{}) SimVar
func SimVarRecipEngFuelAvailable(args ...interface{}) SimVar
func SimVarRecipEngFuelFlow(args ...interface{}) SimVar
func SimVarRecipEngFuelNumberTanksUsed(args ...interface{}) SimVar
func SimVarRecipEngFuelTankSelector(args ...interface{}) SimVar
func SimVarRecipEngFuelTanksUsed(args ...interface{}) SimVar
func SimVarRecipEngLeftMagneto(args ...interface{}) SimVar
func SimVarRecipEngManifoldPressure(args ...interface{}) SimVar
func SimVarRecipEngNitrousTankMaxQuantity(args ...interface{}) SimVar
func SimVarRecipEngNitrousTankQuantity(args ...interface{}) SimVar
func SimVarRecipEngNitrousTankValve(args ...interface{}) SimVar
func SimVarRecipEngNumCylinders(args ...interface{}) SimVar
func SimVarRecipEngNumCylindersFailed(args ...interface{}) SimVar
func SimVarRecipEngPrimer(args ...interface{}) SimVar
func SimVarRecipEngRadiatorTemperature(args ...interface{}) SimVar
func SimVarRecipEngRightMagneto(args ...interface{}) SimVar
func SimVarRecipEngStarterTorque(args ...interface{}) SimVar
func SimVarRecipEngTurbineInletTemperature(args ...interface{}) SimVar
func SimVarRecipEngTurbochargerFailed(args ...interface{}) SimVar
func SimVarRecipEngWastegatePosition(args ...interface{}) SimVar
func SimVarRecipMixtureRatio(args ...interface{}) SimVar
func SimVarRelativeWindVelocityBodyX(args ...interface{}) SimVar
func SimVarRelativeWindVelocityBodyY(args ...interface{}) SimVar
func SimVarRelativeWindVelocityBodyZ(args ...interface{}) SimVar
func SimVarRetractFloatSwitch(args ...interface{}) SimVar
func SimVarRetractLeftFloatExtended(args ...interface{}) SimVar
func SimVarRetractRightFloatExtended(args ...interface{}) SimVar
func SimVarRightWheelRotationAngle(args ...interface{}) SimVar
func SimVarRightWheelRpm(args ...interface{}) SimVar
func SimVarRotationVelocityBodyX(args ...interface{}) SimVar
func SimVarRotationVelocityBodyY(args ...interface{}) SimVar
func SimVarRotationVelocityBodyZ(args ...interface{}) SimVar
func SimVarRotorBrakeActive(args ...interface{}) SimVar
func SimVarRotorBrakeHandlePos(args ...interface{}) SimVar
func SimVarRotorChipDetected(args ...interface{}) SimVar
func SimVarRotorClutchActive(args ...interface{}) SimVar
func SimVarRotorClutchSwitchPos(args ...interface{}) SimVar
func SimVarRotorGovActive(args ...interface{}) SimVar
func SimVarRotorGovSwitchPos(args ...interface{}) SimVar
func SimVarRotorLateralTrimPct(args ...interface{}) SimVar
func SimVarRotorRotationAngle(args ...interface{}) SimVar
func SimVarRotorRpmPct(args ...interface{}) SimVar
func SimVarRotorTemperature(args ...interface{}) SimVar
func SimVarRudderDeflection(args ...interface{}) SimVar
func SimVarRudderDeflectionPct(args ...interface{}) SimVar
func SimVarRudderPedalIndicator(args ...interface{}) SimVar
func SimVarRudderPedalPosition(args ...interface{}) SimVar
func SimVarRudderPosition(args ...interface{}) SimVar
func SimVarRudderTrim(args ...interface{}) SimVar
func SimVarRudderTrimPct(args ...interface{}) SimVar
func SimVarSeaLevelPressure(args ...interface{}) SimVar
func SimVarSelectedDme(args ...interface{}) SimVar
func SimVarSemibodyLoadfactorY(args ...interface{}) SimVar
func SimVarSemibodyLoadfactorYdot(args ...interface{}) SimVar
func SimVarSigmaSqrt(args ...interface{}) SimVar
func SimVarSimDisabled(args ...interface{}) SimVar
func SimVarSimOnGround(args ...interface{}) SimVar
func SimVarSimulatedRadius(args ...interface{}) SimVar
func SimVarSimulationRate(args ...interface{}) SimVar
func SimVarSlingActivePayloadStation(args ...interface{}) SimVar
func SimVarSlingCableBroken(args ...interface{}) SimVar
func SimVarSlingCableExtendedLength(args ...interface{}) SimVar
func SimVarSlingHoistPercentDeployed(args ...interface{}) SimVar
func SimVarSlingHookInPickupMode(args ...interface{}) SimVar
func SimVarSlingObjectAttached(args ...interface{}) SimVar
func SimVarSmokeEnable(args ...interface{}) SimVar
func SimVarSmokesystemAvailable(args ...interface{}) SimVar
func SimVarSpoilerAvailable(args ...interface{}) SimVar
func SimVarSpoilersArmed(args ...interface{}) SimVar
func SimVarSpoilersHandlePosition(args ...interface{}) SimVar
func SimVarSpoilersLeftPosition(args ...interface{}) SimVar
func SimVarSpoilersRightPosition(args ...interface{}) SimVar
func SimVarStallAlpha(args ...interface{}) SimVar
func SimVarStallHornAvailable(args ...interface{}) SimVar
func SimVarStallWarning(args ...interface{}) SimVar
func SimVarStandardAtmTemperature(args ...interface{}) SimVar
func SimVarStaticCgToGround(args ...interface{}) SimVar
func SimVarStaticPitch(args ...interface{}) SimVar
func SimVarSteerInputControl(args ...interface{}) SimVar
func SimVarStrobesAvailable(args ...interface{}) SimVar
func SimVarStructAmbientWind(args ...interface{}) SimVar
func SimVarStructBodyRotationVelocity(args ...interface{}) SimVar
func SimVarStructBodyVelocity(args ...interface{}) SimVar
func SimVarStructEnginePosition(args ...interface{}) SimVar
func SimVarStructEyepointDynamicAngle(args ...interface{}) SimVar
func SimVarStructEyepointDynamicOffset(args ...interface{}) SimVar
func SimVarStructLatlonalt(args ...interface{}) SimVar
func SimVarStructLatlonaltpbh(args ...interface{}) SimVar
func SimVarStructSurfaceRelativeVelocity(args ...interface{}) SimVar
func SimVarStructWorldAcceleration(args ...interface{}) SimVar
func SimVarStructWorldRotationVelocity(args ...interface{}) SimVar
func SimVarStructWorldvelocity(args ...interface{}) SimVar
func SimVarStructuralDeiceSwitch(args ...interface{}) SimVar
func SimVarStructuralIcePct(args ...interface{}) SimVar
func SimVarSuctionPressure(args ...interface{}) SimVar
func SimVarSurfaceCondition(args ...interface{}) SimVar
func SimVarSurfaceInfoValid(args ...interface{}) SimVar
func SimVarSurfaceType(args ...interface{}) SimVar
func SimVarTailhookPosition(args ...interface{}) SimVar
func SimVarTailwheelLockOn(args ...interface{}) SimVar
func SimVarThrottleLowerLimit(args ...interface{}) SimVar
func SimVarTimeOfDay(args ...interface{}) SimVar
func SimVarTimeZoneOffset(args ...interface{}) SimVar
func SimVarTitle(args ...interface{}) SimVar
func SimVarToeBrakesAvailable(args ...interface{}) SimVar
func SimVarTotalAirTemperature(args ...interface{}) SimVar
func SimVarTotalVelocity(args ...interface{}) SimVar
func SimVarTotalWeight(args ...interface{}) SimVar
func SimVarTotalWeightCrossCoupledMoi(args ...interface{}) SimVar
func SimVarTotalWeightPitchMoi(args ...interface{}) SimVar
func SimVarTotalWeightRollMoi(args ...interface{}) SimVar
func SimVarTotalWeightYawMoi(args ...interface{}) SimVar
func SimVarTotalWorldVelocity(args ...interface{}) SimVar
func SimVarTowConnection(args ...interface{}) SimVar
func SimVarTowReleaseHandle(args ...interface{}) SimVar
func SimVarTrailingEdgeFlapsLeftAngle(args ...interface{}) SimVar
func SimVarTrailingEdgeFlapsLeftPercent(args ...interface{}) SimVar
func SimVarTrailingEdgeFlapsRightAngle(args ...interface{}) SimVar
func SimVarTrailingEdgeFlapsRightPercent(args ...interface{}) SimVar
func SimVarTransponderAvailable(args ...interface{}) SimVar
func SimVarTransponderCode(args ...interface{}) SimVar
func SimVarTrueAirspeedSelected(args ...interface{}) SimVar
func SimVarTurbEngAfterburner(args ...interface{}) SimVar
func SimVarTurbEngBleedAir(args ...interface{}) SimVar
func SimVarTurbEngCorrectedFf(args ...interface{}) SimVar
func SimVarTurbEngCorrectedN1(args ...interface{}) SimVar
func SimVarTurbEngCorrectedN2(args ...interface{}) SimVar
func SimVarTurbEngFuelAvailable(args ...interface{}) SimVar
func SimVarTurbEngFuelFlowPph(args ...interface{}) SimVar
func SimVarTurbEngIgnitionSwitch(args ...interface{}) SimVar
func SimVarTurbEngItt(args ...interface{}) SimVar
func SimVarTurbEngJetThrust(args ...interface{}) SimVar
func SimVarTurbEngMasterStarterSwitch(args ...interface{}) SimVar
func SimVarTurbEngMaxTorquePercent(args ...interface{}) SimVar
func SimVarTurbEngN1(args ...interface{}) SimVar
func SimVarTurbEngN2(args ...interface{}) SimVar
func SimVarTurbEngNumTanksUsed(args ...interface{}) SimVar
func SimVarTurbEngPressureRatio(args ...interface{}) SimVar
func SimVarTurbEngPrimaryNozzlePercent(args ...interface{}) SimVar
func SimVarTurbEngReverseNozzlePercent(args ...interface{}) SimVar
func SimVarTurbEngTankSelector(args ...interface{}) SimVar
func SimVarTurbEngTanksUsed(args ...interface{}) SimVar
func SimVarTurbEngVibration(args ...interface{}) SimVar
func SimVarTurnCoordinatorBall(args ...interface{}) SimVar
func SimVarTurnIndicatorRate(args ...interface{}) SimVar
func SimVarTurnIndicatorSwitch(args ...interface{}) SimVar
func SimVarTypicalDescentRate(args ...interface{}) SimVar
func SimVarUnitOfMeasure(args ...interface{}) SimVar
func SimVarUnlimitedFuel(args ...interface{}) SimVar
func SimVarUserInputEnabled(args ...interface{}) SimVar
func SimVarVariometerRate(args ...interface{}) SimVar
func SimVarVariometerSwitch(args ...interface{}) SimVar
func SimVarVelocityBodyX(args ...interface{}) SimVar
func SimVarVelocityBodyY(args ...interface{}) SimVar
func SimVarVelocityBodyZ(args ...interface{}) SimVar
func SimVarVelocityWorldX(args ...interface{}) SimVar
func SimVarVelocityWorldY(args ...interface{}) SimVar
func SimVarVelocityWorldZ(args ...interface{}) SimVar
func SimVarVerticalSpeed(args ...interface{}) SimVar
func SimVarVisualModelRadius(args ...interface{}) SimVar
func SimVarWaterBallastValve(args ...interface{}) SimVar
func SimVarWaterLeftRudderExtended(args ...interface{}) SimVar
func SimVarWaterLeftRudderSteerAngle(args ...interface{}) SimVar
func SimVarWaterLeftRudderSteerAnglePct(args ...interface{}) SimVar
func SimVarWaterRightRudderExtended(args ...interface{}) SimVar
func SimVarWaterRightRudderSteerAngle(args ...interface{}) SimVar
func SimVarWaterRightRudderSteerAnglePct(args ...interface{}) SimVar
func SimVarWaterRudderHandlePosition(args ...interface{}) SimVar
func SimVarWheelRotationAngle(args ...interface{}) SimVar
func SimVarWheelRpm(args ...interface{}) SimVar
func SimVarWindshieldRainEffectAvailable(args ...interface{}) SimVar
func SimVarWingArea(args ...interface{}) SimVar
func SimVarWingFlexPct(args ...interface{}) SimVar
func SimVarWingSpan(args ...interface{}) SimVar
func SimVarWiskeyCompassIndicationDegrees(args ...interface{}) SimVar
func SimVarYawStringAngle(args ...interface{}) SimVar
func SimVarYawStringPctExtended(args ...interface{}) SimVar
func SimVarYokeXIndicator(args ...interface{}) SimVar
func SimVarYokeXPosition(args ...interface{}) SimVar
func SimVarYokeYIndicator(args ...interface{}) SimVar
func SimVarYokeYPosition(args ...interface{}) SimVar
func SimVarZeroLiftAlpha(args ...interface{}) SimVar
func SimVarZuluDayOfMonth(args ...interface{}) SimVar
func SimVarZuluDayOfWeek(args ...interface{}) SimVar
func SimVarZuluDayOfYear(args ...interface{}) SimVar
func SimVarZuluMonthOfYear(args ...interface{}) SimVar
func SimVarZuluTime(args ...interface{}) SimVar
func SimVarZuluYear(args ...interface{}) SimVar
func (s *SimVar) GetBool() (bool, error)
func (s *SimVar) GetData() []byte
func (s *SimVar) GetDataLatLonAlt() (*SIMCONNECT_DATA_LATLONALT, error)
func (s *SimVar) GetDataWaypoint() (*SIMCONNECT_DATA_WAYPOINT, error)
func (s *SimVar) GetDataXYZ() (*SIMCONNECT_DATA_XYZ, error)
func (s *SimVar) GetDatumType() uint32
func (s *SimVar) GetDegrees() (float64, error)
func (s *SimVar) GetFloat64() (float64, error)
func (s *SimVar) GetInt() (int, error)
func (s *SimVar) GetSize() int
func (s *SimVar) GetString() string
func (s *SimVar) SetFloat64(f float64)
type SimVarUnit
type SyscallSC
func NewSyscallSC() (*SyscallSC, error)
func (syscallSC *SyscallSC) AICreateEnrouteATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error
func (syscallSC *SyscallSC) AICreateNonATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error
func (syscallSC *SyscallSC) AICreateParkedATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error
func (syscallSC *SyscallSC) AICreateSimulatedObject(hSimConnect uintptr, szContainerTitle uintptr, InitPos uintptr, ...) error
func (syscallSC *SyscallSC) AIReleaseControl(hSimConnect uintptr, ObjectID uintptr, RequestID uintptr) error
func (syscallSC *SyscallSC) AIRemoveObject(hSimConnect uintptr, ObjectID uintptr, RequestID uintptr) error
func (syscallSC *SyscallSC) AISetAircraftFlightPlan(hSimConnect uintptr, ObjectID uintptr, szFlightPlanPath uintptr, ...) error
func (syscallSC *SyscallSC) AddClientEventToNotificationGroup(hSimConnect uintptr, GroupID uintptr, EventID uintptr, bMaskable uintptr) error
func (syscallSC *SyscallSC) AddToClientDataDefinition(hSimConnect uintptr, DefineID uintptr, dwOffset uintptr, dwSizeOrType uintptr, ...) error
func (syscallSC *SyscallSC) AddToDataDefinition(hSimConnect uintptr, DefineID uintptr, DatumName uintptr, UnitsName uintptr, ...) error
func (syscallSC *SyscallSC) CallDispatch(hSimConnect uintptr, pfcnDispatch uintptr, pContext uintptr) error
func (syscallSC *SyscallSC) CameraSetRelative6DOF(hSimConnect uintptr, fDeltaX uintptr, fDeltaY uintptr, fDeltaZ uintptr, ...) error
func (syscallSC *SyscallSC) ClearClientDataDefinition(hSimConnect uintptr, DefineID uintptr) error
func (syscallSC *SyscallSC) ClearDataDefinition(hSimConnect uintptr, DefineID uintptr) error
func (syscallSC *SyscallSC) ClearInputGroup(hSimConnect uintptr, GroupID uintptr) error
func (syscallSC *SyscallSC) ClearNotificationGroup(hSimConnect uintptr, GroupID uintptr) error
func (syscallSC *SyscallSC) Close(hSimConnect uintptr) error
func (syscallSC *SyscallSC) CompleteCustomMissionAction(hSimConnect uintptr, guidInstanceId uintptr) error
func (syscallSC *SyscallSC) CreateClientData(hSimConnect uintptr, ClientDataID uintptr, dwSize uintptr, Flags uintptr) error
func (syscallSC *SyscallSC) ExecuteMissionAction(hSimConnect uintptr, guidInstanceId uintptr) error
func (syscallSC *SyscallSC) FlightLoad(hSimConnect uintptr, szFileName uintptr) error
func (syscallSC *SyscallSC) FlightPlanLoad(hSimConnect uintptr, szFileName uintptr) error
func (syscallSC *SyscallSC) FlightSave(hSimConnect uintptr, szFileName uintptr, szTitle uintptr, ...) error
func (syscallSC *SyscallSC) GetLastSentPacketID(hSimConnect uintptr, pdwError uintptr) error
func (syscallSC *SyscallSC) GetNextDispatch(hSimConnect uintptr, ppData uintptr, pcbData uintptr) error
func (syscallSC *SyscallSC) InsertString(pDest uintptr, cbDest uintptr, ppEnd uintptr, pcbStringV uintptr, ...) error
func (syscallSC *SyscallSC) MapClientDataNameToID(hSimConnect uintptr, szClientDataName uintptr, ClientDataID uintptr) error
func (syscallSC *SyscallSC) MapClientEventToSimEvent(hSimConnect uintptr, EventID uintptr, EventName uintptr) error
func (syscallSC *SyscallSC) MapInputEventToClientEvent(hSimConnect uintptr, GroupID uintptr, szInputDefinition uintptr, ...) error
func (syscallSC *SyscallSC) MenuAddItem(hSimConnect uintptr, szMenuItem uintptr, MenuEventID uintptr, dwData uintptr) error
func (syscallSC *SyscallSC) MenuAddSubItem(hSimConnect uintptr, MenuEventID uintptr, szMenuItem uintptr, ...) error
func (syscallSC *SyscallSC) MenuDeleteItem(hSimConnect uintptr, MenuEventID uintptr) error
func (syscallSC *SyscallSC) MenuDeleteSubItem(hSimConnect uintptr, MenuEventID uintptr, SubMenuEventID uintptr) error
func (syscallSC *SyscallSC) Open(phSimConnect uintptr, szName uintptr, hWnd uintptr, UserEventWin uintptr, ...) error
func (syscallSC *SyscallSC) RemoveClientEvent(hSimConnect uintptr, GroupID uintptr, EventID uintptr) error
func (syscallSC *SyscallSC) RemoveInputEvent(hSimConnect uintptr, GroupID uintptr, szInputDefinition uintptr) error
func (syscallSC *SyscallSC) RequestClientData(hSimConnect uintptr, ClientDataID uintptr, RequestID uintptr, DefineID uintptr, ...) error
func (syscallSC *SyscallSC) RequestDataOnSimObject(hSimConnect uintptr, RequestID uintptr, DefineID uintptr, ObjectID uintptr, ...) error
func (syscallSC *SyscallSC) RequestDataOnSimObjectType(hSimConnect uintptr, RequestID uintptr, DefineID uintptr, ...) error
func (syscallSC *SyscallSC) RequestFacilitiesList(hSimConnect uintptr, t uintptr, RequestID uintptr) error
func (syscallSC *SyscallSC) RequestNotificationGroup(hSimConnect uintptr, GroupID uintptr, dwReserved uintptr, Flags uintptr) error
func (syscallSC *SyscallSC) RequestReservedKey(hSimConnect uintptr, EventID uintptr, szKeyChoice1 uintptr, ...) error
func (syscallSC *SyscallSC) RequestResponseTimes(hSimConnect uintptr, nCount uintptr, fElapsedSeconds uintptr) error
func (syscallSC *SyscallSC) RequestSystemState(hSimConnect uintptr, RequestID uintptr, szState uintptr) error
func (syscallSC *SyscallSC) RetrieveString(pData uintptr, cbData uintptr, pStringV uintptr, pszString uintptr, ...) error
func (syscallSC *SyscallSC) SetClientData(hSimConnect uintptr, ClientDataID uintptr, DefineID uintptr, Flags uintptr, ...) error
func (syscallSC *SyscallSC) SetDataOnSimObject(hSimConnect uintptr, DefineID uintptr, ObjectID uintptr, Flags uintptr, ...) error
func (syscallSC *SyscallSC) SetInputGroupPriority(hSimConnect uintptr, GroupID uintptr, uPriority uintptr) error
func (syscallSC *SyscallSC) SetInputGroupState(hSimConnect uintptr, GroupID uintptr, dwState uintptr) error
func (syscallSC *SyscallSC) SetNotificationGroupPriority(hSimConnect uintptr, GroupID uintptr, uPriority uintptr) error
func (syscallSC *SyscallSC) SetSystemEventState(hSimConnect uintptr, EventID uintptr, dwState uintptr) error
func (syscallSC *SyscallSC) SetSystemState(hSimConnect uintptr, szState uintptr, dwInteger uintptr, fFloat uintptr, ...) error
func (syscallSC *SyscallSC) SubscribeToFacilities(hSimConnect uintptr, t uintptr, RequestID uintptr) error
func (syscallSC *SyscallSC) SubscribeToSystemEvent(hSimConnect uintptr, EventID uintptr, SystemEventName uintptr) error
func (syscallSC *SyscallSC) Text(hSimConnect uintptr, t uintptr, fTimeSeconds uintptr, EventID uintptr, ...) error
func (syscallSC *SyscallSC) TransmitClientEvent(hSimConnect uintptr, ObjectID uintptr, EventID uintptr, dwData uintptr, ...) error
func (syscallSC *SyscallSC) UnsubscribeFromSystemEvent(hSimConnect uintptr, EventID uintptr) error
func (syscallSC *SyscallSC) UnsubscribeToFacilities(hSimConnect uintptr, t uintptr) error
func (syscallSC *SyscallSC) WeatherCreateStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr, szName uintptr, ...) error
func (syscallSC *SyscallSC) WeatherCreateThermal(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr, ...) error
func (syscallSC *SyscallSC) WeatherRemoveStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr) error
func (syscallSC *SyscallSC) WeatherRemoveThermal(hSimConnect uintptr, ObjectID uintptr) error
func (syscallSC *SyscallSC) WeatherRequestCloudState(hSimConnect uintptr, RequestID uintptr, minLat uintptr, minLon uintptr, ...) error
func (syscallSC *SyscallSC) WeatherRequestInterpolatedObservation(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr) error
func (syscallSC *SyscallSC) WeatherRequestObservationAtNearestStation(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr) error
func (syscallSC *SyscallSC) WeatherRequestObservationAtStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr) error
func (syscallSC *SyscallSC) WeatherSetDynamicUpdateRate(hSimConnect uintptr, dwRate uintptr) error
func (syscallSC *SyscallSC) WeatherSetModeCustom(hSimConnect uintptr) error
func (syscallSC *SyscallSC) WeatherSetModeGlobal(hSimConnect uintptr) error
func (syscallSC *SyscallSC) WeatherSetModeServer(hSimConnect uintptr, dwPort uintptr, dwSeconds uintptr) error
func (syscallSC *SyscallSC) WeatherSetModeTheme(hSimConnect uintptr, szThemeName uintptr) error
func (syscallSC *SyscallSC) WeatherSetObservation(hSimConnect uintptr, Seconds uintptr, szMETAR uintptr) error
type SystemEvent
Package (GetLatLonAlt)
Package (GetSimVar)
Package (GetSimVarWithIndex)
Package (GetString)
Package (GetXYZ)
Package (IFaceSetSimVar)
Package (InterfaceSimVar)
Package (SetSimVar)
Package (ShowText)
Package (SimEvent)
View Source
const (
MAX_PATH = 260
SIMCONNECT_UNUSED = 0xFFFFFFFF
SIMCONNECT_OBJECT_ID_USER = 0
SIMCONNECT_CAMERA_IGNORE_FIELD = 3.402823466e38
SIMCONNECT_CLIENTDATA_MAX_SIZE = 8192
SIMCONNECT_GROUP_PRIORITY_HIGHEST
GroupPriority
= 1
SIMCONNECT_GROUP_PRIORITY_HIGHEST_MASKABLE
GroupPriority
= 10000000
SIMCONNECT_GROUP_PRIORITY_STANDARD
GroupPriority
= 1900000000
SIMCONNECT_GROUP_PRIORITY_DEFAULT
GroupPriority
= 2000000000
SIMCONNECT_GROUP_PRIORITY_LOWEST
GroupPriority
= 4000000000
MAX_METAR_LENGTH = 2000
MAX_THERMAL_SIZE = 100000
MAX_THERMAL_RATE = 1000
INITPOSITION_AIRSPEED_CRUISE = -1
INITPOSITION_AIRSPEED_KEEP = -2
SIMCONNECT_CLIENTDATATYPE_INT8 = -1
SIMCONNECT_CLIENTDATATYPE_INT16 = -2
SIMCONNECT_CLIENTDATATYPE_INT32 = -3
SIMCONNECT_CLIENTDATATYPE_INT64 = -4
SIMCONNECT_CLIENTDATATYPE_FLOAT32 = -5
SIMCONNECT_CLIENTDATATYPE_FLOAT64 = -6
SIMCONNECT_CLIENTDATAOFFSET_AUTO = -1
SIMCONNECT_OPEN_CONFIGINDEX_LOCAL = -1
)
Divers
View Source
const (
SIMCONNECT_RECV_ID_NULL =
iota
SIMCONNECT_RECV_ID_EXCEPTION
SIMCONNECT_RECV_ID_OPEN
SIMCONNECT_RECV_ID_QUIT
SIMCONNECT_RECV_ID_EVENT
SIMCONNECT_RECV_ID_EVENT_OBJECT_ADDREMOVE
SIMCONNECT_RECV_ID_EVENT_FILENAME
SIMCONNECT_RECV_ID_EVENT_FRAME
SIMCONNECT_RECV_ID_SIMOBJECT_DATA
SIMCONNECT_RECV_ID_SIMOBJECT_DATA_BYTYPE
SIMCONNECT_RECV_ID_WEATHER_OBSERVATION
SIMCONNECT_RECV_ID_CLOUD_STATE
SIMCONNECT_RECV_ID_ASSIGNED_OBJECT_ID
SIMCONNECT_RECV_ID_RESERVED_KEY
SIMCONNECT_RECV_ID_CUSTOM_ACTION
SIMCONNECT_RECV_ID_SYSTEM_STATE
SIMCONNECT_RECV_ID_CLIENT_DATA
SIMCONNECT_RECV_ID_EVENT_WEATHER_MODE
SIMCONNECT_RECV_ID_AIRPORT_LIST
SIMCONNECT_RECV_ID_VOR_LIST
SIMCONNECT_RECV_ID_NDB_LIST
SIMCONNECT_RECV_ID_WAYPOINT_LIST
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_SERVER_STARTED
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_CLIENT_STARTED
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_SESSION_ENDED
SIMCONNECT_RECV_ID_EVENT_RACE_END
SIMCONNECT_RECV_ID_EVENT_RACE_LAP
)
View Source
const (
SIMCONNECT_DATATYPE_INVALID =
iota
SIMCONNECT_DATATYPE_INT32
SIMCONNECT_DATATYPE_INT64
SIMCONNECT_DATATYPE_FLOAT32
SIMCONNECT_DATATYPE_FLOAT64
SIMCONNECT_DATATYPE_STRING8
SIMCONNECT_DATATYPE_STRING32
SIMCONNECT_DATATYPE_STRING64
SIMCONNECT_DATATYPE_STRING128
SIMCONNECT_DATATYPE_STRING256
SIMCONNECT_DATATYPE_STRING260
SIMCONNECT_DATATYPE_STRINGV
SIMCONNECT_DATATYPE_INITPOSITION
SIMCONNECT_DATATYPE_MARKERSTATE
SIMCONNECT_DATATYPE_WAYPOINT
SIMCONNECT_DATATYPE_LATLONALT
SIMCONNECT_DATATYPE_XYZ
SIMCONNECT_DATATYPE_MAX =
iota
)
View Source
const (
SIMCONNECT_EXCEPTION_NONE =
iota
SIMCONNECT_EXCEPTION_ERROR =
iota
SIMCONNECT_EXCEPTION_SIZE_MISMATCH
SIMCONNECT_EXCEPTION_UNRECOGNIZED_ID
SIMCONNECT_EXCEPTION_UNOPENED
SIMCONNECT_EXCEPTION_VERSION_MISMATCH
SIMCONNECT_EXCEPTION_TOO_MANY_GROUPS
SIMCONNECT_EXCEPTION_NAME_UNRECOGNIZED
SIMCONNECT_EXCEPTION_TOO_MANY_EVENT_NAMES
SIMCONNECT_EXCEPTION_EVENT_ID_DUPLICATE
SIMCONNECT_EXCEPTION_TOO_MANY_MAPS
SIMCONNECT_EXCEPTION_TOO_MANY_OBJECTS
SIMCONNECT_EXCEPTION_TOO_MANY_REQUESTS
SIMCONNECT_EXCEPTION_WEATHER_INVALID_PORT
SIMCONNECT_EXCEPTION_WEATHER_INVALID_METAR
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_GET_OBSERVATION
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_CREATE_STATION
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_REMOVE_STATION
SIMCONNECT_EXCEPTION_INVALID_DATA_TYPE
SIMCONNECT_EXCEPTION_INVALID_DATA_SIZE
SIMCONNECT_EXCEPTION_DATA_ERROR
SIMCONNECT_EXCEPTION_INVALID_ARRAY
SIMCONNECT_EXCEPTION_CREATE_OBJECT_FAILED
SIMCONNECT_EXCEPTION_LOAD_FLIGHTPLAN_FAILED
SIMCONNECT_EXCEPTION_OPERATION_INVALID_FOR_OBJECT_TYPE
SIMCONNECT_EXCEPTION_ILLEGAL_OPERATION
SIMCONNECT_EXCEPTION_ALREADY_SUBSCRIBED
SIMCONNECT_EXCEPTION_INVALID_ENUM
SIMCONNECT_EXCEPTION_DEFINITION_ERROR
SIMCONNECT_EXCEPTION_DUPLICATE_ID
SIMCONNECT_EXCEPTION_DATUM_ID
SIMCONNECT_EXCEPTION_OUT_OF_BOUNDS
SIMCONNECT_EXCEPTION_ALREADY_CREATED
SIMCONNECT_EXCEPTION_OBJECT_OUTSIDE_REALITY_BUBBLE
SIMCONNECT_EXCEPTION_OBJECT_CONTAINER
SIMCONNECT_EXCEPTION_OBJECT_AI
SIMCONNECT_EXCEPTION_OBJECT_ATC
SIMCONNECT_EXCEPTION_OBJECT_SCHEDULE
)
View Source
const (
SIMCONNECT_SIMOBJECT_TYPE_USER =
iota
SIMCONNECT_SIMOBJECT_TYPE_ALL
SIMCONNECT_SIMOBJECT_TYPE_AIRCRAFT
SIMCONNECT_SIMOBJECT_TYPE_HELICOPTER
SIMCONNECT_SIMOBJECT_TYPE_BOAT
SIMCONNECT_SIMOBJECT_TYPE_GROUND
)
View Source
const (
SIMCONNECT_PERIOD_NEVER =
iota
SIMCONNECT_PERIOD_ONCE
SIMCONNECT_PERIOD_VISUAL_FRAME
SIMCONNECT_PERIOD_SIM_FRAME
SIMCONNECT_PERIOD_SECOND
)
View Source
const (
SIMCONNECT_MISSION_FAILED =
iota
SIMCONNECT_MISSION_CRASHED
SIMCONNECT_MISSION_SUCCEEDED
)
View Source
const (
SIMCONNECT_CLIENT_DATA_PERIOD_NEVER =
iota
SIMCONNECT_CLIENT_DATA_PERIOD_ONCE
SIMCONNECT_CLIENT_DATA_PERIOD_VISUAL_FRAME
SIMCONNECT_CLIENT_DATA_PERIOD_ON_SET
SIMCONNECT_CLIENT_DATA_PERIOD_SECOND
)
View Source
const (
SIMCONNECT_TEXT_TYPE_SCROLL_BLACK
ScrollColor
=
iota
SIMCONNECT_TEXT_TYPE_SCROLL_WHITE
SIMCONNECT_TEXT_TYPE_SCROLL_RED
SIMCONNECT_TEXT_TYPE_SCROLL_GREEN
SIMCONNECT_TEXT_TYPE_SCROLL_BLUE
SIMCONNECT_TEXT_TYPE_SCROLL_YELLOW
SIMCONNECT_TEXT_TYPE_SCROLL_MAGENTA
SIMCONNECT_TEXT_TYPE_SCROLL_CYAN
SIMCONNECT_TEXT_TYPE_PRINT_BLACK
PrintColor
= 0x0100
SIMCONNECT_TEXT_TYPE_PRINT_WHITE
PrintColor
=
SIMCONNECT_TEXT_TYPE_PRINT_BLACK
+ 0x1
SIMCONNECT_TEXT_TYPE_PRINT_RED
PrintColor
=
SIMCONNECT_TEXT_TYPE_PRINT_WHITE
+ 0x1
SIMCONNECT_TEXT_TYPE_PRINT_GREEN
PrintColor
=
SIMCONNECT_TEXT_TYPE_PRINT_RED
+ 0x1
SIMCONNECT_TEXT_TYPE_PRINT_BLUE
PrintColor
=
SIMCONNECT_TEXT_TYPE_PRINT_GREEN
+ 0x1
SIMCONNECT_TEXT_TYPE_PRINT_YELLOW
PrintColor
=
SIMCONNECT_TEXT_TYPE_PRINT_BLUE
+ 0x1
SIMCONNECT_TEXT_TYPE_PRINT_MAGENTA
PrintColor
=
SIMCONNECT_TEXT_TYPE_PRINT_YELLOW
+ 0x1
SIMCONNECT_TEXT_TYPE_PRINT_CYAN
PrintColor
=
SIMCONNECT_TEXT_TYPE_PRINT_MAGENTA
+ 0x1
)
View Source
const (
SIMCONNECT_TEXT_RESULT_DISPLAYED = 0x00010000
SIMCONNECT_TEXT_RESULT_QUEUED =
SIMCONNECT_TEXT_RESULT_DISPLAYED
+ 0x1
SIMCONNECT_TEXT_RESULT_REMOVED =
SIMCONNECT_TEXT_RESULT_QUEUED
+ 0x1
SIMCONNECT_TEXT_RESULT_REPLACED =
SIMCONNECT_TEXT_RESULT_REMOVED
+ 0x1
SIMCONNECT_TEXT_RESULT_TIMEOUT =
SIMCONNECT_TEXT_RESULT_REPLACED
+ 0x1
)
View Source
const (
SIMCONNECT_WEATHER_MODE_THEME =
iota
SIMCONNECT_WEATHER_MODE_RWW
SIMCONNECT_WEATHER_MODE_CUSTOM
SIMCONNECT_WEATHER_MODE_GLOBAL
)
View Source
const (
SIMCONNECT_FACILITY_LIST_TYPE_AIRPORT =
iota
SIMCONNECT_FACILITY_LIST_TYPE_WAYPOINT
SIMCONNECT_FACILITY_LIST_TYPE_NDB
SIMCONNECT_FACILITY_LIST_TYPE_VOR
SIMCONNECT_FACILITY_LIST_TYPE_COUNT
)
View Source
const (
SIMCONNECT_RECV_ID_VOR_LIST_HAS_NAV_SIGNAL = 0x00000001
SIMCONNECT_RECV_ID_VOR_LIST_HAS_LOCALIZER = 0x00000002
SIMCONNECT_RECV_ID_VOR_LIST_HAS_GLIDE_SLOPE = 0x00000004
SIMCONNECT_RECV_ID_VOR_LIST_HAS_DME = 0x00000008
)
SIMCONNECT_VOR_FLAGS flags for SIMCONNECT_RECV_ID_VOR_LIST
View Source
const (
SIMCONNECT_WAYPOINT_NONE = 0x00
SIMCONNECT_WAYPOINT_SPEED_REQUESTED = 0x04
SIMCONNECT_WAYPOINT_THROTTLE_REQUESTED = 0x08
SIMCONNECT_WAYPOINT_COMPUTE_VERTICAL_SPEED = 0x10
SIMCONNECT_WAYPOINT_ALTITUDE_IS_AGL = 0x20
SIMCONNECT_WAYPOINT_ON_GROUND = 0x00100000
SIMCONNECT_WAYPOINT_REVERSE = 0x00200000
SIMCONNECT_WAYPOINT_WRAP_TO_FIRST = 0x00400000
)
SIMCONNECT_WAYPOINT_FLAGS bits for the Waypoint Flags field: may be combined
View Source
const (
SIMCONNECT_DATA_REQUEST_FLAG_DEFAULT =
iota
SIMCONNECT_DATA_REQUEST_FLAG_CHANGED
SIMCONNECT_DATA_REQUEST_FLAG_TAGGED
)
SIMCONNECT_DATA_REQUEST_FLAG
View Source
const (
SIMCONNECT_DATA_SET_FLAG_DEFAULT =
iota
SIMCONNECT_DATA_SET_FLAG_TAGGED
)
SIMCONNECT_DATA_SET_FLAG
View Source
const (
SIMCONNECT_CREATE_CLIENT_DATA_FLAG_DEFAULT =
iota
SIMCONNECT_CREATE_CLIENT_DATA_FLAG_READ_ONLY
)
SIMCONNECT_CREATE_CLIENT_DATA_FLAG
View Source
const (
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_DEFAULT =
iota
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_CHANGED
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_TAGGED
)
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG
View Source
const (
SIMCONNECT_CLIENT_DATA_SET_FLAG_DEFAULT =
iota
SIMCONNECT_CLIENT_DATA_SET_FLAG_TAGGED
)
SIMCONNECT_CLIENT_DATA_SET_FLAG
View Source
const (
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_COCKPIT_2D = 0x00000001
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_COCKPIT_VIRTUAL = 0x00000002
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_ORTHOGONAL = 0x00000004
)
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA dwData contains these flags for the "View" System Event
View Source
const (
SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH = 64
SIMCONNECT_CLOUD_STATE_ARRAY_SIZE =
SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH
*
SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH
)
View Source
const (
SIMCONNECT_SOUND_SYSTEM_EVENT_DATA_MASTER = 0x00000001
)
SIMCONNECT_SOUND_SYSTEM_EVENT_DATA dwData contains these flags for the "Sound" System Event
This section is empty.
func InterfaceAssignSimVar(listSimVar []
SimVar
, iFace interface{})
func SimVarAssignInterface(iFace interface{}, listSimVar []
SimVar
) interface{}
type EasySimConnect struct {
}
EasySimConnect for easy use of SimConnect in golang
Please show example_test.go for use case
NewEasySimConnect create instance of EasySimConnect
func (esc *
EasySimConnect
) Close() <-chan
bool
Close Finishing EasySimConnect, All object created with this EasySimConnect's instance is perished after call this function
Connect to sim and run dispatch or return error
func (esc *
EasySimConnect
) ConnectInterfaceToSimVar(iFace interface{}) (<-chan interface{},
error
)
ConnectInterfaceToSimVar return a chan. This chan return interface when updating
func (esc *
EasySimConnect
) ConnectSysEventAircraftLoaded() <-chan
string
ConnectSysEventAircraftLoaded Request a notification when the aircraft flight dynamics file is changed. These files have a .AIR extension. The filename is returned in a string.
func (esc *
EasySimConnect
) ConnectSysEventCrashReset() <-chan
bool
ConnectSysEventCrashReset Request a notification when the crash cut-scene has completed.
func (esc *
EasySimConnect
) ConnectSysEventCrashed() <-chan
bool
ConnectSysEventCrashed Request a notification if the user aircraft crashes.
func (esc *
EasySimConnect
) ConnectSysEventFlightLoaded() <-chan
string
ConnectSysEventFlightLoaded Request a notification when a flight is loaded. Note that when a flight is ended, a default flight is typically loaded, so these events will occur when flights and missions are started and finished. The filename of the flight loaded is returned in a string
func (esc *
EasySimConnect
) ConnectSysEventFlightPlanActivated() <-chan
string
ConnectSysEventFlightPlanActivated Request a notification when a new flight plan is activated. The filename of the activated flight plan is returned in a string.
func (*EasySimConnect)
ConnectSysEventFlightPlanDeactivated
ΒΆ
func (esc *
EasySimConnect
) ConnectSysEventFlightPlanDeactivated() <-chan
bool
ConnectSysEventFlightPlanDeactivated Request a notification when the active flight plan is de-activated.
func (esc *
EasySimConnect
) ConnectSysEventFlightSaved() <-chan
string
ConnectSysEventFlightSaved Request a notification when a flight is saved correctly. The filename of the flight saved is returned in a string
func (esc *
EasySimConnect
) ConnectSysEventPause() <-chan
bool
ConnectSysEventPause Request notifications when the flight is paused or unpaused, and also immediately returns the current pause state (1 = paused or 0 = unpaused). The state is returned in the dwData parameter.
func (esc *
EasySimConnect
) ConnectSysEventPaused() <-chan
bool
ConnectSysEventPaused Request a notification when the flight is paused.
func (esc *
EasySimConnect
) ConnectSysEventSim() <-chan
bool
ConnectSysEventSim Request a notification when Sim start and stop.
func (esc *
EasySimConnect
) ConnectToSimVar(listSimVar ...
SimVar
) (<-chan []
SimVar
,
error
)
ConnectToSimVar return a chan. This chan return an array when updating they SimVars in order of argument of this function
func (esc *
EasySimConnect
) ConnectToSimVarObject(listSimVar ...
SimVar
) <-chan []
SimVar
ConnectToSimVarObject return a chan. This chan return an array when updating they SimVars in order of argument of this function
Deprecated: Use ConnectToSimVar instead.
func (esc *
EasySimConnect
) IsAlive()
bool
IsAlive return true if connected
func (esc *
EasySimConnect
) NewSimEvent(simEventStr
KeySimEvent
)
SimEvent
NewSimEvent return new instance of SimEvent and you can run SimEvent.Run()
SetDelay Select delay update SimVar and
func (esc *
EasySimConnect
) SetLoggerLevel(level
EasySimConnectLogLevel
)
SetLoggerLevel you can set log level in EasySimConnect
func (esc *
EasySimConnect
) SetSimObject(simVar
SimVar
)
SetSimObject edit the SimVar in the simulator
func (esc *
EasySimConnect
) SetSimVarInterfaceInSim(iFace interface{})
error
ShowText display a text on the screen in the simulator.
ime is in second and return chan a confirmation for the simulator
type EasySimConnectLogLevel
int
EasySimConnectLogLevel is a type of Log level
const (
LogNo
EasySimConnectLogLevel
=
iota
LogError
LogWarn
LogInfo
)
Log Level
const (
SIMCONNECT_EVENT_FLAG_DEFAULT
EventFlag
=
iota
SIMCONNECT_EVENT_FLAG_FAST_REPEAT_TIMER
SIMCONNECT_EVENT_FLAG_SLOW_REPEAT_TIMER
SIMCONNECT_EVENT_FLAG_GROUPID_IS_PRIORITY
EventFlag
= 0x00000010
)
SIMCONNECT_EVENT_FLAG
KeySimEvent is a string
const (
KeySlingPickupRelease
KeySimEvent
= "SLING_PICKUP_RELEASE"
KeyHoistSwitchExtend
KeySimEvent
= "HOIST_SWITCH_EXTEND"
KeyHoistSwitchRetract
KeySimEvent
= "HOIST_SWITCH_RETRACT"
KeyHoistSwitchSet
KeySimEvent
= "HOIST_SWITCH_SET"
KeyHoistDeployToggle
KeySimEvent
= "HOIST_DEPLOY_TOGGLE"
KeyHoistDeploySet
KeySimEvent
= "HOIST_DEPLOY_SET"
KeyToggleAntidetonationTankValve
KeySimEvent
= "ANTIDETONATION_TANK_VALVE_TOGGLE"
KeyToggleNitrousTankValve
KeySimEvent
= "NITROUS_TANK_VALVE_TOGGLE"
KeyToggleRaceresultsWindow
KeySimEvent
= "TOGGLE_RACERESULTS_WINDOW"
KeyTakeoffAssistArmToggle
KeySimEvent
= "TAKEOFF_ASSIST_ARM_TOGGLE"
KeyTakeoffAssistArmSet
KeySimEvent
= "TAKEOFF_ASSIST_ARM_SET"
KeyTakeoffAssistFire
KeySimEvent
= "TAKEOFF_ASSIST_FIRE"
KeyToggleLaunchBarSwitch
KeySimEvent
= "TOGGLE_LAUNCH_BAR_SWITCH"
KeySetLaunchbarSwitch
KeySimEvent
= "SET_LAUNCH_BAR_SWITCH"
KeyRepairAndRefuel
KeySimEvent
= "REPAIR_AND_REFUEL"
KeyDmeSelect
KeySimEvent
= "DME_SELECT"
KeyFuelDumpToggle
KeySimEvent
= "FUEL_DUMP_TOGGLE"
KeyViewCockpitForward
KeySimEvent
= "VIEW_COCKPIT_FORWARD"
KeyViewVirtualCockpitForward
KeySimEvent
= "VIEW_VIRTUAL_COCKPIT_FORWARD"
KeyTowPlaneRelease
KeySimEvent
= "TOW_PLANE_RELEASE"
KeyRequestTowPlane
KeySimEvent
= "TOW_PLANE_REQUEST"
KeyRequestFuel
KeySimEvent
= "REQUEST_FUEL_KEY"
KeyReleaseDroppableObjects
KeySimEvent
= "RELEASE_DROPPABLE_OBJECTS"
KeyViewPanelAlphaSet
KeySimEvent
= "VIEW_PANEL_ALPHA_SET"
KeyViewPanelAlphaSelect
KeySimEvent
= "VIEW_PANEL_ALPHA_SELECT"
KeyViewPanelAlphaInc
KeySimEvent
= "VIEW_PANEL_ALPHA_INC"
KeyViewPanelAlphaDec
KeySimEvent
= "VIEW_PANEL_ALPHA_DEC"
KeyViewLinkingSet
KeySimEvent
= "VIEW_LINKING_SET"
KeyViewLinkingToggle
KeySimEvent
= "VIEW_LINKING_TOGGLE"
KeyRadioSelectedDmeIdentEnable
KeySimEvent
= "RADIO_SELECTED_DME_IDENT_ENABLE"
KeyRadioSelectedDmeIdentDisable
KeySimEvent
= "RADIO_SELECTED_DME_IDENT_DISABLE"
KeyRadioSelectedDmeIdentSet
KeySimEvent
= "RADIO_SELECTED_DME_IDENT_SET"
KeyRadioSelectedDmeIdentToggle
KeySimEvent
= "RADIO_SELECTED_DME_IDENT_TOGGLE"
KeyGaugeKeystroke
KeySimEvent
= "GAUGE_KEYSTROKE"
KeySimuiWindowHideshow
KeySimEvent
= "SIMUI_WINDOW_HIDESHOW"
KeyToggleVariometerSwitch
KeySimEvent
= "TOGGLE_VARIOMETER_SWITCH"
KeyToggleTurnIndicatorSwitch
KeySimEvent
= "TOGGLE_TURN_INDICATOR_SWITCH"
KeyWindowTitlesToggle
KeySimEvent
= "VIEW_WINDOW_TITLES_TOGGLE"
KeyAxisPanPitch
KeySimEvent
= "AXIS_PAN_PITCH"
KeyAxisPanHeading
KeySimEvent
= "AXIS_PAN_HEADING"
KeyAxisPanTilt
KeySimEvent
= "AXIS_PAN_TILT"
KeyAxisIndicatorCycle
KeySimEvent
= "VIEW_AXIS_INDICATOR_CYCLE"
KeyMapOrientationCycle
KeySimEvent
= "VIEW_MAP_ORIENTATION_CYCLE"
KeyToggleJetway
KeySimEvent
= "TOGGLE_JETWAY"
KeyRetractFloatSwitchDec
KeySimEvent
= "RETRACT_FLOAT_SWITCH_DEC"
KeyRetractFloatSwitchInc
KeySimEvent
= "RETRACT_FLOAT_SWITCH_INC"
KeyToggleWaterBallastValve
KeySimEvent
= "TOGGLE_WATER_BALLAST_VALVE"
KeyViewChaseDistanceAdd
KeySimEvent
= "VIEW_CHASE_DISTANCE_ADD"
KeyViewChaseDistanceSub
KeySimEvent
= "VIEW_CHASE_DISTANCE_SUB"
KeyApuStarter
KeySimEvent
= "APU_STARTER"
KeyApuOffSwitch
KeySimEvent
= "APU_OFF_SWITCH"
KeyApuGeneratorSwitchToggle
KeySimEvent
= "APU_GENERATOR_SWITCH_TOGGLE"
KeyApuGeneratorSwitchSet
KeySimEvent
= "APU_GENERATOR_SWITCH_SET"
KeyExtinguishEngineFire
KeySimEvent
= "EXTINGUISH_ENGINE_FIRE"
KeyApMaxBankInc
KeySimEvent
= "AP_MAX_BANK_INC"
KeyApMaxBankDec
KeySimEvent
= "AP_MAX_BANK_DEC"
KeyApN1Hold
KeySimEvent
= "AP_N1_HOLD"
KeyApN1RefInc
KeySimEvent
= "AP_N1_REF_INC"
KeyApN1RefDec
KeySimEvent
= "AP_N1_REF_DEC"
KeyApN1RefSet
KeySimEvent
= "AP_N1_REF_SET"
KeyHydraulicSwitchToggle
KeySimEvent
= "HYDRAULIC_SWITCH_TOGGLE"
KeyBleedAirSourceControlInc
KeySimEvent
= "BLEED_AIR_SOURCE_CONTROL_INC"
KeyBleedAirSourceControlDec
KeySimEvent
= "BLEED_AIR_SOURCE_CONTROL_DEC"
KeyTurbineIgnitionSwitchToggle
KeySimEvent
= "TURBINE_IGNITION_SWITCH_TOGGLE"
KeyCabinNoSmokingAlertSwitchToggle
KeySimEvent
= "CABIN_NO_SMOKING_ALERT_SWITCH_TOGGLE"
KeyCabinSeatbeltsAlertSwitchToggle
KeySimEvent
= "CABIN_SEATBELTS_ALERT_SWITCH_TOGGLE"
KeyAntiskidBrakesToggle
KeySimEvent
= "ANTISKID_BRAKES_TOGGLE"
KeyGpwsSwitchToggle
KeySimEvent
= "GPWS_SWITCH_TOGGLE"
KeyVideoRecordToggle
KeySimEvent
= "VIDEO_RECORD_TOGGLE"
KeyToggleAirportNameDisplay
KeySimEvent
= "TOGGLE_AIRPORT_NAME_DISPLAY"
KeyCaptureScreenshot
KeySimEvent
= "CAPTURE_SCREENSHOT"
KeyMouseLookToggle
KeySimEvent
= "MOUSE_LOOK_TOGGLE"
KeyYaxisInvertToggle
KeySimEvent
= "YAXIS_INVERT_TOGGLE"
KeyAutocoordToggle
KeySimEvent
= "AUTORUDDER_TOGGLE"
KeyFlyByWireElacToggle
KeySimEvent
= "FLY_BY_WIRE_ELAC_TOGGLE"
KeyFlyByWireFacToggle
KeySimEvent
= "FLY_BY_WIRE_FAC_TOGGLE"
KeyFlyByWireSecToggle
KeySimEvent
= "FLY_BY_WIRE_SEC_TOGGLE"
KeyManualFuelPressurePump
KeySimEvent
= "MANUAL_FUEL_PRESSURE_PUMP"
KeySteeringInc
KeySimEvent
= "STEERING_INC"
KeySteeringDec
KeySimEvent
= "STEERING_DEC"
KeySteeringSet
KeySimEvent
= "STEERING_SET"
KeyFreezeLatitudeLongitudeToggle
KeySimEvent
= "FREEZE_LATITUDE_LONGITUDE_TOGGLE"
KeyFreezeLatitudeLongitudeSet
KeySimEvent
= "FREEZE_LATITUDE_LONGITUDE_SET"
KeyFreezeAltitudeToggle
KeySimEvent
= "FREEZE_ALTITUDE_TOGGLE"
KeyFreezeAltitudeSet
KeySimEvent
= "FREEZE_ALTITUDE_SET"
KeyFreezeAttitudeToggle
KeySimEvent
= "FREEZE_ATTITUDE_TOGGLE"
KeyFreezeAttitudeSet
KeySimEvent
= "FREEZE_ATTITUDE_SET"
KeyPressurizationPressureAltInc
KeySimEvent
= "PRESSURIZATION_PRESSURE_ALT_INC"
KeyPressurizationPressureAltDec
KeySimEvent
= "PRESSURIZATION_PRESSURE_ALT_DEC"
KeyPressurizationClimbRateInc
KeySimEvent
= "PRESSURIZATION_CLIMB_RATE_INC"
KeyPressurizationClimbRateDec
KeySimEvent
= "PRESSURIZATION_CLIMB_RATE_DEC"
KeyPressurizationPressureDumpSwtich
KeySimEvent
= "PRESSURIZATION_PRESSURE_DUMP_SWTICH"
KeyFuelSelectorLeftMain
KeySimEvent
= "FUEL_SELECTOR_LEFT_MAIN"
KeyFuelSelector2LeftMain
KeySimEvent
= "FUEL_SELECTOR_2_LEFT_MAIN"
KeyFuelSelector3LeftMain
KeySimEvent
= "FUEL_SELECTOR_3_LEFT_MAIN"
KeyFuelSelector4LeftMain
KeySimEvent
= "FUEL_SELECTOR_4_LEFT_MAIN"
KeyFuelSelectorRightMain
KeySimEvent
= "FUEL_SELECTOR_RIGHT_MAIN"
KeyFuelSelector2RightMain
KeySimEvent
= "FUEL_SELECTOR_2_RIGHT_MAIN"
KeyFuelSelector3RightMain
KeySimEvent
= "FUEL_SELECTOR_3_RIGHT_MAIN"
KeyFuelSelector4RightMain
KeySimEvent
= "FUEL_SELECTOR_4_RIGHT_MAIN"
KeyPointOfInterestTogglePointer
KeySimEvent
= "POINT_OF_INTEREST_TOGGLE_POINTER"
KeyPointOfInterestCyclePrevious
KeySimEvent
= "POINT_OF_INTEREST_CYCLE_PREVIOUS"
KeyPointOfInterestCycleNext
KeySimEvent
= "POINT_OF_INTEREST_CYCLE_NEXT"
KeyG1000PfdFlightplanButton
KeySimEvent
= "G1000_PFD_FLIGHTPLAN_BUTTON"
KeyG1000PfdProcedureButton
KeySimEvent
= "G1000_PFD_PROCEDURE_BUTTON"
KeyG1000PfdZoominButton
KeySimEvent
= "G1000_PFD_ZOOMIN_BUTTON"
KeyG1000PfdZoomoutButton
KeySimEvent
= "G1000_PFD_ZOOMOUT_BUTTON"
KeyG1000PfdDirecttoButton
KeySimEvent
= "G1000_PFD_DIRECTTO_BUTTON"
KeyG1000PfdMenuButton
KeySimEvent
= "G1000_PFD_MENU_BUTTON"
KeyG1000PfdClearButton
KeySimEvent
= "G1000_PFD_CLEAR_BUTTON"
KeyG1000PfdEnterButton
KeySimEvent
= "G1000_PFD_ENTER_BUTTON"
KeyG1000PfdCursorButton
KeySimEvent
= "G1000_PFD_CURSOR_BUTTON"
KeyG1000PfdGroupKnobInc
KeySimEvent
= "G1000_PFD_GROUP_KNOB_INC"
KeyG1000PfdGroupKnobDec
KeySimEvent
= "G1000_PFD_GROUP_KNOB_DEC"
KeyG1000PfdPageKnobInc
KeySimEvent
= "G1000_PFD_PAGE_KNOB_INC"
KeyG1000PfdPageKnobDec
KeySimEvent
= "G1000_PFD_PAGE_KNOB_DEC"
KeyG1000PfdSoftkey1
KeySimEvent
= "G1000_PFD_SOFTKEY1"
KeyG1000PfdSoftkey2
KeySimEvent
= "G1000_PFD_SOFTKEY2"
KeyG1000PfdSoftkey3
KeySimEvent
= "G1000_PFD_SOFTKEY3"
KeyG1000PfdSoftkey4
KeySimEvent
= "G1000_PFD_SOFTKEY4"
KeyG1000PfdSoftkey5
KeySimEvent
= "G1000_PFD_SOFTKEY5"
KeyG1000PfdSoftkey6
KeySimEvent
= "G1000_PFD_SOFTKEY6"
KeyG1000PfdSoftkey7
KeySimEvent
= "G1000_PFD_SOFTKEY7"
KeyG1000PfdSoftkey8
KeySimEvent
= "G1000_PFD_SOFTKEY8"
KeyG1000PfdSoftkey9
KeySimEvent
= "G1000_PFD_SOFTKEY9"
KeyG1000PfdSoftkey10
KeySimEvent
= "G1000_PFD_SOFTKEY10"
KeyG1000PfdSoftkey11
KeySimEvent
= "G1000_PFD_SOFTKEY11"
KeyG1000PfdSoftkey12
KeySimEvent
= "G1000_PFD_SOFTKEY12"
KeyG1000MfdFlightplanButton
KeySimEvent
= "G1000_MFD_FLIGHTPLAN_BUTTON"
KeyG1000MfdProcedureButton
KeySimEvent
= "G1000_MFD_PROCEDURE_BUTTON"
KeyG1000MfdZoominButton
KeySimEvent
= "G1000_MFD_ZOOMIN_BUTTON"
KeyG1000MfdZoomoutButton
KeySimEvent
= "G1000_MFD_ZOOMOUT_BUTTON"
KeyG1000MfdDirecttoButton
KeySimEvent
= "G1000_MFD_DIRECTTO_BUTTON"
KeyG1000MfdMenuButton
KeySimEvent
= "G1000_MFD_MENU_BUTTON"
KeyG1000MfdClearButton
KeySimEvent
= "G1000_MFD_CLEAR_BUTTON"
KeyG1000MfdEnterButton
KeySimEvent
= "G1000_MFD_ENTER_BUTTON"
KeyG1000MfdCursorButton
KeySimEvent
= "G1000_MFD_CURSOR_BUTTON"
KeyG1000MfdGroupKnobInc
KeySimEvent
= "G1000_MFD_GROUP_KNOB_INC"
KeyG1000MfdGroupKnobDec
KeySimEvent
= "G1000_MFD_GROUP_KNOB_DEC"
KeyG1000MfdPageKnobInc
KeySimEvent
= "G1000_MFD_PAGE_KNOB_INC"
KeyG1000MfdPageKnobDec
KeySimEvent
= "G1000_MFD_PAGE_KNOB_DEC"
KeyG1000MfdSoftkey1
KeySimEvent
= "G1000_MFD_SOFTKEY1"
KeyG1000MfdSoftkey2
KeySimEvent
= "G1000_MFD_SOFTKEY2"
KeyG1000MfdSoftkey3
KeySimEvent
= "G1000_MFD_SOFTKEY3"
KeyG1000MfdSoftkey4
KeySimEvent
= "G1000_MFD_SOFTKEY4"
KeyG1000MfdSoftkey5
KeySimEvent
= "G1000_MFD_SOFTKEY5"
KeyG1000MfdSoftkey6
KeySimEvent
= "G1000_MFD_SOFTKEY6"
KeyG1000MfdSoftkey7
KeySimEvent
= "G1000_MFD_SOFTKEY7"
KeyG1000MfdSoftkey8
KeySimEvent
= "G1000_MFD_SOFTKEY8"
KeyG1000MfdSoftkey9
KeySimEvent
= "G1000_MFD_SOFTKEY9"
KeyG1000MfdSoftkey10
KeySimEvent
= "G1000_MFD_SOFTKEY10"
KeyG1000MfdSoftkey11
KeySimEvent
= "G1000_MFD_SOFTKEY11"
KeyG1000MfdSoftkey12
KeySimEvent
= "G1000_MFD_SOFTKEY12"
KeyThrottleFull
KeySimEvent
= "THROTTLE_FULL"
KeyThrottleIncr
KeySimEvent
= "THROTTLE_INCR"
KeyThrottleIncrSmall
KeySimEvent
= "THROTTLE_INCR_SMALL"
KeyThrottleDecr
KeySimEvent
= "THROTTLE_DECR"
KeyThrottleDecrSmall
KeySimEvent
= "THROTTLE_DECR_SMALL"
KeyThrottleCut
KeySimEvent
= "THROTTLE_CUT"
KeyIncreaseThrottle
KeySimEvent
= "INCREASE_THROTTLE"
KeyDecreaseThrottle
KeySimEvent
= "DECREASE_THROTTLE"
KeyThrottleSet
KeySimEvent
= "THROTTLE_SET"
KeyAxisThrottleSet
KeySimEvent
= "AXIS_THROTTLE_SET"
KeyThrottle1Set
KeySimEvent
= "THROTTLE1_SET"
KeyThrottle2Set
KeySimEvent
= "THROTTLE2_SET"
KeyThrottle3Set
KeySimEvent
= "THROTTLE3_SET"
KeyThrottle4Set
KeySimEvent
= "THROTTLE4_SET"
KeyThrottle1Full
KeySimEvent
= "THROTTLE1_FULL"
KeyThrottle1Incr
KeySimEvent
= "THROTTLE1_INCR"
KeyThrottle1IncrSmall
KeySimEvent
= "THROTTLE1_INCR_SMALL"
KeyThrottle1Decr
KeySimEvent
= "THROTTLE1_DECR"
KeyThrottle1Cut
KeySimEvent
= "THROTTLE1_CUT"
KeyThrottle2Full
KeySimEvent
= "THROTTLE2_FULL"
KeyThrottle2Incr
KeySimEvent
= "THROTTLE2_INCR"
KeyThrottle2IncrSmall
KeySimEvent
= "THROTTLE2_INCR_SMALL"
KeyThrottle2Decr
KeySimEvent
= "THROTTLE2_DECR"
KeyThrottle2Cut
KeySimEvent
= "THROTTLE2_CUT"
KeyThrottle3Full
KeySimEvent
= "THROTTLE3_FULL"
KeyThrottle3Incr
KeySimEvent
= "THROTTLE3_INCR"
KeyThrottle3IncrSmall
KeySimEvent
= "THROTTLE3_INCR_SMALL"
KeyThrottle3Decr
KeySimEvent
= "THROTTLE3_DECR"
KeyThrottle3Cut
KeySimEvent
= "THROTTLE3_CUT"
KeyThrottle4Full
KeySimEvent
= "THROTTLE4_FULL"
KeyThrottle4Incr
KeySimEvent
= "THROTTLE4_INCR"
KeyThrottle4IncrSmall
KeySimEvent
= "THROTTLE4_INCR_SMALL"
KeyThrottle4Decr
KeySimEvent
= "THROTTLE4_DECR"
KeyThrottle4Cut
KeySimEvent
= "THROTTLE4_CUT"
KeyThrottle10
KeySimEvent
= "THROTTLE_10"
KeyThrottle20
KeySimEvent
= "THROTTLE_20"
KeyThrottle30
KeySimEvent
= "THROTTLE_30"
KeyThrottle40
KeySimEvent
= "THROTTLE_40"
KeyThrottle50
KeySimEvent
= "THROTTLE_50"
KeyThrottle60
KeySimEvent
= "THROTTLE_60"
KeyThrottle70
KeySimEvent
= "THROTTLE_70"
KeyThrottle80
KeySimEvent
= "THROTTLE_80"
KeyThrottle90
KeySimEvent
= "THROTTLE_90"
KeyAxisThrottle1Set
KeySimEvent
= "AXIS_THROTTLE1_SET"
KeyAxisThrottle2Set
KeySimEvent
= "AXIS_THROTTLE2_SET"
KeyAxisThrottle3Set
KeySimEvent
= "AXIS_THROTTLE3_SET"
KeyAxisThrottle4Set
KeySimEvent
= "AXIS_THROTTLE4_SET"
KeyThrottle1DecrSmall
KeySimEvent
= "THROTTLE1_DECR_SMALL"
KeyThrottle2DecrSmall
KeySimEvent
= "THROTTLE2_DECR_SMALL"
KeyThrottle3DecrSmall
KeySimEvent
= "THROTTLE3_DECR_SMALL"
KeyThrottle4DecrSmall
KeySimEvent
= "THROTTLE4_DECR_SMALL"
KeyPropPitchDecrSmall
KeySimEvent
= "PROP_PITCH_DECR_SMALL"
KeyPropPitch1DecrSmall
KeySimEvent
= "PROP_PITCH1_DECR_SMALL"
KeyPropPitch2DecrSmall
KeySimEvent
= "PROP_PITCH2_DECR_SMALL"
KeyPropPitch3DecrSmall
KeySimEvent
= "PROP_PITCH3_DECR_SMALL"
KeyPropPitch4DecrSmall
KeySimEvent
= "PROP_PITCH4_DECR_SMALL"
KeyMixture1Rich
KeySimEvent
= "MIXTURE1_RICH"
KeyMixture1Incr
KeySimEvent
= "MIXTURE1_INCR"
KeyMixture1IncrSmall
KeySimEvent
= "MIXTURE1_INCR_SMALL"
KeyMixture1Decr
KeySimEvent
= "MIXTURE1_DECR"
KeyMixture1Lean
KeySimEvent
= "MIXTURE1_LEAN"
KeyMixture2Rich
KeySimEvent
= "MIXTURE2_RICH"
KeyMixture2Incr
KeySimEvent
= "MIXTURE2_INCR"
KeyMixture2IncrSmall
KeySimEvent
= "MIXTURE2_INCR_SMALL"
KeyMixture2Decr
KeySimEvent
= "MIXTURE2_DECR"
KeyMixture2Lean
KeySimEvent
= "MIXTURE2_LEAN"
KeyMixture3Rich
KeySimEvent
= "MIXTURE3_RICH"
KeyMixture3Incr
KeySimEvent
= "MIXTURE3_INCR"
KeyMixture3IncrSmall
KeySimEvent
= "MIXTURE3_INCR_SMALL"
KeyMixture3Decr
KeySimEvent
= "MIXTURE3_DECR"
KeyMixture3Lean
KeySimEvent
= "MIXTURE3_LEAN"
KeyMixture4Rich
KeySimEvent
= "MIXTURE4_RICH"
KeyMixture4Incr
KeySimEvent
= "MIXTURE4_INCR"
KeyMixture4IncrSmall
KeySimEvent
= "MIXTURE4_INCR_SMALL"
KeyMixture4Decr
KeySimEvent
= "MIXTURE4_DECR"
KeyMixture4Lean
KeySimEvent
= "MIXTURE4_LEAN"
KeyMixtureSet
KeySimEvent
= "MIXTURE_SET"
KeyMixtureRich
KeySimEvent
= "MIXTURE_RICH"
KeyMixtureIncr
KeySimEvent
= "MIXTURE_INCR"
KeyMixtureIncrSmall
KeySimEvent
= "MIXTURE_INCR_SMALL"
KeyMixtureDecr
KeySimEvent
= "MIXTURE_DECR"
KeyMixtureLean
KeySimEvent
= "MIXTURE_LEAN"
KeyMixture1Set
KeySimEvent
= "MIXTURE1_SET"
KeyMixture2Set
KeySimEvent
= "MIXTURE2_SET"
KeyMixture3Set
KeySimEvent
= "MIXTURE3_SET"
KeyMixture4Set
KeySimEvent
= "MIXTURE4_SET"
KeyAxisMixtureSet
KeySimEvent
= "AXIS_MIXTURE_SET"
KeyAxisMixture1Set
KeySimEvent
= "AXIS_MIXTURE1_SET"
KeyAxisMixture2Set
KeySimEvent
= "AXIS_MIXTURE2_SET"
KeyAxisMixture3Set
KeySimEvent
= "AXIS_MIXTURE3_SET"
KeyAxisMixture4Set
KeySimEvent
= "AXIS_MIXTURE4_SET"
KeyMixtureSetBest
KeySimEvent
= "MIXTURE_SET_BEST"
KeyMixtureDecrSmall
KeySimEvent
= "MIXTURE_DECR_SMALL"
KeyMixture1DecrSmall
KeySimEvent
= "MIXTURE1_DECR_SMALL"
KeyMixture2DecrSmall
KeySimEvent
= "MIXTURE2_DECR_SMALL"
KeyMixture3DecrSmall
KeySimEvent
= "MIXTURE3_DECR_SMALL"
KeyMixture4DecrSmall
KeySimEvent
= "MIXTURE4_DECR_SMALL"
KeyPropPitchSet
KeySimEvent
= "PROP_PITCH_SET"
KeyPropPitchLo
KeySimEvent
= "PROP_PITCH_LO"
KeyPropPitchIncr
KeySimEvent
= "PROP_PITCH_INCR"
KeyPropPitchIncrSmall
KeySimEvent
= "PROP_PITCH_INCR_SMALL"
KeyPropPitchDecr
KeySimEvent
= "PROP_PITCH_DECR"
KeyPropPitchHi
KeySimEvent
= "PROP_PITCH_HI"
KeyPropPitch1Set
KeySimEvent
= "PROP_PITCH1_SET"
KeyPropPitch2Set
KeySimEvent
= "PROP_PITCH2_SET"
KeyPropPitch3Set
KeySimEvent
= "PROP_PITCH3_SET"
KeyPropPitch4Set
KeySimEvent
= "PROP_PITCH4_SET"
KeyPropPitch1Lo
KeySimEvent
= "PROP_PITCH1_LO"
KeyPropPitch1Incr
KeySimEvent
= "PROP_PITCH1_INCR"
KeyPropPitch1IncrSmall
KeySimEvent
= "PROP_PITCH1_INCR_SMALL"
KeyPropPitch1Decr
KeySimEvent
= "PROP_PITCH1_DECR"
KeyPropPitch1Hi
KeySimEvent
= "PROP_PITCH1_HI"
KeyPropPitch2Lo
KeySimEvent
= "PROP_PITCH2_LO"
KeyPropPitch2Incr
KeySimEvent
= "PROP_PITCH2_INCR"
KeyPropPitch2IncrSmall
KeySimEvent
= "PROP_PITCH2_INCR_SMALL"
KeyPropPitch2Decr
KeySimEvent
= "PROP_PITCH2_DECR"
KeyPropPitch2Hi
KeySimEvent
= "PROP_PITCH2_HI"
KeyPropPitch3Lo
KeySimEvent
= "PROP_PITCH3_LO"
KeyPropPitch3Incr
KeySimEvent
= "PROP_PITCH3_INCR"
KeyPropPitch3IncrSmall
KeySimEvent
= "PROP_PITCH3_INCR_SMALL"
KeyPropPitch3Decr
KeySimEvent
= "PROP_PITCH3_DECR"
KeyPropPitch3Hi
KeySimEvent
= "PROP_PITCH3_HI"
KeyPropPitch4Lo
KeySimEvent
= "PROP_PITCH4_LO"
KeyPropPitch4Incr
KeySimEvent
= "PROP_PITCH4_INCR"
KeyPropPitch4IncrSmall
KeySimEvent
= "PROP_PITCH4_INCR_SMALL"
KeyPropPitch4Decr
KeySimEvent
= "PROP_PITCH4_DECR"
KeyPropPitch4Hi
KeySimEvent
= "PROP_PITCH4_HI"
KeyAxisPropellerSet
KeySimEvent
= "AXIS_PROPELLER_SET"
KeyAxisPropeller1Set
KeySimEvent
= "AXIS_PROPELLER1_SET"
KeyAxisPropeller2Set
KeySimEvent
= "AXIS_PROPELLER2_SET"
KeyAxisPropeller3Set
KeySimEvent
= "AXIS_PROPELLER3_SET"
KeyAxisPropeller4Set
KeySimEvent
= "AXIS_PROPELLER4_SET"
KeyJetStarter
KeySimEvent
= "JET_STARTER"
KeyStarterSet
KeySimEvent
= "MAGNETO_SET"
KeyToggleStarter1
KeySimEvent
= "TOGGLE_STARTER1"
KeyToggleStarter2
KeySimEvent
= "TOGGLE_STARTER2"
KeyToggleStarter3
KeySimEvent
= "TOGGLE_STARTER3"
KeyToggleStarter4
KeySimEvent
= "TOGGLE_STARTER4"
KeyToggleAllStarters
KeySimEvent
= "TOGGLE_ALL_STARTERS"
KeyEngineAutoStart
KeySimEvent
= "ENGINE_AUTO_START"
KeyEngineAutoShutdown
KeySimEvent
= "ENGINE_AUTO_SHUTDOWN"
KeyMagneto
KeySimEvent
= "MAGNETO"
KeyMagnetoDecr
KeySimEvent
= "MAGNETO_DECR"
KeyMagnetoIncr
KeySimEvent
= "MAGNETO_INCR"
KeyMagneto1Off
KeySimEvent
= "MAGNETO1_OFF"
KeyMagneto1Right
KeySimEvent
= "MAGNETO1_RIGHT"
KeyMagneto1Left
KeySimEvent
= "MAGNETO1_LEFT"
KeyMagneto1Both
KeySimEvent
= "MAGNETO1_BOTH"
KeyMagneto1Start
KeySimEvent
= "MAGNETO1_START"
KeyMagneto2Off
KeySimEvent
= "MAGNETO2_OFF"
KeyMagneto2Right
KeySimEvent
= "MAGNETO2_RIGHT"
KeyMagneto2Left
KeySimEvent
= "MAGNETO2_LEFT"
KeyMagneto2Both
KeySimEvent
= "MAGNETO2_BOTH"
KeyMagneto2Start
KeySimEvent
= "MAGNETO2_START"
KeyMagneto3Off
KeySimEvent
= "MAGNETO3_OFF"
KeyMagneto3Right
KeySimEvent
= "MAGNETO3_RIGHT"
KeyMagneto3Left
KeySimEvent
= "MAGNETO3_LEFT"
KeyMagneto3Both
KeySimEvent
= "MAGNETO3_BOTH"
KeyMagneto3Start
KeySimEvent
= "MAGNETO3_START"
KeyMagneto4Off
KeySimEvent
= "MAGNETO4_OFF"
KeyMagneto4Right
KeySimEvent
= "MAGNETO4_RIGHT"
KeyMagneto4Left
KeySimEvent
= "MAGNETO4_LEFT"
KeyMagneto4Both
KeySimEvent
= "MAGNETO4_BOTH"
KeyMagneto4Start
KeySimEvent
= "MAGNETO4_START"
KeyMagnetoOff
KeySimEvent
= "MAGNETO_OFF"
KeyMagnetoRight
KeySimEvent
= "MAGNETO_RIGHT"
KeyMagnetoLeft
KeySimEvent
= "MAGNETO_LEFT"
KeyMagnetoBoth
KeySimEvent
= "MAGNETO_BOTH"
KeyMagnetoStart
KeySimEvent
= "MAGNETO_START"
KeyMagneto1Decr
KeySimEvent
= "MAGNETO1_DECR"
KeyMagneto1Incr
KeySimEvent
= "MAGNETO1_INCR"
KeyMagneto2Decr
KeySimEvent
= "MAGNETO2_DECR"
KeyMagneto2Incr
KeySimEvent
= "MAGNETO2_INCR"
KeyMagneto3Decr
KeySimEvent
= "MAGNETO3_DECR"
KeyMagneto3Incr
KeySimEvent
= "MAGNETO3_INCR"
KeyMagneto4Decr
KeySimEvent
= "MAGNETO4_DECR"
KeyMagneto4Incr
KeySimEvent
= "MAGNETO4_INCR"
KeyMagneto1Set
KeySimEvent
= "MAGNETO1_SET"
KeyMagneto2Set
KeySimEvent
= "MAGNETO2_SET"
KeyMagneto3Set
KeySimEvent
= "MAGNETO3_SET"
KeyMagneto4Set
KeySimEvent
= "MAGNETO4_SET"
KeyAntiIceOn
KeySimEvent
= "ANTI_ICE_ON"
KeyAntiIceOff
KeySimEvent
= "ANTI_ICE_OFF"
KeyAntiIceSet
KeySimEvent
= "ANTI_ICE_SET"
KeyAntiIceToggle
KeySimEvent
= "ANTI_ICE_TOGGLE"
KeyAntiIceToggleEng1
KeySimEvent
= "ANTI_ICE_TOGGLE_ENG1"
KeyAntiIceToggleEng2
KeySimEvent
= "ANTI_ICE_TOGGLE_ENG2"
KeyAntiIceToggleEng3
KeySimEvent
= "ANTI_ICE_TOGGLE_ENG3"
KeyAntiIceToggleEng4
KeySimEvent
= "ANTI_ICE_TOGGLE_ENG4"
KeyAntiIceSetEng1
KeySimEvent
= "ANTI_ICE_SET_ENG1"
KeyAntiIceSetEng2
KeySimEvent
= "ANTI_ICE_SET_ENG2"
KeyAntiIceSetEng3
KeySimEvent
= "ANTI_ICE_SET_ENG3"
KeyAntiIceSetEng4
KeySimEvent
= "ANTI_ICE_SET_ENG4"
KeyToggleFuelValveAll
KeySimEvent
= "TOGGLE_FUEL_VALVE_ALL"
KeyToggleFuelValveEng1
KeySimEvent
= "TOGGLE_FUEL_VALVE_ENG1"
KeyToggleFuelValveEng2
KeySimEvent
= "TOGGLE_FUEL_VALVE_ENG2"
KeyToggleFuelValveEng3
KeySimEvent
= "TOGGLE_FUEL_VALVE_ENG3"
KeyToggleFuelValveEng4
KeySimEvent
= "TOGGLE_FUEL_VALVE_ENG4"
KeyCowlflap1Set
KeySimEvent
= "COWLFLAP1_SET"
KeyCowlflap2Set
KeySimEvent
= "COWLFLAP2_SET"
KeyCowlflap3Set
KeySimEvent
= "COWLFLAP3_SET"
KeyCowlflap4Set
KeySimEvent
= "COWLFLAP4_SET"
KeyIncCowlFlaps
KeySimEvent
= "INC_COWL_FLAPS"
KeyDecCowlFlaps
KeySimEvent
= "DEC_COWL_FLAPS"
KeyIncCowlFlaps1
KeySimEvent
= "INC_COWL_FLAPS1"
KeyDecCowlFlaps1
KeySimEvent
= "DEC_COWL_FLAPS1"
KeyIncCowlFlaps2
KeySimEvent
= "INC_COWL_FLAPS2"
KeyDecCowlFlaps2
KeySimEvent
= "DEC_COWL_FLAPS2"
KeyIncCowlFlaps3
KeySimEvent
= "INC_COWL_FLAPS3"
KeyDecCowlFlaps3
KeySimEvent
= "DEC_COWL_FLAPS3"
KeyIncCowlFlaps4
KeySimEvent
= "INC_COWL_FLAPS4"
KeyDecCowlFlaps4
KeySimEvent
= "DEC_COWL_FLAPS4"
KeyFuelPump
KeySimEvent
= "FUEL_PUMP"
KeyToggleElectFuelPump
KeySimEvent
= "TOGGLE_ELECT_FUEL_PUMP"
KeyToggleElectFuelPump1
KeySimEvent
= "TOGGLE_ELECT_FUEL_PUMP1"
KeyToggleElectFuelPump2
KeySimEvent
= "TOGGLE_ELECT_FUEL_PUMP2"
KeyToggleElectFuelPump3
KeySimEvent
= "TOGGLE_ELECT_FUEL_PUMP3"
KeyToggleElectFuelPump4
KeySimEvent
= "TOGGLE_ELECT_FUEL_PUMP4"
KeyEnginePrimer
KeySimEvent
= "ENGINE_PRIMER"
KeyTogglePrimer
KeySimEvent
= "TOGGLE_PRIMER"
KeyTogglePrimer1
KeySimEvent
= "TOGGLE_PRIMER1"
KeyTogglePrimer2
KeySimEvent
= "TOGGLE_PRIMER2"
KeyTogglePrimer3
KeySimEvent
= "TOGGLE_PRIMER3"
KeyTogglePrimer4
KeySimEvent
= "TOGGLE_PRIMER4"
KeyToggleFeatherSwitches
KeySimEvent
= "TOGGLE_FEATHER_SWITCHES"
KeyToggleFeatherSwitch1
KeySimEvent
= "TOGGLE_FEATHER_SWITCH_1"
KeyToggleFeatherSwitch2
KeySimEvent
= "TOGGLE_FEATHER_SWITCH_2"
KeyToggleFeatherSwitch3
KeySimEvent
= "TOGGLE_FEATHER_SWITCH_3"
KeyToggleFeatherSwitch4
KeySimEvent
= "TOGGLE_FEATHER_SWITCH_4"
KeyTogglePropSync
KeySimEvent
= "TOGGLE_PROPELLER_SYNC"
KeyToggleArmAutofeather
KeySimEvent
= "TOGGLE_AUTOFEATHER_ARM"
KeyToggleAfterburner
KeySimEvent
= "TOGGLE_AFTERBURNER"
KeyToggleAfterburner1
KeySimEvent
= "TOGGLE_AFTERBURNER1"
KeyToggleAfterburner2
KeySimEvent
= "TOGGLE_AFTERBURNER2"
KeyToggleAfterburner3
KeySimEvent
= "TOGGLE_AFTERBURNER3"
KeyToggleAfterburner4
KeySimEvent
= "TOGGLE_AFTERBURNER4"
KeyEngine
KeySimEvent
= "ENGINE"
KeySpoilersToggle
KeySimEvent
= "SPOILERS_TOGGLE"
KeyFlapsUp
KeySimEvent
= "FLAPS_UP"
KeyFlaps1
KeySimEvent
= "FLAPS_1"
KeyFlaps2
KeySimEvent
= "FLAPS_2"
KeyFlaps3
KeySimEvent
= "FLAPS_3"
KeyFlapsDown
KeySimEvent
= "FLAPS_DOWN"
KeyElevTrimDn
KeySimEvent
= "ELEV_TRIM_DN"
KeyElevDown
KeySimEvent
= "ELEV_DOWN"
KeyAileronsLeft
KeySimEvent
= "AILERONS_LEFT"
KeyCenterAilerRudder
KeySimEvent
= "CENTER_AILER_RUDDER"
KeyAileronsRight
KeySimEvent
= "AILERONS_RIGHT"
KeyElevTrimUp
KeySimEvent
= "ELEV_TRIM_UP"
KeyElevUp
KeySimEvent
= "ELEV_UP"
KeyRudderLeft
KeySimEvent
= "RUDDER_LEFT"
KeyRudderCenter
KeySimEvent
= "RUDDER_CENTER"
KeyRudderRight
KeySimEvent
= "RUDDER_RIGHT"
KeyElevatorSet
KeySimEvent
= "ELEVATOR_SET"
KeyAileronSet
KeySimEvent
= "AILERON_SET"
KeyRudderSet
KeySimEvent
= "RUDDER_SET"
KeyFlapsIncr
KeySimEvent
= "FLAPS_INCR"
KeyFlapsDecr
KeySimEvent
= "FLAPS_DECR"
KeyAxisElevatorSet
KeySimEvent
= "AXIS_ELEVATOR_SET"
KeyAxisAileronsSet
KeySimEvent
= "AXIS_AILERONS_SET"
KeyAxisRudderSet
KeySimEvent
= "AXIS_RUDDER_SET"
KeyAxisElevTrimSet
KeySimEvent
= "AXIS_ELEV_TRIM_SET"
KeySpoilersSet
KeySimEvent
= "SPOILERS_SET"
KeySpoilersArmToggle
KeySimEvent
= "SPOILERS_ARM_TOGGLE"
KeySpoilersOn
KeySimEvent
= "SPOILERS_ON"
KeySpoilersOff
KeySimEvent
= "SPOILERS_OFF"
KeySpoilersArmOn
KeySimEvent
= "SPOILERS_ARM_ON"
KeySpoilersArmOff
KeySimEvent
= "SPOILERS_ARM_OFF"
KeySpoilersArmSet
KeySimEvent
= "SPOILERS_ARM_SET"
KeyAileronTrimLeft
KeySimEvent
= "AILERON_TRIM_LEFT"
KeyAileronTrimRight
KeySimEvent
= "AILERON_TRIM_RIGHT"
KeyRudderTrimLeft
KeySimEvent
= "RUDDER_TRIM_LEFT"
KeyRudderTrimRight
KeySimEvent
= "RUDDER_TRIM_RIGHT"
KeyAxisSpoilerSet
KeySimEvent
= "AXIS_SPOILER_SET"
KeyFlapsSet
KeySimEvent
= "FLAPS_SET"
KeyElevatorTrimSet
KeySimEvent
= "ELEVATOR_TRIM_SET"
KeyAxisFlapsSet
KeySimEvent
= "AXIS_FLAPS_SET"
KeyApMaster
KeySimEvent
= "AP_MASTER"
KeyAutopilotOff
KeySimEvent
= "AUTOPILOT_OFF"
KeyAutopilotOn
KeySimEvent
= "AUTOPILOT_ON"
KeyYawDamperToggle
KeySimEvent
= "YAW_DAMPER_TOGGLE"
KeyApPanelHeadingHold
KeySimEvent
= "AP_PANEL_HEADING_HOLD"
KeyApPanelAltitudeHold
KeySimEvent
= "AP_PANEL_ALTITUDE_HOLD"
KeyApAttHoldOn
KeySimEvent
= "AP_ATT_HOLD_ON"
KeyApLocHoldOn
KeySimEvent
= "AP_LOC_HOLD_ON"
KeyApAprHoldOn
KeySimEvent
= "AP_APR_HOLD_ON"
KeyApHdgHoldOn
KeySimEvent
= "AP_HDG_HOLD_ON"
KeyApAltHoldOn
KeySimEvent
= "AP_ALT_HOLD_ON"
KeyApWingLevelerOn
KeySimEvent
= "AP_WING_LEVELER_ON"
KeyApBcHoldOn
KeySimEvent
= "AP_BC_HOLD_ON"
KeyApNav1HoldOn
KeySimEvent
= "AP_NAV1_HOLD_ON"
KeyApAttHoldOff
KeySimEvent
= "AP_ATT_HOLD_OFF"
KeyApLocHoldOff
KeySimEvent
= "AP_LOC_HOLD_OFF"
KeyApAprHoldOff
KeySimEvent
= "AP_APR_HOLD_OFF"
KeyApHdgHoldOff
KeySimEvent
= "AP_HDG_HOLD_OFF"
KeyApAltHoldOff
KeySimEvent
= "AP_ALT_HOLD_OFF"
KeyApWingLevelerOff
KeySimEvent
= "AP_WING_LEVELER_OFF"
KeyApBcHoldOff
KeySimEvent
= "AP_BC_HOLD_OFF"
KeyApNav1HoldOff
KeySimEvent
= "AP_NAV1_HOLD_OFF"
KeyApAirspeedHold
KeySimEvent
= "AP_AIRSPEED_HOLD"
KeyAutoThrottleArm
KeySimEvent
= "AUTO_THROTTLE_ARM"
KeyAutoThrottleToGa
KeySimEvent
= "AUTO_THROTTLE_TO_GA"
KeyHeadingBugInc
KeySimEvent
= "HEADING_BUG_INC"
KeyHeadingBugDec
KeySimEvent
= "HEADING_BUG_DEC"
KeyHeadingBugSet
KeySimEvent
= "HEADING_BUG_SET"
KeyApPanelSpeedHold
KeySimEvent
= "AP_PANEL_SPEED_HOLD"
KeyApAltVarInc
KeySimEvent
= "AP_ALT_VAR_INC"
KeyApAltVarDec
KeySimEvent
= "AP_ALT_VAR_DEC"
KeyApVsVarInc
KeySimEvent
= "AP_VS_VAR_INC"
KeyApVsVarDec
KeySimEvent
= "AP_VS_VAR_DEC"
KeyApSpdVarInc
KeySimEvent
= "AP_SPD_VAR_INC"
KeyApSpdVarDec
KeySimEvent
= "AP_SPD_VAR_DEC"
KeyApPanelMachHold
KeySimEvent
= "AP_PANEL_MACH_HOLD"
KeyApMachVarInc
KeySimEvent
= "AP_MACH_VAR_INC"
KeyApMachVarDec
KeySimEvent
= "AP_MACH_VAR_DEC"
KeyApMachHold
KeySimEvent
= "AP_MACH_HOLD"
KeyApAltVarSetMetric
KeySimEvent
= "AP_ALT_VAR_SET_METRIC"
KeyApVsVarSetEnglish
KeySimEvent
= "AP_VS_VAR_SET_ENGLISH"
KeyApSpdVarSet
KeySimEvent
= "AP_SPD_VAR_SET"
KeyApMachVarSet
KeySimEvent
= "AP_MACH_VAR_SET"
KeyYawDamperOn
KeySimEvent
= "YAW_DAMPER_ON"
KeyYawDamperOff
KeySimEvent
= "YAW_DAMPER_OFF"
KeyYawDamperSet
KeySimEvent
= "YAW_DAMPER_SET"
KeyApAirspeedOn
KeySimEvent
= "AP_AIRSPEED_ON"
KeyApAirspeedOff
KeySimEvent
= "AP_AIRSPEED_OFF"
KeyApAirspeedSet
KeySimEvent
= "AP_AIRSPEED_SET"
KeyApMachOn
KeySimEvent
= "AP_MACH_ON"
KeyApMachOff
KeySimEvent
= "AP_MACH_OFF"
KeyApMachSet
KeySimEvent
= "AP_MACH_SET"
KeyApPanelAltitudeOn
KeySimEvent
= "AP_PANEL_ALTITUDE_ON"
KeyApPanelAltitudeOff
KeySimEvent
= "AP_PANEL_ALTITUDE_OFF"
KeyApPanelAltitudeSet
KeySimEvent
= "AP_PANEL_ALTITUDE_SET"
KeyApPanelHeadingOn
KeySimEvent
= "AP_PANEL_HEADING_ON"
KeyApPanelHeadingOff
KeySimEvent
= "AP_PANEL_HEADING_OFF"
KeyApPanelHeadingSet
KeySimEvent
= "AP_PANEL_HEADING_SET"
KeyApPanelMachOn
KeySimEvent
= "AP_PANEL_MACH_ON"
KeyApPanelMachOff
KeySimEvent
= "AP_PANEL_MACH_OFF"
KeyApPanelMachSet
KeySimEvent
= "AP_PANEL_MACH_SET"
KeyApPanelSpeedOn
KeySimEvent
= "AP_PANEL_SPEED_ON"
KeyApPanelSpeedOff
KeySimEvent
= "AP_PANEL_SPEED_OFF"
KeyApPanelSpeedSet
KeySimEvent
= "AP_PANEL_SPEED_SET"
KeyApAltVarSetEnglish
KeySimEvent
= "AP_ALT_VAR_SET_ENGLISH"
KeyApVsVarSetMetric
KeySimEvent
= "AP_VS_VAR_SET_METRIC"
KeyToggleFlightDirector
KeySimEvent
= "TOGGLE_FLIGHT_DIRECTOR"
KeySyncFlightDirectorPitch
KeySimEvent
= "SYNC_FLIGHT_DIRECTOR_PITCH"
KeyIncAutobrakeControl
KeySimEvent
= "INCREASE_AUTOBRAKE_CONTROL"
KeyDecAutobrakeControl
KeySimEvent
= "DECREASE_AUTOBRAKE_CONTROL"
KeyAutopilotAirspeedHoldCurrent
KeySimEvent
= "AP_PANEL_SPEED_HOLD_TOGGLE"
KeyAutopilotMachHoldCurrent
KeySimEvent
= "AP_PANEL_MACH_HOLD_TOGGLE"
KeyApNavSelectSet
KeySimEvent
= "AP_NAV_SELECT_SET"
KeyHeadingBugSelect
KeySimEvent
= "HEADING_BUG_SELECT"
KeyAltitudeBugSelect
KeySimEvent
= "ALTITUDE_BUG_SELECT"
KeyVsiBugSelect
KeySimEvent
= "VSI_BUG_SELECT"
KeyAirspeedBugSelect
KeySimEvent
= "AIRSPEED_BUG_SELECT"
KeyApPitchRefIncUp
KeySimEvent
= "AP_PITCH_REF_INC_UP"
KeyApPitchRefIncDn
KeySimEvent
= "AP_PITCH_REF_INC_DN"
KeyApPitchRefSelect
KeySimEvent
= "AP_PITCH_REF_SELECT"
KeyApAttHold
KeySimEvent
= "AP_ATT_HOLD"
KeyApLocHold
KeySimEvent
= "AP_LOC_HOLD"
KeyApAprHold
KeySimEvent
= "AP_APR_HOLD"
KeyApHdgHold
KeySimEvent
= "AP_HDG_HOLD"
KeyApAltHold
KeySimEvent
= "AP_ALT_HOLD"
KeyApWingLeveler
KeySimEvent
= "AP_WING_LEVELER"
KeyApBcHold
KeySimEvent
= "AP_BC_HOLD"
KeyApNav1Hold
KeySimEvent
= "AP_NAV1_HOLD"
KeyFuelSelectorOff
KeySimEvent
= "FUEL_SELECTOR_OFF"
KeyFuelSelectorAll
KeySimEvent
= "FUEL_SELECTOR_ALL"
KeyFuelSelectorLeft
KeySimEvent
= "FUEL_SELECTOR_LEFT"
KeyFuelSelectorRight
KeySimEvent
= "FUEL_SELECTOR_RIGHT"
KeyFuelSelectorLeftAux
KeySimEvent
= "FUEL_SELECTOR_LEFT_AUX"
KeyFuelSelectorRightAux
KeySimEvent
= "FUEL_SELECTOR_RIGHT_AUX"
KeyFuelSelectorCenter
KeySimEvent
= "FUEL_SELECTOR_CENTER"
KeyFuelSelectorSet
KeySimEvent
= "FUEL_SELECTOR_SET"
KeyFuelSelector2Off
KeySimEvent
= "FUEL_SELECTOR_2_OFF"
KeyFuelSelector2All
KeySimEvent
= "FUEL_SELECTOR_2_ALL"
KeyFuelSelector2Left
KeySimEvent
= "FUEL_SELECTOR_2_LEFT"
KeyFuelSelector2Right
KeySimEvent
= "FUEL_SELECTOR_2_RIGHT"
KeyFuelSelector2LeftAux
KeySimEvent
= "FUEL_SELECTOR_2_LEFT_AUX"
KeyFuelSelector2RightAux
KeySimEvent
= "FUEL_SELECTOR_2_RIGHT_AUX"
KeyFuelSelector2Center
KeySimEvent
= "FUEL_SELECTOR_2_CENTER"
KeyFuelSelector2Set
KeySimEvent
= "FUEL_SELECTOR_2_SET"
KeyFuelSelector3Off
KeySimEvent
= "FUEL_SELECTOR_3_OFF"
KeyFuelSelector3All
KeySimEvent
= "FUEL_SELECTOR_3_ALL"
KeyFuelSelector3Left
KeySimEvent
= "FUEL_SELECTOR_3_LEFT"
KeyFuelSelector3Right
KeySimEvent
= "FUEL_SELECTOR_3_RIGHT"
KeyFuelSelector3LeftAux
KeySimEvent
= "FUEL_SELECTOR_3_LEFT_AUX"
KeyFuelSelector3RightAux
KeySimEvent
= "FUEL_SELECTOR_3_RIGHT_AUX"
KeyFuelSelector3Center
KeySimEvent
= "FUEL_SELECTOR_3_CENTER"
KeyFuelSelector3Set
KeySimEvent
= "FUEL_SELECTOR_3_SET"
KeyFuelSelector4Off
KeySimEvent
= "FUEL_SELECTOR_4_OFF"
KeyFuelSelector4All
KeySimEvent
= "FUEL_SELECTOR_4_ALL"
KeyFuelSelector4Left
KeySimEvent
= "FUEL_SELECTOR_4_LEFT"
KeyFuelSelector4Right
KeySimEvent
= "FUEL_SELECTOR_4_RIGHT"
KeyFuelSelector4LeftAux
KeySimEvent
= "FUEL_SELECTOR_4_LEFT_AUX"
KeyFuelSelector4RightAux
KeySimEvent
= "FUEL_SELECTOR_4_RIGHT_AUX"
KeyFuelSelector4Center
KeySimEvent
= "FUEL_SELECTOR_4_CENTER"
KeyFuelSelector4Set
KeySimEvent
= "FUEL_SELECTOR_4_SET"
KeyCrossFeedOpen
KeySimEvent
= "CROSS_FEED_OPEN"
KeyCrossFeedToggle
KeySimEvent
= "CROSS_FEED_TOGGLE"
KeyCrossFeedOff
KeySimEvent
= "CROSS_FEED_OFF"
KeyXpndr
KeySimEvent
= "XPNDR"
KeyAdf
KeySimEvent
= "ADF"
KeyDme
KeySimEvent
= "DME"
KeyComRadio
KeySimEvent
= "COM_RADIO"
KeyVorObs
KeySimEvent
= "VOR_OBS"
KeyNavRadio
KeySimEvent
= "NAV_RADIO"
KeyComRadioWholeDec
KeySimEvent
= "COM_RADIO_WHOLE_DEC"
KeyComRadioWholeInc
KeySimEvent
= "COM_RADIO_WHOLE_INC"
KeyComRadioFractDec
KeySimEvent
= "COM_RADIO_FRACT_DEC"
KeyComRadioFractInc
KeySimEvent
= "COM_RADIO_FRACT_INC"
KeyNav1RadioWholeDec
KeySimEvent
= "NAV1_RADIO_WHOLE_DEC"
KeyNav1RadioWholeInc
KeySimEvent
= "NAV1_RADIO_WHOLE_INC"
KeyNav1RadioFractDec
KeySimEvent
= "NAV1_RADIO_FRACT_DEC"
KeyNav1RadioFractInc
KeySimEvent
= "NAV1_RADIO_FRACT_INC"
KeyNav2RadioWholeDec
KeySimEvent
= "NAV2_RADIO_WHOLE_DEC"
KeyNav2RadioWholeInc
KeySimEvent
= "NAV2_RADIO_WHOLE_INC"
KeyNav2RadioFractDec
KeySimEvent
= "NAV2_RADIO_FRACT_DEC"
KeyNav2RadioFractInc
KeySimEvent
= "NAV2_RADIO_FRACT_INC"
KeyAdf100Inc
KeySimEvent
= "ADF_100_INC"
KeyAdf10Inc
KeySimEvent
= "ADF_10_INC"
KeyAdf1Inc
KeySimEvent
= "ADF_1_INC"
KeyXpndr1000Inc
KeySimEvent
= "XPNDR_1000_INC"
KeyXpndr100Inc
KeySimEvent
= "XPNDR_100_INC"
KeyXpndr10Inc
KeySimEvent
= "XPNDR_10_INC"
KeyXpndr1Inc
KeySimEvent
= "XPNDR_1_INC"
KeyVor1ObiDec
KeySimEvent
= "VOR1_OBI_DEC"
KeyVor1ObiInc
KeySimEvent
= "VOR1_OBI_INC"
KeyVor2ObiDec
KeySimEvent
= "VOR2_OBI_DEC"
KeyVor2ObiInc
KeySimEvent
= "VOR2_OBI_INC"
KeyAdf100Dec
KeySimEvent
= "ADF_100_DEC"
KeyAdf10Dec
KeySimEvent
= "ADF_10_DEC"
KeyAdf1Dec
KeySimEvent
= "ADF_1_DEC"
KeyComRadioSet
KeySimEvent
= "COM_RADIO_SET"
KeyNav1RadioSet
KeySimEvent
= "NAV1_RADIO_SET"
KeyNav2RadioSet
KeySimEvent
= "NAV2_RADIO_SET"
KeyAdfSet
KeySimEvent
= "ADF_SET"
KeyXpndrSet
KeySimEvent
= "XPNDR_SET"
KeyVor1Set
KeySimEvent
= "VOR1_SET"
KeyVor2Set
KeySimEvent
= "VOR2_SET"
KeyDme1Toggle
KeySimEvent
= "DME1_TOGGLE"
KeyDme2Toggle
KeySimEvent
= "DME2_TOGGLE"
KeyRadioVor1IdentDisable
KeySimEvent
= "RADIO_VOR1_IDENT_DISABLE"
KeyRadioVor2IdentDisable
KeySimEvent
= "RADIO_VOR2_IDENT_DISABLE"
KeyRadioDme1IdentDisable
KeySimEvent
= "RADIO_DME1_IDENT_DISABLE"
KeyRadioDme2IdentDisable
KeySimEvent
= "RADIO_DME2_IDENT_DISABLE"
KeyRadioAdfIdentDisable
KeySimEvent
= "RADIO_ADF_IDENT_DISABLE"
KeyRadioVor1IdentEnable
KeySimEvent
= "RADIO_VOR1_IDENT_ENABLE"
KeyRadioVor2IdentEnable
KeySimEvent
= "RADIO_VOR2_IDENT_ENABLE"
KeyRadioDme1IdentEnable
KeySimEvent
= "RADIO_DME1_IDENT_ENABLE"
KeyRadioDme2IdentEnable
KeySimEvent
= "RADIO_DME2_IDENT_ENABLE"
KeyRadioAdfIdentEnable
KeySimEvent
= "RADIO_ADF_IDENT_ENABLE"
KeyRadioVor1IdentToggle
KeySimEvent
= "RADIO_VOR1_IDENT_TOGGLE"
KeyRadioVor2IdentToggle
KeySimEvent
= "RADIO_VOR2_IDENT_TOGGLE"
KeyRadioDme1IdentToggle
KeySimEvent
= "RADIO_DME1_IDENT_TOGGLE"
KeyRadioDme2IdentToggle
KeySimEvent
= "RADIO_DME2_IDENT_TOGGLE"
KeyRadioAdfIdentToggle
KeySimEvent
= "RADIO_ADF_IDENT_TOGGLE"
KeyRadioVor1IdentSet
KeySimEvent
= "RADIO_VOR1_IDENT_SET"
KeyRadioVor2IdentSet
KeySimEvent
= "RADIO_VOR2_IDENT_SET"
KeyRadioDme1IdentSet
KeySimEvent
= "RADIO_DME1_IDENT_SET"
KeyRadioDme2IdentSet
KeySimEvent
= "RADIO_DME2_IDENT_SET"
KeyRadioAdfIdentSet
KeySimEvent
= "RADIO_ADF_IDENT_SET"
KeyAdfCardInc
KeySimEvent
= "ADF_CARD_INC"
KeyAdfCardDec
KeySimEvent
= "ADF_CARD_DEC"
KeyAdfCardSet
KeySimEvent
= "ADF_CARD_SET"
KeyDmeToggle
KeySimEvent
= "TOGGLE_DME"
KeyAvionicsMasterSet
KeySimEvent
= "AVIONICS_MASTER_SET"
KeyToggleAvionicsMaster
KeySimEvent
= "TOGGLE_AVIONICS_MASTER"
KeyComStbyRadioSet
KeySimEvent
= "COM_STBY_RADIO_SET"
KeyComStbyRadioSwitchTo
KeySimEvent
= "COM_STBY_RADIO_SWAP"
KeyComRadioSwap
KeySimEvent
= "COM_STBY_RADIO_SWAP"
KeyComRadioFractDecCarry
KeySimEvent
= "COM_RADIO_FRACT_DEC_CARRY"
KeyComRadioFractIncCarry
KeySimEvent
= "COM_RADIO_FRACT_INC_CARRY"
KeyCom2RadioWholeDec
KeySimEvent
= "COM2_RADIO_WHOLE_DEC"
KeyCom2RadioWholeInc
KeySimEvent
= "COM2_RADIO_WHOLE_INC"
KeyCom2RadioFractDec
KeySimEvent
= "COM2_RADIO_FRACT_DEC"
KeyCom2RadioFractDecCarry
KeySimEvent
= "COM2_RADIO_FRACT_DEC_CARRY"
KeyCom2RadioFractInc
KeySimEvent
= "COM2_RADIO_FRACT_INC"
KeyCom2RadioFractIncCarry
KeySimEvent
= "COM2_RADIO_FRACT_INC_CARRY"
KeyCom2RadioSet
KeySimEvent
= "COM2_RADIO_SET"
KeyCom2StbyRadioSet
KeySimEvent
= "COM2_STBY_RADIO_SET"
KeyCom2RadioSwap
KeySimEvent
= "COM2_RADIO_SWAP"
KeyNav1RadioFractDecCarry
KeySimEvent
= "NAV1_RADIO_FRACT_DEC_CARRY"
KeyNav1RadioFractIncCarry
KeySimEvent
= "NAV1_RADIO_FRACT_INC_CARRY"
KeyNav1StbySet
KeySimEvent
= "NAV1_STBY_SET"
KeyNav1RadioSwap
KeySimEvent
= "NAV1_RADIO_SWAP"
KeyNav2RadioFractDecCarry
KeySimEvent
= "NAV2_RADIO_FRACT_DEC_CARRY"
KeyNav2RadioFractIncCarry
KeySimEvent
= "NAV2_RADIO_FRACT_INC_CARRY"
KeyNav2StbySet
KeySimEvent
= "NAV2_STBY_SET"
KeyNav2RadioSwap
KeySimEvent
= "NAV2_RADIO_SWAP"
KeyAdf1RadioTenthsDec
KeySimEvent
= "ADF1_RADIO_TENTHS_DEC"
KeyAdf1RadioTenthsInc
KeySimEvent
= "ADF1_RADIO_TENTHS_INC"
KeyXpndr1000Dec
KeySimEvent
= "XPNDR_1000_DEC"
KeyXpndr100Dec
KeySimEvent
= "XPNDR_100_DEC"
KeyXpndr10Dec
KeySimEvent
= "XPNDR_10_DEC"
KeyXpndr1Dec
KeySimEvent
= "XPNDR_1_DEC"
KeyXpndrDecCarry
KeySimEvent
= "XPNDR_DEC_CARRY"
KeyXpndrIncCarry
KeySimEvent
= "XPNDR_INC_CARRY"
KeyAdfFractDecCarry
KeySimEvent
= "ADF_FRACT_DEC_CARRY"
KeyAdfFractIncCarry
KeySimEvent
= "ADF_FRACT_INC_CARRY"
KeyCom1TransmitSelect
KeySimEvent
= "COM1_TRANSMIT_SELECT"
KeyCom2TransmitSelect
KeySimEvent
= "COM2_TRANSMIT_SELECT"
KeyComReceiveAllToggle
KeySimEvent
= "COM_RECEIVE_ALL_TOGGLE"
KeyComReceiveAllSet
KeySimEvent
= "COM_RECEIVE_ALL_SET"
KeyMarkerSoundToggle
KeySimEvent
= "MARKER_SOUND_TOGGLE"
KeyAdfCompleteSet
KeySimEvent
= "ADF_COMPLETE_SET"
KeyAdfWholeInc
KeySimEvent
= "ADF1_WHOLE_INC"
KeyAdfWholeDec
KeySimEvent
= "ADF1_WHOLE_DEC"
KeyAdf2100Inc
KeySimEvent
= "ADF2_100_INC"
KeyAdf210Inc
KeySimEvent
= "ADF2_10_INC"
KeyAdf21Inc
KeySimEvent
= "ADF2_1_INC"
KeyAdf2RadioTenthsInc
KeySimEvent
= "ADF2_RADIO_TENTHS_INC"
KeyAdf2100Dec
KeySimEvent
= "ADF2_100_DEC"
KeyAdf210Dec
KeySimEvent
= "ADF2_10_DEC"
KeyAdf21Dec
KeySimEvent
= "ADF2_1_DEC"
KeyAdf2RadioTenthsDec
KeySimEvent
= "ADF2_RADIO_TENTHS_DEC"
KeyAdf2WholeInc
KeySimEvent
= "ADF2_WHOLE_INC"
KeyAdf2WholeDec
KeySimEvent
= "ADF2_WHOLE_DEC"
KeyAdf2FractIncCarry
KeySimEvent
= "ADF2_FRACT_DEC_CARRY"
KeyAdf2FractDecCarry
KeySimEvent
= "ADF2_FRACT_INC_CARRY"
KeyAdf2CompleteSet
KeySimEvent
= "ADF2_COMPLETE_SET"
KeyRadioAdf2IdentDisable
KeySimEvent
= "RADIO_ADF2_IDENT_DISABLE"
KeyRadioAdf2IdentEnable
KeySimEvent
= "RADIO_ADF2_IDENT_ENABLE"
KeyRadioAdf2IdentToggle
KeySimEvent
= "RADIO_ADF2_IDENT_TOGGLE"
KeyRadioAdf2IdentSet
KeySimEvent
= "RADIO_ADF2_IDENT_SET"
KeyFrequencySwap
KeySimEvent
= "FREQUENCY_SWAP"
KeyToggleGpsDrivesNav1
KeySimEvent
= "TOGGLE_GPS_DRIVES_NAV1"
KeyGpsPowerButton
KeySimEvent
= "GPS_POWER_BUTTON"
KeyGpsNearestButton
KeySimEvent
= "GPS_NEAREST_BUTTON"
KeyGpsObsButton
KeySimEvent
= "GPS_OBS_BUTTON"
KeyGpsMsgButton
KeySimEvent
= "GPS_MSG_BUTTON"
KeyGpsMsgButtonDown
KeySimEvent
= "GPS_MSG_BUTTON_DOWN"
KeyGpsMsgButtonUp
KeySimEvent
= "GPS_MSG_BUTTON_UP"
KeyGpsFlightplanButton
KeySimEvent
= "GPS_FLIGHTPLAN_BUTTON"
KeyGpsTerrainButton
KeySimEvent
= "GPS_TERRAIN_BUTTON"
KeyGpsProcedureButton
KeySimEvent
= "GPS_PROCEDURE_BUTTON"
KeyGpsZoominButton
KeySimEvent
= "GPS_ZOOMIN_BUTTON"
KeyGpsZoomoutButton
KeySimEvent
= "GPS_ZOOMOUT_BUTTON"
KeyGpsDirecttoButton
KeySimEvent
= "GPS_DIRECTTO_BUTTON"
KeyGpsMenuButton
KeySimEvent
= "GPS_MENU_BUTTON"
KeyGpsClearButton
KeySimEvent
= "GPS_CLEAR_BUTTON"
KeyGpsClearAllButton
KeySimEvent
= "GPS_CLEAR_ALL_BUTTON"
KeyGpsClearButtonDown
KeySimEvent
= "GPS_CLEAR_BUTTON_DOWN"
KeyGpsClearButtonUp
KeySimEvent
= "GPS_CLEAR_BUTTON_UP"
KeyGpsEnterButton
KeySimEvent
= "GPS_ENTER_BUTTON"
KeyGpsCursorButton
KeySimEvent
= "GPS_CURSOR_BUTTON"
KeyGpsGroupKnobInc
KeySimEvent
= "GPS_GROUP_KNOB_INC"
KeyGpsGroupKnobDec
KeySimEvent
= "GPS_GROUP_KNOB_DEC"
KeyGpsPageKnobInc
KeySimEvent
= "GPS_PAGE_KNOB_INC"
KeyGpsPageKnobDec
KeySimEvent
= "GPS_PAGE_KNOB_DEC"
KeyEgt
KeySimEvent
= "EGT"
KeyEgtInc
KeySimEvent
= "EGT_INC"
KeyEgtDec
KeySimEvent
= "EGT_DEC"
KeyEgtSet
KeySimEvent
= "EGT_SET"
KeyBarometric
KeySimEvent
= "BAROMETRIC"
KeyGyroDriftInc
KeySimEvent
= "GYRO_DRIFT_INC"
KeyGyroDriftDec
KeySimEvent
= "GYRO_DRIFT_DEC"
KeyKohlsmanInc
KeySimEvent
= "KOHLSMAN_INC"
KeyKohlsmanDec
KeySimEvent
= "KOHLSMAN_DEC"
KeyKohlsmanSet
KeySimEvent
= "KOHLSMAN_SET"
KeyTrueAirspeedCalibrateInc
KeySimEvent
= "TRUE_AIRSPEED_CAL_INC"
KeyTrueAirspeedCalibrateDec
KeySimEvent
= "TRUE_AIRSPEED_CAL_DEC"
KeyTrueAirspeedCalSet
KeySimEvent
= "TRUE_AIRSPEED_CAL_SET"
KeyEgt1Inc
KeySimEvent
= "EGT1_INC"
KeyEgt1Dec
KeySimEvent
= "EGT1_DEC"
KeyEgt1Set
KeySimEvent
= "EGT1_SET"
KeyEgt2Inc
KeySimEvent
= "EGT2_INC"
KeyEgt2Dec
KeySimEvent
= "EGT2_DEC"
KeyEgt2Set
KeySimEvent
= "EGT2_SET"
KeyEgt3Inc
KeySimEvent
= "EGT3_INC"
KeyEgt3Dec
KeySimEvent
= "EGT3_DEC"
KeyEgt3Set
KeySimEvent
= "EGT3_SET"
KeyEgt4Inc
KeySimEvent
= "EGT4_INC"
KeyEgt4Dec
KeySimEvent
= "EGT4_DEC"
KeyEgt4Set
KeySimEvent
= "EGT4_SET"
KeyAttitudeBarsPositionInc
KeySimEvent
= "ATTITUDE_BARS_POSITION_UP"
KeyAttitudeBarsPositionDec
KeySimEvent
= "ATTITUDE_BARS_POSITION_DOWN"
KeyToggleAttitudeCage
KeySimEvent
= "ATTITUDE_CAGE_BUTTON"
KeyResetGForceIndicator
KeySimEvent
= "RESET_G_FORCE_INDICATOR"
KeyResetMaxRpmIndicator
KeySimEvent
= "RESET_MAX_RPM_INDICATOR"
KeyHeadingGyroSet
KeySimEvent
= "HEADING_GYRO_SET"
KeyGyroDriftSet
KeySimEvent
= "GYRO_DRIFT_SET"
KeyStrobesToggle
KeySimEvent
= "STROBES_TOGGLE"
KeyAllLightsToggle
KeySimEvent
= "ALL_LIGHTS_TOGGLE"
KeyPanelLightsToggle
KeySimEvent
= "PANEL_LIGHTS_TOGGLE"
KeyLandingLightsToggle
KeySimEvent
= "LANDING_LIGHTS_TOGGLE"
KeyLandingLightUp
KeySimEvent
= "LANDING_LIGHT_UP"
KeyLandingLightDown
KeySimEvent
= "LANDING_LIGHT_DOWN"
KeyLandingLightLeft
KeySimEvent
= "LANDING_LIGHT_LEFT"
KeyLandingLightRight
KeySimEvent
= "LANDING_LIGHT_RIGHT"
KeyLandingLightHome
KeySimEvent
= "LANDING_LIGHT_HOME"
KeyStrobesOn
KeySimEvent
= "STROBES_ON"
KeyStrobesOff
KeySimEvent
= "STROBES_OFF"
KeyStrobesSet
KeySimEvent
= "STROBES_SET"
KeyPanelLightsOn
KeySimEvent
= "PANEL_LIGHTS_ON"
KeyPanelLightsOff
KeySimEvent
= "PANEL_LIGHTS_OFF"
KeyPanelLightsSet
KeySimEvent
= "PANEL_LIGHTS_SET"
KeyLandingLightsOn
KeySimEvent
= "LANDING_LIGHTS_ON"
KeyLandingLightsOff
KeySimEvent
= "LANDING_LIGHTS_OFF"
KeyLandingLightsSet
KeySimEvent
= "LANDING_LIGHTS_SET"
KeyToggleBeaconLights
KeySimEvent
= "TOGGLE_BEACON_LIGHTS"
KeyToggleTaxiLights
KeySimEvent
= "TOGGLE_TAXI_LIGHTS"
KeyToggleLogoLights
KeySimEvent
= "TOGGLE_LOGO_LIGHTS"
KeyToggleRecognitionLights
KeySimEvent
= "TOGGLE_RECOGNITION_LIGHTS"
KeyToggleWingLights
KeySimEvent
= "TOGGLE_WING_LIGHTS"
KeyToggleNavLights
KeySimEvent
= "TOGGLE_NAV_LIGHTS"
KeyToggleCabinLights
KeySimEvent
= "TOGGLE_CABIN_LIGHTS"
KeyToggleVacuumFailure
KeySimEvent
= "TOGGLE_VACUUM_FAILURE"
KeyToggleElectricalFailure
KeySimEvent
= "TOGGLE_ELECTRICAL_FAILURE"
KeyTogglePitotBlockage
KeySimEvent
= "TOGGLE_PITOT_BLOCKAGE"
KeyToggleStaticPortBlockage
KeySimEvent
= "TOGGLE_STATIC_PORT_BLOCKAGE"
KeyToggleHydraulicFailure
KeySimEvent
= "TOGGLE_HYDRAULIC_FAILURE"
KeyToggleTotalBrakeFailure
KeySimEvent
= "TOGGLE_TOTAL_BRAKE_FAILURE"
KeyToggleLeftBrakeFailure
KeySimEvent
= "TOGGLE_LEFT_BRAKE_FAILURE"
KeyToggleRightBrakeFailure
KeySimEvent
= "TOGGLE_RIGHT_BRAKE_FAILURE"
KeyToggleEngine1Failure
KeySimEvent
= "TOGGLE_ENGINE1_FAILURE"
KeyToggleEngine2Failure
KeySimEvent
= "TOGGLE_ENGINE2_FAILURE"
KeyToggleEngine3Failure
KeySimEvent
= "TOGGLE_ENGINE3_FAILURE"
KeyToggleEngine4Failure
KeySimEvent
= "TOGGLE_ENGINE4_FAILURE"
KeySmokeToggle
KeySimEvent
= "SMOKE_TOGGLE"
KeyGearToggle
KeySimEvent
= "GEAR_TOGGLE"
KeyBrakes
KeySimEvent
= "BRAKES"
KeyGearSet
KeySimEvent
= "GEAR_SET"
KeyBrakesLeft
KeySimEvent
= "BRAKES_LEFT"
KeyBrakesRight
KeySimEvent
= "BRAKES_RIGHT"
KeyParkingBrakes
KeySimEvent
= "PARKING_BRAKES"
KeyGearPump
KeySimEvent
= "GEAR_PUMP"
KeyPitotHeatToggle
KeySimEvent
= "PITOT_HEAT_TOGGLE"
KeySmokeOn
KeySimEvent
= "SMOKE_ON"
KeySmokeOff
KeySimEvent
= "SMOKE_OFF"
KeySmokeSet
KeySimEvent
= "SMOKE_SET"
KeyPitotHeatOn
KeySimEvent
= "PITOT_HEAT_ON"
KeyPitotHeatOff
KeySimEvent
= "PITOT_HEAT_OFF"
KeyPitotHeatSet
KeySimEvent
= "PITOT_HEAT_SET"
KeyGearUp
KeySimEvent
= "GEAR_UP"
KeyGearDown
KeySimEvent
= "GEAR_DOWN"
KeyToggleMasterBattery
KeySimEvent
= "TOGGLE_MASTER_BATTERY"
KeyToggleMasterAlternator
KeySimEvent
= "TOGGLE_MASTER_ALTERNATOR"
KeyToggleElectricVacuumPump
KeySimEvent
= "TOGGLE_ELECTRIC_VACUUM_PUMP"
KeyToggleAlternateStatic
KeySimEvent
= "TOGGLE_ALTERNATE_STATIC"
KeyDecisionHeightDec
KeySimEvent
= "DECREASE_DECISION_HEIGHT"
KeyDecisionHeightInc
KeySimEvent
= "INCREASE_DECISION_HEIGHT"
KeyToggleStructuralDeice
KeySimEvent
= "TOGGLE_STRUCTURAL_DEICE"
KeyTogglePropellerDeice
KeySimEvent
= "TOGGLE_PROPELLER_DEICE"
KeyToggleAlternator1
KeySimEvent
= "TOGGLE_ALTERNATOR1"
KeyToggleAlternator2
KeySimEvent
= "TOGGLE_ALTERNATOR2"
KeyToggleAlternator3
KeySimEvent
= "TOGGLE_ALTERNATOR3"
KeyToggleAlternator4
KeySimEvent
= "TOGGLE_ALTERNATOR4"
KeyToggleMasterBatteryAlternator
KeySimEvent
= "TOGGLE_MASTER_BATTERY_ALTERNATOR"
KeyAxisLeftBrakeSet
KeySimEvent
= "AXIS_LEFT_BRAKE_SET"
KeyAxisRightBrakeSet
KeySimEvent
= "AXIS_RIGHT_BRAKE_SET"
KeyToggleAircraftExit
KeySimEvent
= "TOGGLE_AIRCRAFT_EXIT"
KeyToggleWingFold
KeySimEvent
= "TOGGLE_WING_FOLD"
KeySetWingFold
KeySimEvent
= "SET_WING_FOLD"
KeyToggleTailHookHandle
KeySimEvent
= "TOGGLE_TAIL_HOOK_HANDLE"
KeySetTailHookHandle
KeySimEvent
= "SET_TAIL_HOOK_HANDLE"
KeyToggleWaterRudder
KeySimEvent
= "TOGGLE_WATER_RUDDER"
KeyPushbackSet
KeySimEvent
= "TOGGLE_PUSHBACK"
KeyTugHeading
KeySimEvent
= "KeyTugHeading"
KeyTugSpeed
KeySimEvent
= "KeyTugSpeed"
KeyTugDisable
KeySimEvent
= "TUG_DISABLE"
KeyToggleMasterIgnitionSwitch
KeySimEvent
= "TOGGLE_MASTER_IGNITION_SWITCH"
KeyToggleTailwheelLock
KeySimEvent
= "TOGGLE_TAILWHEEL_LOCK"
KeyAddFuelQuantity
KeySimEvent
= "ADD_FUEL_QUANTITY"
KeyRotorBrake
KeySimEvent
= "ROTOR_BRAKE"
KeyRotorClutchSwitchToggle
KeySimEvent
= "ROTOR_CLUTCH_SWITCH_TOGGLE"
KeyRotorClutchSwitchSet
KeySimEvent
= "ROTOR_CLUTCH_SWITCH_SET"
KeyRotorGovSwitchToggle
KeySimEvent
= "ROTOR_GOV_SWITCH_TOGGLE"
KeyRotorGovSwitchSet
KeySimEvent
= "ROTOR_GOV_SWITCH_SET"
KeyRotorLateralTrimInc
KeySimEvent
= "ROTOR_LATERAL_TRIM_INC"
KeyRotorLateralTrimDec
KeySimEvent
= "ROTOR_LATERAL_TRIM_DEC"
KeyRotorLateralTrimSet
KeySimEvent
= "ROTOR_LATERAL_TRIM_SET"
KeySlewToggle
KeySimEvent
= "SLEW_TOGGLE"
KeySlewOff
KeySimEvent
= "SLEW_OFF"
KeySlewOn
KeySimEvent
= "SLEW_ON"
KeySlewSet
KeySimEvent
= "SLEW_SET"
KeySlewReset
KeySimEvent
= "SLEW_RESET"
KeySlewAltitUpFast
KeySimEvent
= "SLEW_ALTIT_UP_FAST"
KeySlewAltitUpSlow
KeySimEvent
= "SLEW_ALTIT_UP_SLOW"
KeySlewAltitFreeze
KeySimEvent
= "SLEW_ALTIT_FREEZE"
KeySlewAltitDnSlow
KeySimEvent
= "SLEW_ALTIT_DN_SLOW"
KeySlewAltitDnFast
KeySimEvent
= "SLEW_ALTIT_DN_FAST"
KeySlewAltitPlus
KeySimEvent
= "SLEW_ALTIT_PLUS"
KeySlewAltitMinus
KeySimEvent
= "SLEW_ALTIT_MINUS"
KeySlewPitchDnFast
KeySimEvent
= "SLEW_PITCH_DN_FAST"
KeySlewPitchDnSlow
KeySimEvent
= "SLEW_PITCH_DN_SLOW"
KeySlewPitchFreeze
KeySimEvent
= "SLEW_PITCH_FREEZE"
KeySlewPitchUpSlow
KeySimEvent
= "SLEW_PITCH_UP_SLOW"
KeySlewPitchUpFast
KeySimEvent
= "SLEW_PITCH_UP_FAST"
KeySlewPitchPlus
KeySimEvent
= "SLEW_PITCH_PLUS"
KeySlewPitchMinus
KeySimEvent
= "SLEW_PITCH_MINUS"
KeySlewBankMinus
KeySimEvent
= "SLEW_BANK_MINUS"
KeySlewAheadPlus
KeySimEvent
= "SLEW_AHEAD_PLUS"
KeySlewBankPlus
KeySimEvent
= "SLEW_BANK_PLUS"
KeySlewLeft
KeySimEvent
= "SLEW_LEFT"
KeySlewFreeze
KeySimEvent
= "SLEW_FREEZE"
KeySlewRight
KeySimEvent
= "SLEW_RIGHT"
KeySlewHeadingMinus
KeySimEvent
= "SLEW_HEADING_MINUS"
KeySlewAheadMinus
KeySimEvent
= "SLEW_AHEAD_MINUS"
KeySlewHeadingPlus
KeySimEvent
= "SLEW_HEADING_PLUS"
KeyAxisSlewAheadSet
KeySimEvent
= "AXIS_SLEW_AHEAD_SET"
KeyAxisSlewSidewaysSet
KeySimEvent
= "AXIS_SLEW_SIDEWAYS_SET"
KeyAxisSlewHeadingSet
KeySimEvent
= "AXIS_SLEW_HEADING_SET"
KeyAxisSlewAltSet
KeySimEvent
= "AXIS_SLEW_ALT_SET"
KeyAxisSlewBankSet
KeySimEvent
= "AXIS_SLEW_BANK_SET"
KeyAxisSlewPitchSet
KeySimEvent
= "AXIS_SLEW_PITCH_SET"
KeyViewMode
KeySimEvent
= "VIEW_MODE"
KeyViewWindowToFront
KeySimEvent
= "VIEW_WINDOW_TO_FRONT"
KeyViewReset
KeySimEvent
= "VIEW_RESET"
KeyViewAlwaysPanUp
KeySimEvent
= "VIEW_ALWAYS_PAN_UP"
KeyViewAlwaysPanDown
KeySimEvent
= "VIEW_ALWAYS_PAN_DOWN"
KeyNextSubView
KeySimEvent
= "NEXT_SUB_VIEW"
KeyPrevSubView
KeySimEvent
= "PREV_SUB_VIEW"
KeyViewTrackPanToggle
KeySimEvent
= "VIEW_TRACK_PAN_TOGGLE"
KeyViewPreviousToggle
KeySimEvent
= "VIEW_PREVIOUS_TOGGLE"
KeyViewCameraSelectStarting
KeySimEvent
= "VIEW_CAMERA_SELECT_START"
KeyPanelHudNext
KeySimEvent
= "PANEL_HUD_NEXT"
KeyPanelHudPrevious
KeySimEvent
= "PANEL_HUD_PREVIOUS"
KeyZoomIn
KeySimEvent
= "ZOOM_IN"
KeyZoomOut
KeySimEvent
= "ZOOM_OUT"
KeyMapZoomFineIn
KeySimEvent
= "MAP_ZOOM_FINE_IN"
KeyPanLeft
KeySimEvent
= "PAN_LEFT"
KeyPanRight
KeySimEvent
= "PAN_RIGHT"
KeyMapZoomFineOut
KeySimEvent
= "MAP_ZOOM_FINE_OUT"
KeyViewForward
KeySimEvent
= "VIEW_FORWARD"
KeyViewForwardRight
KeySimEvent
= "VIEW_FORWARD_RIGHT"
KeyViewRight
KeySimEvent
= "VIEW_RIGHT"
KeyViewRearRight
KeySimEvent
= "VIEW_REAR_RIGHT"
KeyViewRear
KeySimEvent
= "VIEW_REAR"
KeyViewRearLeft
KeySimEvent
= "VIEW_REAR_LEFT"
KeyViewLeft
KeySimEvent
= "VIEW_LEFT"
KeyViewForwardLeft
KeySimEvent
= "VIEW_FORWARD_LEFT"
KeyViewDown
KeySimEvent
= "VIEW_DOWN"
KeyZoomMinus
KeySimEvent
= "ZOOM_MINUS"
KeyZoomPlus
KeySimEvent
= "ZOOM_PLUS"
KeyPanUp
KeySimEvent
= "PAN_UP"
KeyPanDown
KeySimEvent
= "PAN_DOWN"
KeyViewModeRev
KeySimEvent
= "VIEW_MODE_REV"
KeyZoomInFine
KeySimEvent
= "ZOOM_IN_FINE"
KeyZoomOutFine
KeySimEvent
= "ZOOM_OUT_FINE"
KeyCloseView
KeySimEvent
= "CLOSE_VIEW"
KeyNewView
KeySimEvent
= "NEW_VIEW"
KeyNextView
KeySimEvent
= "NEXT_VIEW"
KeyPrevView
KeySimEvent
= "PREV_VIEW"
KeyPanLeftUp
KeySimEvent
= "PAN_LEFT_UP"
KeyPanLeftDown
KeySimEvent
= "PAN_LEFT_DOWN"
KeyPanRightUp
KeySimEvent
= "PAN_RIGHT_UP"
KeyPanRightDown
KeySimEvent
= "PAN_RIGHT_DOWN"
KeyPanTiltLeft
KeySimEvent
= "PAN_TILT_LEFT"
KeyPanTiltRight
KeySimEvent
= "PAN_TILT_RIGHT"
KeyPanReset
KeySimEvent
= "PAN_RESET"
KeyViewForwardUp
KeySimEvent
= "VIEW_FORWARD_UP"
KeyViewForwardRightUp
KeySimEvent
= "VIEW_FORWARD_RIGHT_UP"
KeyViewRightUp
KeySimEvent
= "VIEW_RIGHT_UP"
KeyViewRearRightUp
KeySimEvent
= "VIEW_REAR_RIGHT_UP"
KeyViewRearUp
KeySimEvent
= "VIEW_REAR_UP"
KeyViewRearLeftUp
KeySimEvent
= "VIEW_REAR_LEFT_UP"
KeyViewLeftUp
KeySimEvent
= "VIEW_LEFT_UP"
KeyViewForwardLeftUp
KeySimEvent
= "VIEW_FORWARD_LEFT_UP"
KeyViewUp
KeySimEvent
= "VIEW_UP"
KeyPanResetCockpit
KeySimEvent
= "PAN_RESET_COCKPIT"
KeyChaseViewNext
KeySimEvent
= "KeyChaseViewNext"
KeyChaseViewPrev
KeySimEvent
= "KeyChaseViewPrev"
KeyChaseViewToggle
KeySimEvent
= "CHASE_VIEW_TOGGLE"
KeyEyepointUp
KeySimEvent
= "EYEPOINT_UP"
KeyEyepointDown
KeySimEvent
= "EYEPOINT_DOWN"
KeyEyepointRight
KeySimEvent
= "EYEPOINT_RIGHT"
KeyEyepointLeft
KeySimEvent
= "EYEPOINT_LEFT"
KeyEyepointForward
KeySimEvent
= "EYEPOINT_FORWARD"
KeyEyepointBack
KeySimEvent
= "EYEPOINT_BACK"
KeyEyepointReset
KeySimEvent
= "EYEPOINT_RESET"
KeyNewMap
KeySimEvent
= "NEW_MAP"
KeyPauseToggle
KeySimEvent
= "PAUSE_TOGGLE"
KeyPauseOn
KeySimEvent
= "PAUSE_ON"
KeyPauseOff
KeySimEvent
= "PAUSE_OFF"
KeyPauseSet
KeySimEvent
= "PAUSE_SET"
KeyDemoStop
KeySimEvent
= "DEMO_STOP"
KeySelect1
KeySimEvent
= "SELECT_1"
KeySelect2
KeySimEvent
= "SELECT_2"
KeySelect3
KeySimEvent
= "SELECT_3"
KeySelect4
KeySimEvent
= "SELECT_4"
KeyMinus
KeySimEvent
= "MINUS"
KeyPlus
KeySimEvent
= "PLUS"
KeyZoom1x
KeySimEvent
= "ZOOM_1X"
KeySoundToggle
KeySimEvent
= "SOUND_TOGGLE"
KeySimRate
KeySimEvent
= "SIM_RATE"
KeyJoystickCalibrate
KeySimEvent
= "JOYSTICK_CALIBRATE"
KeySituationSave
KeySimEvent
= "SITUATION_SAVE"
KeySituationReset
KeySimEvent
= "SITUATION_RESET"
KeySoundSet
KeySimEvent
= "SOUND_SET"
KeyExit
KeySimEvent
= "EXIT"
KeyAbort
KeySimEvent
= "ABORT"
KeyReadoutsSlew
KeySimEvent
= "READOUTS_SLEW"
KeyReadoutsFlight
KeySimEvent
= "READOUTS_FLIGHT"
KeyMinusShift
KeySimEvent
= "MINUS_SHIFT"
KeyPlusShift
KeySimEvent
= "PLUS_SHIFT"
KeySimRateIncr
KeySimEvent
= "SIM_RATE_INCR"
KeySimRateDecr
KeySimEvent
= "SIM_RATE_DECR"
KeyKneeboard
KeySimEvent
= "KNEEBOARD_VIEW"
KeyPanel1
KeySimEvent
= "PANEL_1"
KeyPanel2
KeySimEvent
= "PANEL_2"
KeyPanel3
KeySimEvent
= "PANEL_3"
KeyPanel4
KeySimEvent
= "PANEL_4"
KeyPanel5
KeySimEvent
= "PANEL_5"
KeyPanel6
KeySimEvent
= "PANEL_6"
KeyPanel7
KeySimEvent
= "PANEL_7"
KeyPanel8
KeySimEvent
= "PANEL_8"
KeyPanel9
KeySimEvent
= "PANEL_9"
KeySoundOn
KeySimEvent
= "SOUND_ON"
KeySoundOff
KeySimEvent
= "SOUND_OFF"
KeyInvokeHelp
KeySimEvent
= "INVOKE_HELP"
KeyToggleAircraftLabels
KeySimEvent
= "TOGGLE_AIRCRAFT_LABELS"
KeyFlightMap
KeySimEvent
= "FLIGHT_MAP"
KeyReloadPanels
KeySimEvent
= "RELOAD_PANELS"
KeyPanelIDToggle
KeySimEvent
= "PANEL_ID_TOGGLE"
KeyPanelIDOpen
KeySimEvent
= "PANEL_ID_OPEN"
KeyPanelIDClose
KeySimEvent
= "PANEL_ID_CLOSE"
KeyControlReloadUserAircraft
KeySimEvent
= "RELOAD_USER_AIRCRAFT"
KeySimReset
KeySimEvent
= "SIM_RESET"
KeyVirtualCopilotToggle
KeySimEvent
= "VIRTUAL_COPILOT_TOGGLE"
KeyVirtualCopilotSet
KeySimEvent
= "VIRTUAL_COPILOT_SET"
KeyVirtualCopilotAction
KeySimEvent
= "VIRTUAL_COPILOT_ACTION"
KeyRefreshScenery
KeySimEvent
= "REFRESH_SCENERY"
KeyClockHoursDec
KeySimEvent
= "CLOCK_HOURS_DEC"
KeyClockHoursInc
KeySimEvent
= "CLOCK_HOURS_INC"
KeyClockMinutesDec
KeySimEvent
= "CLOCK_MINUTES_DEC"
KeyClockMinutesInc
KeySimEvent
= "CLOCK_MINUTES_INC"
KeyClockSecondsZero
KeySimEvent
= "CLOCK_SECONDS_ZERO"
KeyClockHoursSet
KeySimEvent
= "CLOCK_HOURS_SET"
KeyClockMinutesSet
KeySimEvent
= "CLOCK_MINUTES_SET"
KeyZuluHoursSet
KeySimEvent
= "ZULU_HOURS_SET"
KeyZuluMinutesSet
KeySimEvent
= "ZULU_MINUTES_SET"
KeyZuluDaySet
KeySimEvent
= "ZULU_DAY_SET"
KeyZuluYearSet
KeySimEvent
= "ZULU_YEAR_SET"
KeyAtc
KeySimEvent
= "ATC"
KeyAtcMenu1
KeySimEvent
= "ATC_MENU_1"
KeyAtcMenu2
KeySimEvent
= "ATC_MENU_2"
KeyAtcMenu3
KeySimEvent
= "ATC_MENU_3"
KeyAtcMenu4
KeySimEvent
= "ATC_MENU_4"
KeyAtcMenu5
KeySimEvent
= "ATC_MENU_5"
KeyAtcMenu6
KeySimEvent
= "ATC_MENU_6"
KeyAtcMenu7
KeySimEvent
= "ATC_MENU_7"
KeyAtcMenu8
KeySimEvent
= "ATC_MENU_8"
KeyAtcMenu9
KeySimEvent
= "ATC_MENU_9"
KeyAtcMenu0
KeySimEvent
= "ATC_MENU_0"
KeyMultiplayerTransferControl
KeySimEvent
= "MP_TRANSFER_CONTROL"
KeyMultiplayerPlayerCycle
KeySimEvent
= "MP_PLAYER_CYCLE"
KeyMultiplayerPlayerFollow
KeySimEvent
= "MP_PLAYER_FOLLOW"
KeyMultiplayerChat
KeySimEvent
= "MP_CHAT"
KeyMultiplayerActivateChat
KeySimEvent
= "MP_ACTIVATE_CHAT"
KeyMultiplayerVoiceCaptureStart
KeySimEvent
= "MP_VOICE_CAPTURE_START"
KeyMultiplayerVoiceCaptureStop
KeySimEvent
= "MP_VOICE_CAPTURE_STOP"
KeyMultiplayerBroadcastVoiceCaptureStart
KeySimEvent
= "MP_BROADCAST_VOICE_CAPTURE_START"
KeyMultiplayerBroadcastVoiceCaptureStop
KeySimEvent
= "MP_BROADCAST_VOICE_CAPTURE_STOP"
)
Dcumentation based on
http://www.prepar3d.com/SDKv3/LearningCenter/utilities/variables/event_ids.html
type SIMCONNECT_DATA_FACILITY_NDB struct {
SIMCONNECT_DATA_FACILITY_WAYPOINT
}
type SIMCONNECT_DATA_FACILITY_WAYPOINT struct {
SIMCONNECT_DATA_FACILITY_AIRPORT
}
type SIMCONNECT_DATA_MARKERSTATE struct {
}
type SIMCONNECT_DATA_RACE_RESULT struct {
MissionGUID *
GUID
}
type SIMCONNECT_RECV struct {
}
type SIMCONNECT_RECV_AIRPORT_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
}
type SIMCONNECT_RECV_ASSIGNED_OBJECT_ID struct {
SIMCONNECT_RECV
}
when dwID == SIMCONNECT_RECV_ID_ASSIGNED_OBJECT_ID
type SIMCONNECT_RECV_CLIENT_DATA struct {
SIMCONNECT_RECV_SIMOBJECT_DATA
}
type SIMCONNECT_RECV_CLOUD_STATE struct {
SIMCONNECT_RECV
}
when dwID == SIMCONNECT_RECV_ID_CLOUD_STATE
type SIMCONNECT_RECV_CUSTOM_ACTION struct {
SIMCONNECT_RECV_EVENT
}
type SIMCONNECT_RECV_EVENT struct {
SIMCONNECT_RECV
}
type SIMCONNECT_RECV_EVENT_FILENAME struct {
SIMCONNECT_RECV_EVENT
}
type SIMCONNECT_RECV_EVENT_FRAME struct {
SIMCONNECT_RECV_EVENT
}
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED struct {
SIMCONNECT_RECV_EVENT
}
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED struct {
SIMCONNECT_RECV_EVENT
}
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED struct {
SIMCONNECT_RECV_EVENT
}
type SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE struct {
SIMCONNECT_RECV_EVENT
}
type SIMCONNECT_RECV_EVENT_RACE_END struct {
SIMCONNECT_RECV_EVENT
RacerData
SIMCONNECT_DATA_RACE_RESULT
}
type SIMCONNECT_RECV_EVENT_RACE_LAP struct {
SIMCONNECT_RECV_EVENT
RacerData
SIMCONNECT_DATA_RACE_RESULT
}
type SIMCONNECT_RECV_EVENT_WEATHER_MODE struct {
SIMCONNECT_RECV_EVENT
}
type SIMCONNECT_RECV_EXCEPTION struct {
SIMCONNECT_RECV
}
type SIMCONNECT_RECV_FACILITIES_LIST struct {
SIMCONNECT_RECV
}
type SIMCONNECT_RECV_NDB_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
}
type SIMCONNECT_RECV_OPEN struct {
SIMCONNECT_RECV
}
type SIMCONNECT_RECV_QUIT struct {
SIMCONNECT_RECV
}
type SIMCONNECT_RECV_RESERVED_KEY struct {
SIMCONNECT_RECV
}
when dwID == SIMCONNECT_RECV_ID_RESERVED_KEY
type SIMCONNECT_RECV_SIMOBJECT_DATA struct {
SIMCONNECT_RECV
}
type SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE struct {
SIMCONNECT_RECV_SIMOBJECT_DATA
}
type SIMCONNECT_RECV_SYSTEM_STATE struct {
SIMCONNECT_RECV
}
when dwID == SIMCONNECT_RECV_ID_SYSTEM_STATE
type SIMCONNECT_RECV_VOR_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
}
type SIMCONNECT_RECV_WAYPOINT_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
}
type SIMCONNECT_RECV_WEATHER_OBSERVATION struct {
SIMCONNECT_RECV
}
type SimConnect struct {
}
SimConnect golang interface
func NewSimConnect() (*
SimConnect
,
error
)
NewSimConnect get instance of SimConnect
AICreateEnrouteATCAircraft SimConnect_AICreateEnrouteATCAircraft(HANDLE hSimConnect, const char * szContainerTitle, const char * szTailNumber, int iFlightNumber, const char * szFlightPlanPath, double dFlightPlanPosition, BOOL bTouchAndGo, SIMCONNECT_DATA_REQUEST_ID RequestID);
AICreateNonATCAircraft SimConnect_AICreateNonATCAircraft(HANDLE hSimConnect, const char * szContainerTitle, const char * szTailNumber, SIMCONNECT_DATA_INITPOSITION InitPos, SIMCONNECT_DATA_REQUEST_ID RequestID);
AICreateParkedATCAircraft SimConnect_AICreateParkedATCAircraft(HANDLE hSimConnect, const char * szContainerTitle, const char * szTailNumber, const char * szAirportID, SIMCONNECT_DATA_REQUEST_ID RequestID);
AICreateSimulatedObject SimConnect_AICreateSimulatedObject(HANDLE hSimConnect, const char * szContainerTitle, SIMCONNECT_DATA_INITPOSITION InitPos, SIMCONNECT_DATA_REQUEST_ID RequestID);
AIReleaseControl SimConnect_AIReleaseControl(HANDLE hSimConnect, SIMCONNECT_OBJECT_ID ObjectID, SIMCONNECT_DATA_REQUEST_ID RequestID);
AIRemoveObject SimConnect_AIRemoveObject(HANDLE hSimConnect, SIMCONNECT_OBJECT_ID ObjectID, SIMCONNECT_DATA_REQUEST_ID RequestID);
AISetAircraftFlightPlan SimConnect_AISetAircraftFlightPlan(HANDLE hSimConnect, SIMCONNECT_OBJECT_ID ObjectID, const char * szFlightPlanPath, SIMCONNECT_DATA_REQUEST_ID RequestID);
AddClientEventToNotificationGroup SimConnect_AddClientEventToNotificationGroup(HANDLE hSimConnect, SIMCONNECT_NOTIFICATION_GROUP_ID GroupID, SIMCONNECT_CLIENT_EVENT_ID EventID, BOOL bMaskable = FALSE);
AddToClientDataDefinition SimConnect_AddToClientDataDefinition(HANDLE hSimConnect, SIMCONNECT_CLIENT_DATA_DEFINITION_ID DefineID, DWORD dwOffset, DWORD dwSizeOrType, float fEpsilon = 0, DWORD DatumID = SIMCONNECT_UNUSED);
AddToDataDefinition SimConnect_AddToDataDefinition(HANDLE hSimConnect, SIMCONNECT_DATA_DEFINITION_ID DefineID, const char * DatumName, const char * UnitsName, SIMCONNECT_DATATYPE DatumType = SIMCONNECT_DATATYPE_FLOAT64, float fEpsilon = 0, DWORD DatumID = SIMCONNECT_UNUSED);
CameraSetRelative6DOF SimConnect_CameraSetRelative6DOF(HANDLE hSimConnect, float fDeltaX, float fDeltaY, float fDeltaZ, float fPitchDeg, float fBankDeg, float fHeadingDeg);
ClearClientDataDefinition SimConnect_ClearClientDataDefinition(HANDLE hSimConnect, SIMCONNECT_CLIENT_DATA_DEFINITION_ID DefineID);
ClearDataDefinition SimConnect_ClearDataDefinition(HANDLE hSimConnect, SIMCONNECT_DATA_DEFINITION_ID DefineID);
ClearInputGroup SimConnect_ClearInputGroup(HANDLE hSimConnect, SIMCONNECT_INPUT_GROUP_ID GroupID);
ClearNotificationGroup SimConnect_ClearNotificationGroup(HANDLE hSimConnect, SIMCONNECT_NOTIFICATION_GROUP_ID GroupID);
Close SimConnect_Close(HANDLE hSimConnect);
func (sc *
SimConnect
) CompleteCustomMissionAction(guidInstanceID
GUID
) (
error
,
uint32
)
CompleteCustomMissionAction SimConnect_CompleteCustomMissionAction(HANDLE hSimConnect, const GUID guidInstanceId);
CreateClientData SimConnect_CreateClientData(HANDLE hSimConnect, SIMCONNECT_CLIENT_DATA_ID ClientDataID, DWORD dwSize, SIMCONNECT_CREATE_CLIENT_DATA_FLAG Flags);
func (sc *
SimConnect
) ExecuteMissionAction(guidInstanceID
GUID
) (
error
,
uint32
)
ExecuteMissionAction SimConnect_ExecuteMissionAction(HANDLE hSimConnect, const GUID guidInstanceId);
FlightLoad SimConnect_FlightLoad(HANDLE hSimConnect, const char * szFileName);
FlightPlanLoad SimConnect_FlightPlanLoad(HANDLE hSimConnect, const char * szFileName);
FlightSave SimConnect_FlightSave(HANDLE hSimConnect, const char * szFileName, const char * szTitle, const char * szDescription, DWORD Flags);
GetLastSentPacketID SimConnect_GetLastSentPacketID(HANDLE hSimConnect, DWORD * pdwError);
GetNextDispatch SimConnect_GetNextDispatch(HANDLE hSimConnect, SIMCONNECT_RECV ** ppData, DWORD * pcbData);
InsertString SimConnect_InsertString(char * pDest, DWORD cbDest, void ** ppEnd, DWORD * pcbStringV, const char * pSource);
MapClientDataNameToID SimConnect_MapClientDataNameToID(HANDLE hSimConnect, const char * szClientDataName, SIMCONNECT_CLIENT_DATA_ID ClientDataID);
MapClientEventToSimEvent SimConnect_MapClientEventToSimEvent(HANDLE hSimConnect, SIMCONNECT_CLIENT_EVENT_ID EventID, const char * EventName = "")
MapInputEventToClientEvent SimConnect_MapInputEventToClientEvent(HANDLE hSimConnect, SIMCONNECT_INPUT_GROUP_ID GroupID, const char * szInputDefinition, SIMCONNECT_CLIENT_EVENT_ID DownEventID, DWORD DownValue = 0, SIMCONNECT_CLIENT_EVENT_ID UpEventID = (SIMCONNECT_CLIENT_EVENT_ID)SIMCONNECT_UNUSED, DWORD UpValue = 0, BOOL bMaskable = FALSE);
MenuAddItem SimConnect_MenuAddItem(HANDLE hSimConnect, const char * szMenuItem, SIMCONNECT_CLIENT_EVENT_ID MenuEventID, DWORD dwData);
MenuAddSubItem SimConnect_MenuAddSubItem(HANDLE hSimConnect, SIMCONNECT_CLIENT_EVENT_ID MenuEventID, const char * szMenuItem, SIMCONNECT_CLIENT_EVENT_ID SubMenuEventID, DWORD dwData);
MenuDeleteItem SimConnect_MenuDeleteItem(HANDLE hSimConnect, SIMCONNECT_CLIENT_EVENT_ID MenuEventID);
MenuDeleteSubItem SimConnect_MenuDeleteSubItem(HANDLE hSimConnect, SIMCONNECT_CLIENT_EVENT_ID MenuEventID, const SIMCONNECT_CLIENT_EVENT_ID SubMenuEventID);
Open SimConnect_Open(HANDLE * phSimConnect, LPCSTR szName, HWND hWnd, DWORD UserEventWin32, HANDLE hEventHandle, DWORD ConfigIndex);
RemoveClientEvent SimConnect_RemoveClientEvent(HANDLE hSimConnect, SIMCONNECT_NOTIFICATION_GROUP_ID GroupID, SIMCONNECT_CLIENT_EVENT_ID EventID);
RemoveInputEvent SimConnect_RemoveInputEvent(HANDLE hSimConnect, SIMCONNECT_INPUT_GROUP_ID GroupID, const char * szInputDefinition);
RequestClientData SimConnect_RequestClientData(HANDLE hSimConnect, SIMCONNECT_CLIENT_DATA_ID ClientDataID, SIMCONNECT_DATA_REQUEST_ID RequestID, SIMCONNECT_CLIENT_DATA_DEFINITION_ID DefineID, SIMCONNECT_CLIENT_DATA_PERIOD Period = SIMCONNECT_CLIENT_DATA_PERIOD_ONCE, SIMCONNECT_CLIENT_DATA_REQUEST_FLAG Flags = 0, DWORD origin = 0, DWORD interval = 0, DWORD limit = 0);
RequestDataOnSimObject SimConnect_RequestDataOnSimObject(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, SIMCONNECT_DATA_DEFINITION_ID DefineID, SIMCONNECT_OBJECT_ID ObjectID, SIMCONNECT_PERIOD Period, SIMCONNECT_DATA_REQUEST_FLAG Flags = 0, DWORD origin = 0, DWORD interval = 0, DWORD limit = 0);
RequestDataOnSimObjectType SimConnect_RequestDataOnSimObjectType(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, SIMCONNECT_DATA_DEFINITION_ID DefineID, DWORD dwRadiusMeters, SIMCONNECT_SIMOBJECT_TYPE type);
RequestFacilitiesList SimConnect_RequestFacilitiesList(HANDLE hSimConnect, SIMCONNECT_FACILITY_LIST_TYPE type, SIMCONNECT_DATA_REQUEST_ID RequestID);
RequestNotificationGroup SimConnect_RequestNotificationGroup(HANDLE hSimConnect, SIMCONNECT_NOTIFICATION_GROUP_ID GroupID, DWORD dwReserved = 0, DWORD Flags = 0);
RequestReservedKey SimConnect_RequestReservedKey(HANDLE hSimConnect, SIMCONNECT_CLIENT_EVENT_ID EventID, const char * szKeyChoice1 = "", const char * szKeyChoice2 = "", const char * szKeyChoice3 = "");
RequestResponseTimes SimConnect_RequestResponseTimes(HANDLE hSimConnect, DWORD nCount, float * fElapsedSeconds);
RequestSystemState SimConnect_RequestSystemState(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, const char * szState);
RetrieveString SimConnect_RetrieveString(SIMCONNECT_RECV * pData, DWORD cbData, void * pStringV, char ** pszString, DWORD * pcbString);
SetClientData SimConnect_SetClientData(HANDLE hSimConnect, SIMCONNECT_CLIENT_DATA_ID ClientDataID, SIMCONNECT_CLIENT_DATA_DEFINITION_ID DefineID, SIMCONNECT_CLIENT_DATA_SET_FLAG Flags, DWORD dwReserved, DWORD cbUnitSize, void * pDataSet);
SetDataOnSimObject SimConnect_SetDataOnSimObject(HANDLE hSimConnect, SIMCONNECT_DATA_DEFINITION_ID DefineID, SIMCONNECT_OBJECT_ID ObjectID, SIMCONNECT_DATA_SET_FLAG Flags, DWORD ArrayCount, DWORD cbUnitSize, void * pDataSet);
SetInputGroupPriority SimConnect_SetInputGroupPriority(HANDLE hSimConnect, SIMCONNECT_INPUT_GROUP_ID GroupID, DWORD uPriority);
SetInputGroupState SimConnect_SetInputGroupState(HANDLE hSimConnect, SIMCONNECT_INPUT_GROUP_ID GroupID, DWORD dwState);
SetNotificationGroupPriority SimConnect_SetNotificationGroupPriority(HANDLE hSimConnect, SIMCONNECT_NOTIFICATION_GROUP_ID GroupID, DWORD uPriority);
SetSystemEventState SimConnect_SetSystemEventState(HANDLE hSimConnect, SIMCONNECT_CLIENT_EVENT_ID EventID, SIMCONNECT_STATE dwState);
SetSystemState SimConnect_SetSystemState(HANDLE hSimConnect, const char * szState, DWORD dwInteger, float fFloat, const char * szString);
SubscribeToFacilities SimConnect_SubscribeToFacilities(HANDLE hSimConnect, SIMCONNECT_FACILITY_LIST_TYPE type, SIMCONNECT_DATA_REQUEST_ID RequestID);
SubscribeToSystemEvent SimConnect_SubscribeToSystemEvent(HANDLE hSimConnect, SIMCONNECT_CLIENT_EVENT_ID EventID, const char * SystemEventName);
Text SimConnect_Text(HANDLE hSimConnect, SIMCONNECT_TEXT_TYPE type, float fTimeSeconds, SIMCONNECT_CLIENT_EVENT_ID EventID, DWORD cbUnitSize, void * pDataSet);
TransmitClientEvent SimConnect_TransmitClientEvent(HANDLE hSimConnect, SIMCONNECT_OBJECT_ID ObjectID, SIMCONNECT_CLIENT_EVENT_ID EventID, DWORD dwData, SIMCONNECT_NOTIFICATION_GROUP_ID GroupID, SIMCONNECT_EVENT_FLAG Flags);
UnsubscribeFromSystemEvent SimConnect_UnsubscribeFromSystemEvent(HANDLE hSimConnect, SIMCONNECT_CLIENT_EVENT_ID EventID);
UnsubscribeToFacilities SimConnect_UnsubscribeToFacilities(HANDLE hSimConnect, SIMCONNECT_FACILITY_LIST_TYPE type);
WeatherCreateStation SimConnect_WeatherCreateStation(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, const char * szICAO, const char * szName, float lat, float lon, float alt);
func (sc *
SimConnect
) WeatherCreateThermal(RequestID
uint32
, lat
float32
, lon
float32
, alt
float32
, radius
float32
, height
float32
, coreRate
float32
, coreTurbulence
float32
, sinkRate
float32
, sinkTurbulence
float32
, coreSize
float32
, coreTransitionSize
float32
, sinkLayerSize
float32
, sinkTransitionSize
float32
) (
error
,
uint32
)
WeatherCreateThermal SimConnect_WeatherCreateThermal(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, float lat, float lon, float alt, float radius, float height, float coreRate = 3.0f, float coreTurbulence = 0.05f, float sinkRate = 3.0f, float sinkTurbulence = 0.2f, float coreSize = 0.4f, float coreTransitionSize = 0.1f, float sinkLayerSize = 0.4f, float sinkTransitionSize = 0.1f);
WeatherRemoveStation SimConnect_WeatherRemoveStation(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, const char * szICAO);
WeatherRemoveThermal SimConnect_WeatherRemoveThermal(HANDLE hSimConnect, SIMCONNECT_OBJECT_ID ObjectID);
WeatherRequestCloudState SimConnect_WeatherRequestCloudState(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, float minLat, float minLon, float minAlt, float maxLat, float maxLon, float maxAlt, DWORD dwFlags = 0);
WeatherRequestInterpolatedObservation SimConnect_WeatherRequestInterpolatedObservation(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, float lat, float lon, float alt);
WeatherRequestObservationAtNearestStation SimConnect_WeatherRequestObservationAtNearestStation(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, float lat, float lon);
WeatherRequestObservationAtStation SimConnect_WeatherRequestObservationAtStation(HANDLE hSimConnect, SIMCONNECT_DATA_REQUEST_ID RequestID, const char * szICAO);
WeatherSetDynamicUpdateRate SimConnect_WeatherSetDynamicUpdateRate(HANDLE hSimConnect, DWORD dwRate);
WeatherSetModeCustom SimConnect_WeatherSetModeCustom(HANDLE hSimConnect);
WeatherSetModeGlobal SimConnect_WeatherSetModeGlobal(HANDLE hSimConnect);
WeatherSetModeServer SimConnect_WeatherSetModeServer(HANDLE hSimConnect, DWORD dwPort, DWORD dwSeconds);
WeatherSetModeTheme SimConnect_WeatherSetModeTheme(HANDLE hSimConnect, const char * szThemeName);
WeatherSetObservation SimConnect_WeatherSetObservation(HANDLE hSimConnect, DWORD Seconds, const char * szMETAR);
const (
SIMCONNECT_STATE_OFF
SimConnectStat
=
iota
SIMCONNECT_STATE_ON
)
type SimEvent struct {
Mapping
KeySimEvent
Value
int
}
SimEvent Use for generate action in the simulator
Run return chan bool when receive the event is finish
func (s
SimEvent
) RunWithValue(value
int
) <-chan
int32
RunWithValue return chan bool when receive the event is finish
SimVar is usued for all SimVar describtion
func SimVarAbsoluteTime(args ...interface{})
SimVar
SimVarAbsoluteTime Simvar
args contain optional index and/or unit
func
SimVarAccelerationBodyX
ΒΆ
func SimVarAccelerationBodyX(args ...interface{})
SimVar
SimVarAccelerationBodyX Simvar
args contain optional index and/or unit
func
SimVarAccelerationBodyY
ΒΆ
func SimVarAccelerationBodyY(args ...interface{})
SimVar
SimVarAccelerationBodyY Simvar
args contain optional index and/or unit
func
SimVarAccelerationBodyZ
ΒΆ
func SimVarAccelerationBodyZ(args ...interface{})
SimVar
SimVarAccelerationBodyZ Simvar
args contain optional index and/or unit
func SimVarAccelerationWorldX(args ...interface{})
SimVar
SimVarAccelerationWorldX Simvar
args contain optional index and/or unit
func SimVarAccelerationWorldY(args ...interface{})
SimVar
SimVarAccelerationWorldY Simvar
args contain optional index and/or unit
func SimVarAccelerationWorldZ(args ...interface{})
SimVar
SimVarAccelerationWorldZ Simvar
args contain optional index and/or unit
func SimVarAdfActiveFrequency(args ...interface{})
SimVar
SimVarAdfActiveFrequency Simvar
args contain optional index and/or unit
func SimVarAdfAvailable(args ...interface{})
SimVar
SimVarAdfAvailable Simvar
args contain optional index and/or unit
func SimVarAdfCard(args ...interface{})
SimVar
SimVarAdfCard Simvar
args contain optional index and/or unit
func SimVarAdfExtFrequency(args ...interface{})
SimVar
SimVarAdfExtFrequency Simvar
args contain optional index and/or unit
func SimVarAdfFrequency(args ...interface{})
SimVar
SimVarAdfFrequency Simvar
args contain optional index and/or unit
func SimVarAdfIdent(args ...interface{})
SimVar
SimVarAdfIdent Simvar
args contain optional index and/or unit
func SimVarAdfLatlonalt(args ...interface{})
SimVar
SimVarAdfLatlonalt Simvar
args contain optional index and/or unit
func SimVarAdfName(args ...interface{})
SimVar
SimVarAdfName Simvar
args contain optional index and/or unit
func SimVarAdfRadial(args ...interface{})
SimVar
SimVarAdfRadial Simvar
args contain optional index and/or unit
func SimVarAdfSignal(args ...interface{})
SimVar
SimVarAdfSignal Simvar
args contain optional index and/or unit
func SimVarAdfSound(args ...interface{})
SimVar
SimVarAdfSound Simvar
args contain optional index and/or unit
func
SimVarAdfStandbyFrequency
ΒΆ
func SimVarAdfStandbyFrequency(args ...interface{})
SimVar
SimVarAdfStandbyFrequency Simvar
args contain optional index and/or unit
func SimVarAiCurrentWaypoint(args ...interface{})
SimVar
SimVarAiCurrentWaypoint Simvar
args contain optional index and/or unit
func SimVarAiDesiredHeading(args ...interface{})
SimVar
SimVarAiDesiredHeading Simvar
args contain optional index and/or unit
func SimVarAiDesiredSpeed(args ...interface{})
SimVar
SimVarAiDesiredSpeed Simvar
args contain optional index and/or unit
func SimVarAiGroundcruisespeed(args ...interface{})
SimVar
SimVarAiGroundcruisespeed Simvar
args contain optional index and/or unit
func SimVarAiGroundturnspeed(args ...interface{})
SimVar
SimVarAiGroundturnspeed Simvar
args contain optional index and/or unit
func SimVarAiGroundturntime(args ...interface{})
SimVar
SimVarAiGroundturntime Simvar
args contain optional index and/or unit
func SimVarAiTrafficAssignedParking(args ...interface{})
SimVar
SimVarAiTrafficAssignedParking Simvar
args contain optional index and/or unit
func SimVarAiTrafficAssignedRunway(args ...interface{})
SimVar
SimVarAiTrafficAssignedRunway Simvar
args contain optional index and/or unit
func SimVarAiTrafficCurrentAirport(args ...interface{})
SimVar
SimVarAiTrafficCurrentAirport Simvar
args contain optional index and/or unit
func SimVarAiTrafficEta(args ...interface{})
SimVar
SimVarAiTrafficEta Simvar
args contain optional index and/or unit
func SimVarAiTrafficEtd(args ...interface{})
SimVar
SimVarAiTrafficEtd Simvar
args contain optional index and/or unit
func SimVarAiTrafficFromairport(args ...interface{})
SimVar
SimVarAiTrafficFromairport Simvar
args contain optional index and/or unit
func SimVarAiTrafficIsifr(args ...interface{})
SimVar
SimVarAiTrafficIsifr Simvar
args contain optional index and/or unit
func SimVarAiTrafficState(args ...interface{})
SimVar
SimVarAiTrafficState Simvar
args contain optional index and/or unit
func SimVarAiTrafficToairport(args ...interface{})
SimVar
SimVarAiTrafficToairport Simvar
args contain optional index and/or unit
func SimVarAiWaypointList(args ...interface{})
SimVar
SimVarAiWaypointList Actually not supported
args contain optional index and/or unit
func SimVarAileronAverageDeflection(args ...interface{})
SimVar
SimVarAileronAverageDeflection Simvar
args contain optional index and/or unit
func SimVarAileronLeftDeflection(args ...interface{})
SimVar
SimVarAileronLeftDeflection Simvar
args contain optional index and/or unit
func SimVarAileronLeftDeflectionPct(args ...interface{})
SimVar
SimVarAileronLeftDeflectionPct Simvar
args contain optional index and/or unit
func SimVarAileronPosition(args ...interface{})
SimVar
SimVarAileronPosition Simvar
args contain optional index and/or unit
func SimVarAileronRightDeflection(args ...interface{})
SimVar
SimVarAileronRightDeflection Simvar
args contain optional index and/or unit
func SimVarAileronRightDeflectionPct(args ...interface{})
SimVar
SimVarAileronRightDeflectionPct Simvar
args contain optional index and/or unit
func SimVarAileronTrim(args ...interface{})
SimVar
SimVarAileronTrim Simvar
args contain optional index and/or unit
func SimVarAileronTrimPct(args ...interface{})
SimVar
SimVarAileronTrimPct Simvar
args contain optional index and/or unit
func SimVarAircraftWindX(args ...interface{})
SimVar
SimVarAircraftWindX Simvar
args contain optional index and/or unit
func SimVarAircraftWindY(args ...interface{})
SimVar
SimVarAircraftWindY Simvar
args contain optional index and/or unit
func SimVarAircraftWindZ(args ...interface{})
SimVar
SimVarAircraftWindZ Simvar
args contain optional index and/or unit
func SimVarAirspeedBarberPole(args ...interface{})
SimVar
SimVarAirspeedBarberPole Simvar
args contain optional index and/or unit
func SimVarAirspeedIndicated(args ...interface{})
SimVar
SimVarAirspeedIndicated Simvar
args contain optional index and/or unit
func SimVarAirspeedMach(args ...interface{})
SimVar
SimVarAirspeedMach Simvar
args contain optional index and/or unit
func SimVarAirspeedSelectIndicatedOrTrue(args ...interface{})
SimVar
SimVarAirspeedSelectIndicatedOrTrue Simvar
args contain optional index and/or unit
func SimVarAirspeedTrue(args ...interface{})
SimVar
SimVarAirspeedTrue Simvar
args contain optional index and/or unit
func SimVarAirspeedTrueCalibrate(args ...interface{})
SimVar
SimVarAirspeedTrueCalibrate Simvar
args contain optional index and/or unit
func SimVarAlternateStaticSourceOpen(args ...interface{})
SimVar
SimVarAlternateStaticSourceOpen Simvar
args contain optional index and/or unit
func SimVarAmbientDensity(args ...interface{})
SimVar
SimVarAmbientDensity Simvar
args contain optional index and/or unit
func SimVarAmbientInCloud(args ...interface{})
SimVar
SimVarAmbientInCloud Simvar
args contain optional index and/or unit
func SimVarAmbientPrecipState(args ...interface{})
SimVar
SimVarAmbientPrecipState Simvar
args contain optional index and/or unit
func SimVarAmbientPressure(args ...interface{})
SimVar
SimVarAmbientPressure Simvar
args contain optional index and/or unit
func SimVarAmbientTemperature(args ...interface{})
SimVar
SimVarAmbientTemperature Simvar
args contain optional index and/or unit
func SimVarAmbientVisibility(args ...interface{})
SimVar
SimVarAmbientVisibility Simvar
args contain optional index and/or unit
func SimVarAmbientWindDirection(args ...interface{})
SimVar
SimVarAmbientWindDirection Simvar
args contain optional index and/or unit
func SimVarAmbientWindVelocity(args ...interface{})
SimVar
SimVarAmbientWindVelocity Simvar
args contain optional index and/or unit
func SimVarAmbientWindX(args ...interface{})
SimVar
SimVarAmbientWindX Simvar
args contain optional index and/or unit
func SimVarAmbientWindY(args ...interface{})
SimVar
SimVarAmbientWindY Simvar
args contain optional index and/or unit
func SimVarAmbientWindZ(args ...interface{})
SimVar
SimVarAmbientWindZ Simvar
args contain optional index and/or unit
func SimVarAnemometerPctRpm(args ...interface{})
SimVar
SimVarAnemometerPctRpm Simvar
args contain optional index and/or unit
func SimVarAngleOfAttackIndicator(args ...interface{})
SimVar
SimVarAngleOfAttackIndicator Simvar
args contain optional index and/or unit
func SimVarAntiskidBrakesActive(args ...interface{})
SimVar
SimVarAntiskidBrakesActive Simvar
args contain optional index and/or unit
func SimVarApplyHeatToSystems(args ...interface{})
SimVar
SimVarApplyHeatToSystems Simvar
args contain optional index and/or unit
func SimVarApuGeneratorActive(args ...interface{})
SimVar
SimVarApuGeneratorActive Simvar
args contain optional index and/or unit
func SimVarApuGeneratorSwitch(args ...interface{})
SimVar
SimVarApuGeneratorSwitch Simvar
args contain optional index and/or unit
func SimVarApuOnFireDetected(args ...interface{})
SimVar
SimVarApuOnFireDetected Simvar
args contain optional index and/or unit
func SimVarApuPctRpm(args ...interface{})
SimVar
SimVarApuPctRpm Simvar
args contain optional index and/or unit
func SimVarApuPctStarter(args ...interface{})
SimVar
SimVarApuPctStarter Simvar
args contain optional index and/or unit
func SimVarApuVolts(args ...interface{})
SimVar
SimVarApuVolts Simvar
args contain optional index and/or unit
func SimVarArtificialGroundElevation(args ...interface{})
SimVar
SimVarArtificialGroundElevation Simvar
args contain optional index and/or unit
func SimVarAtcAirline(args ...interface{})
SimVar
SimVarAtcAirline Simvar
args contain optional index and/or unit
func SimVarAtcFlightNumber(args ...interface{})
SimVar
SimVarAtcFlightNumber Simvar
args contain optional index and/or unit
func SimVarAtcHeavy(args ...interface{})
SimVar
SimVarAtcHeavy Simvar
args contain optional index and/or unit
func SimVarAtcId(args ...interface{})
SimVar
SimVarAtcId Simvar
args contain optional index and/or unit
func SimVarAtcModel(args ...interface{})
SimVar
SimVarAtcModel Simvar
args contain optional index and/or unit
func
SimVarAtcSuggestedMinRwyLanding
ΒΆ
func SimVarAtcSuggestedMinRwyLanding(args ...interface{})
SimVar
SimVarAtcSuggestedMinRwyLanding Simvar
args contain optional index and/or unit
func SimVarAtcSuggestedMinRwyTakeoff(args ...interface{})
SimVar
SimVarAtcSuggestedMinRwyTakeoff Simvar
args contain optional index and/or unit
func SimVarAtcType(args ...interface{})
SimVar
SimVarAtcType Simvar
args contain optional index and/or unit
func SimVarAttitudeBarsPosition(args ...interface{})
SimVar
SimVarAttitudeBarsPosition Simvar
args contain optional index and/or unit
func SimVarAttitudeCage(args ...interface{})
SimVar
SimVarAttitudeCage Simvar
args contain optional index and/or unit
func SimVarAttitudeIndicatorBankDegrees(args ...interface{})
SimVar
SimVarAttitudeIndicatorBankDegrees Simvar
args contain optional index and/or unit
func SimVarAttitudeIndicatorPitchDegrees(args ...interface{})
SimVar
SimVarAttitudeIndicatorPitchDegrees Simvar
args contain optional index and/or unit
func SimVarAutoBrakeSwitchCb(args ...interface{})
SimVar
SimVarAutoBrakeSwitchCb Simvar
args contain optional index and/or unit
func SimVarAutoCoordination(args ...interface{})
SimVar
SimVarAutoCoordination Simvar
args contain optional index and/or unit
func SimVarAutopilotAirspeedHold(args ...interface{})
SimVar
SimVarAutopilotAirspeedHold Simvar
args contain optional index and/or unit
func SimVarAutopilotAirspeedHoldVar(args ...interface{})
SimVar
SimVarAutopilotAirspeedHoldVar Simvar
args contain optional index and/or unit
func SimVarAutopilotAltitudeLock(args ...interface{})
SimVar
SimVarAutopilotAltitudeLock Simvar
args contain optional index and/or unit
func SimVarAutopilotAltitudeLockVar(args ...interface{})
SimVar
SimVarAutopilotAltitudeLockVar Simvar
args contain optional index and/or unit
func SimVarAutopilotApproachHold(args ...interface{})
SimVar
SimVarAutopilotApproachHold Simvar
args contain optional index and/or unit
func SimVarAutopilotAttitudeHold(args ...interface{})
SimVar
SimVarAutopilotAttitudeHold Simvar
args contain optional index and/or unit
func SimVarAutopilotAvailable(args ...interface{})
SimVar
SimVarAutopilotAvailable Simvar
args contain optional index and/or unit
func SimVarAutopilotBackcourseHold(args ...interface{})
SimVar
SimVarAutopilotBackcourseHold Simvar
args contain optional index and/or unit
func SimVarAutopilotFlightDirectorActive(args ...interface{})
SimVar
SimVarAutopilotFlightDirectorActive Simvar
args contain optional index and/or unit
func SimVarAutopilotFlightDirectorBank(args ...interface{})
SimVar
SimVarAutopilotFlightDirectorBank Simvar
args contain optional index and/or unit
func SimVarAutopilotFlightDirectorPitch(args ...interface{})
SimVar
SimVarAutopilotFlightDirectorPitch Simvar
args contain optional index and/or unit
func SimVarAutopilotGlideslopeHold(args ...interface{})
SimVar
SimVarAutopilotGlideslopeHold Simvar
args contain optional index and/or unit
func SimVarAutopilotHeadingLock(args ...interface{})
SimVar
SimVarAutopilotHeadingLock Simvar
args contain optional index and/or unit
func SimVarAutopilotHeadingLockDir(args ...interface{})
SimVar
SimVarAutopilotHeadingLockDir Simvar
args contain optional index and/or unit
func SimVarAutopilotMachHold(args ...interface{})
SimVar
SimVarAutopilotMachHold Simvar
args contain optional index and/or unit
func SimVarAutopilotMachHoldVar(args ...interface{})
SimVar
SimVarAutopilotMachHoldVar Simvar
args contain optional index and/or unit
func SimVarAutopilotMaster(args ...interface{})
SimVar
SimVarAutopilotMaster Simvar
args contain optional index and/or unit
func SimVarAutopilotMaxBank(args ...interface{})
SimVar
SimVarAutopilotMaxBank Simvar
args contain optional index and/or unit
func SimVarAutopilotNav1Lock(args ...interface{})
SimVar
SimVarAutopilotNav1Lock Simvar
func SimVarAutopilotNavSelected(args ...interface{})
SimVar
SimVarAutopilotNavSelected Simvar
args contain optional index and/or unit
func SimVarAutopilotPitchHold(args ...interface{})
SimVar
SimVarAutopilotPitchHold Simvar
args contain optional index and/or unit
func SimVarAutopilotPitchHoldRef(args ...interface{})
SimVar
SimVarAutopilotPitchHoldRef Simvar
args contain optional index and/or unit
func SimVarAutopilotRpmHold(args ...interface{})
SimVar
SimVarAutopilotRpmHold Simvar
args contain optional index and/or unit
func SimVarAutopilotRpmHoldVar(args ...interface{})
SimVar
SimVarAutopilotRpmHoldVar Simvar
args contain optional index and/or unit
func SimVarAutopilotTakeoffPowerActive(args ...interface{})
SimVar
SimVarAutopilotTakeoffPowerActive Simvar
args contain optional index and/or unit
func SimVarAutopilotThrottleArm(args ...interface{})
SimVar
SimVarAutopilotThrottleArm Simvar
args contain optional index and/or unit
func SimVarAutopilotVerticalHold(args ...interface{})
SimVar
SimVarAutopilotVerticalHold Simvar
args contain optional index and/or unit
func SimVarAutopilotVerticalHoldVar(args ...interface{})
SimVar
SimVarAutopilotVerticalHoldVar Simvar
args contain optional index and/or unit
func SimVarAutopilotWingLeveler(args ...interface{})
SimVar
SimVarAutopilotWingLeveler Simvar
args contain optional index and/or unit
func SimVarAutopilotYawDamper(args ...interface{})
SimVar
SimVarAutopilotYawDamper Simvar
args contain optional index and/or unit
func SimVarAutothrottleActive(args ...interface{})
SimVar
SimVarAutothrottleActive Simvar
args contain optional index and/or unit
func SimVarAuxWheelRotationAngle(args ...interface{})
SimVar
SimVarAuxWheelRotationAngle Simvar
args contain optional index and/or unit
func SimVarAuxWheelRpm(args ...interface{})
SimVar
SimVarAuxWheelRpm Simvar
args contain optional index and/or unit
func SimVarAvionicsMasterSwitch(args ...interface{})
SimVar
SimVarAvionicsMasterSwitch Simvar
args contain optional index and/or unit
func SimVarBarberPoleMach(args ...interface{})
SimVar
SimVarBarberPoleMach Simvar
args contain optional index and/or unit
func SimVarBarometerPressure(args ...interface{})
SimVar
SimVarBarometerPressure Simvar
args contain optional index and/or unit
func SimVarBetaDot(args ...interface{})
SimVar
SimVarBetaDot Simvar
args contain optional index and/or unit
func SimVarBlastShieldPosition(args ...interface{})
SimVar
SimVarBlastShieldPosition Simvar
args contain optional index and/or unit
func SimVarBleedAirSourceControl(args ...interface{})
SimVar
SimVarBleedAirSourceControl Simvar
args contain optional index and/or unit
func SimVarBrakeDependentHydraulicPressure(args ...interface{})
SimVar
SimVarBrakeDependentHydraulicPressure Simvar
args contain optional index and/or unit
func SimVarBrakeIndicator(args ...interface{})
SimVar
SimVarBrakeIndicator Simvar
args contain optional index and/or unit
func SimVarBrakeLeftPosition(args ...interface{})
SimVar
SimVarBrakeLeftPosition Simvar
args contain optional index and/or unit
func SimVarBrakeParkingIndicator(args ...interface{})
SimVar
SimVarBrakeParkingIndicator Simvar
args contain optional index and/or unit
func SimVarBrakeParkingPosition(args ...interface{})
SimVar
SimVarBrakeParkingPosition Simvar
args contain optional index and/or unit
func SimVarBrakeRightPosition(args ...interface{})
SimVar
SimVarBrakeRightPosition Simvar
args contain optional index and/or unit
func SimVarCabinNoSmokingAlertSwitch(args ...interface{})
SimVar
SimVarCabinNoSmokingAlertSwitch Simvar
args contain optional index and/or unit
func SimVarCabinSeatbeltsAlertSwitch(args ...interface{})
SimVar
SimVarCabinSeatbeltsAlertSwitch Simvar
args contain optional index and/or unit
func SimVarCanopyOpen(args ...interface{})
SimVar
SimVarCanopyOpen Simvar
args contain optional index and/or unit
func SimVarCarbHeatAvailable(args ...interface{})
SimVar
SimVarCarbHeatAvailable Simvar
args contain optional index and/or unit
func SimVarCategory(args ...interface{})
SimVar
SimVarCategory Simvar
args contain optional index and/or unit
func SimVarCenterWheelRotationAngle(args ...interface{})
SimVar
SimVarCenterWheelRotationAngle Simvar
args contain optional index and/or unit
func SimVarCenterWheelRpm(args ...interface{})
SimVar
SimVarCenterWheelRpm Simvar
args contain optional index and/or unit
func SimVarCgAftLimit(args ...interface{})
SimVar
SimVarCgAftLimit Simvar
args contain optional index and/or unit
func SimVarCgFwdLimit(args ...interface{})
SimVar
SimVarCgFwdLimit Simvar
args contain optional index and/or unit
func SimVarCgMaxMach(args ...interface{})
SimVar
SimVarCgMaxMach Simvar
args contain optional index and/or unit
func SimVarCgMinMach(args ...interface{})
SimVar
SimVarCgMinMach Simvar
args contain optional index and/or unit
func SimVarCgPercent(args ...interface{})
SimVar
SimVarCgPercent Simvar
args contain optional index and/or unit
func SimVarCgPercentLateral(args ...interface{})
SimVar
SimVarCgPercentLateral Simvar
args contain optional index and/or unit
func SimVarCircuitAutoBrakesOn(args ...interface{})
SimVar
SimVarCircuitAutoBrakesOn Simvar
args contain optional index and/or unit
func SimVarCircuitAutoFeatherOn(args ...interface{})
SimVar
SimVarCircuitAutoFeatherOn Simvar
args contain optional index and/or unit
func SimVarCircuitAutopilotOn(args ...interface{})
SimVar
SimVarCircuitAutopilotOn Simvar
args contain optional index and/or unit
func SimVarCircuitAvionicsOn(args ...interface{})
SimVar
SimVarCircuitAvionicsOn Simvar
args contain optional index and/or unit
func SimVarCircuitFlapMotorOn(args ...interface{})
SimVar
SimVarCircuitFlapMotorOn Simvar
args contain optional index and/or unit
func SimVarCircuitGearMotorOn(args ...interface{})
SimVar
SimVarCircuitGearMotorOn Simvar
args contain optional index and/or unit
func SimVarCircuitGearWarningOn(args ...interface{})
SimVar
SimVarCircuitGearWarningOn Simvar
args contain optional index and/or unit
func SimVarCircuitGeneralPanelOn(args ...interface{})
SimVar
SimVarCircuitGeneralPanelOn Simvar
args contain optional index and/or unit
func SimVarCircuitHydraulicPumpOn(args ...interface{})
SimVar
SimVarCircuitHydraulicPumpOn Simvar
args contain optional index and/or unit
func SimVarCircuitMarkerBeaconOn(args ...interface{})
SimVar
SimVarCircuitMarkerBeaconOn Simvar
args contain optional index and/or unit
func SimVarCircuitPitotHeatOn(args ...interface{})
SimVar
SimVarCircuitPitotHeatOn Simvar
args contain optional index and/or unit
func SimVarCircuitPropSyncOn(args ...interface{})
SimVar
SimVarCircuitPropSyncOn Simvar
args contain optional index and/or unit
func
SimVarCircuitStandyVacuumOn
ΒΆ
func SimVarCircuitStandyVacuumOn(args ...interface{})
SimVar
SimVarCircuitStandyVacuumOn Simvar
args contain optional index and/or unit
func SimVarComActiveFrequency(args ...interface{})
SimVar
SimVarComActiveFrequency Simvar
args contain optional index and/or unit
func SimVarComAvailable(args ...interface{})
SimVar
SimVarComAvailable Simvar
args contain optional index and/or unit
func SimVarComReceiveAll(args ...interface{})
SimVar
SimVarComReceiveAll Simvar
args contain optional index and/or unit
func SimVarComRecieveAll(args ...interface{})
SimVar
SimVarComRecieveAll Simvar
args contain optional index and/or unit
func
SimVarComStandbyFrequency
ΒΆ
func SimVarComStandbyFrequency(args ...interface{})
SimVar
SimVarComStandbyFrequency Simvar
args contain optional index and/or unit
func SimVarComStatus(args ...interface{})
SimVar
SimVarComStatus Simvar
args contain optional index and/or unit
func SimVarComTest(args ...interface{})
SimVar
SimVarComTest Simvar
args contain optional index and/or unit
func SimVarComTransmit(args ...interface{})
SimVar
SimVarComTransmit Simvar
args contain optional index and/or unit
func SimVarConcordeNoseAngle(args ...interface{})
SimVar
SimVarConcordeNoseAngle Simvar
args contain optional index and/or unit
func
SimVarConcordeVisorNoseHandle
ΒΆ
func SimVarConcordeVisorNoseHandle(args ...interface{})
SimVar
SimVarConcordeVisorNoseHandle Simvar
args contain optional index and/or unit
func SimVarConcordeVisorPositionPercent(args ...interface{})
SimVar
SimVarConcordeVisorPositionPercent Simvar
args contain optional index and/or unit
func SimVarCrashFlag(args ...interface{})
SimVar
SimVarCrashFlag Simvar
args contain optional index and/or unit
func SimVarCrashSequence(args ...interface{})
SimVar
SimVarCrashSequence Simvar
args contain optional index and/or unit
func SimVarDecisionAltitudeMsl(args ...interface{})
SimVar
SimVarDecisionAltitudeMsl Simvar
args contain optional index and/or unit
func SimVarDecisionHeight(args ...interface{})
SimVar
SimVarDecisionHeight Simvar
args contain optional index and/or unit
func SimVarDeltaHeadingRate(args ...interface{})
SimVar
SimVarDeltaHeadingRate Simvar
args contain optional index and/or unit
func SimVarDesignSpeedVc(args ...interface{})
SimVar
SimVarDesignSpeedVc Simvar
args contain optional index and/or unit
func SimVarDesignSpeedVs0(args ...interface{})
SimVar
SimVarDesignSpeedVs0 Simvar
func SimVarDesignSpeedVs1(args ...interface{})
SimVar
SimVarDesignSpeedVs1 Simvar
func SimVarDiskBankAngle(args ...interface{})
SimVar
SimVarDiskBankAngle Simvar
args contain optional index and/or unit
func SimVarDiskBankPct(args ...interface{})
SimVar
SimVarDiskBankPct Simvar
args contain optional index and/or unit
func SimVarDiskConingPct(args ...interface{})
SimVar
SimVarDiskConingPct Simvar
args contain optional index and/or unit
func SimVarDiskPitchAngle(args ...interface{})
SimVar
SimVarDiskPitchAngle Simvar
args contain optional index and/or unit
func SimVarDiskPitchPct(args ...interface{})
SimVar
SimVarDiskPitchPct Simvar
args contain optional index and/or unit
func SimVarDmeSound(args ...interface{})
SimVar
SimVarDmeSound Simvar
args contain optional index and/or unit
func SimVarDroppableObjectsCount(args ...interface{})
SimVar
SimVarDroppableObjectsCount Simvar
args contain optional index and/or unit
func SimVarDroppableObjectsType(args ...interface{})
SimVar
SimVarDroppableObjectsType Simvar
args contain optional index and/or unit
func SimVarDroppableObjectsUiName(args ...interface{})
SimVar
SimVarDroppableObjectsUiName Simvar
args contain optional index and/or unit
func SimVarDynamicPressure(args ...interface{})
SimVar
SimVarDynamicPressure Simvar
args contain optional index and/or unit
func SimVarElectricalAvionicsBusAmps(args ...interface{})
SimVar
SimVarElectricalAvionicsBusAmps Simvar
args contain optional index and/or unit
func SimVarElectricalAvionicsBusVoltage(args ...interface{})
SimVar
SimVarElectricalAvionicsBusVoltage Simvar
args contain optional index and/or unit
func SimVarElectricalBatteryBusAmps(args ...interface{})
SimVar
SimVarElectricalBatteryBusAmps Simvar
args contain optional index and/or unit
func SimVarElectricalBatteryBusVoltage(args ...interface{})
SimVar
SimVarElectricalBatteryBusVoltage Simvar
args contain optional index and/or unit
func SimVarElectricalBatteryLoad(args ...interface{})
SimVar
SimVarElectricalBatteryLoad Simvar
args contain optional index and/or unit
func SimVarElectricalBatteryVoltage(args ...interface{})
SimVar
SimVarElectricalBatteryVoltage Simvar
args contain optional index and/or unit
func SimVarElectricalGenaltBusAmps(args ...interface{})
SimVar
SimVarElectricalGenaltBusAmps Simvar
args contain optional index and/or unit
func SimVarElectricalGenaltBusVoltage(args ...interface{})
SimVar
SimVarElectricalGenaltBusVoltage Simvar
args contain optional index and/or unit
func SimVarElectricalHotBatteryBusAmps(args ...interface{})
SimVar
SimVarElectricalHotBatteryBusAmps Simvar
args contain optional index and/or unit
func SimVarElectricalHotBatteryBusVoltage(args ...interface{})
SimVar
SimVarElectricalHotBatteryBusVoltage Simvar
args contain optional index and/or unit
func
SimVarElectricalMainBusAmps
ΒΆ
func SimVarElectricalMainBusAmps(args ...interface{})
SimVar
SimVarElectricalMainBusAmps Simvar
args contain optional index and/or unit
func
SimVarElectricalMainBusVoltage
ΒΆ
func SimVarElectricalMainBusVoltage(args ...interface{})
SimVar
SimVarElectricalMainBusVoltage Simvar
args contain optional index and/or unit
func SimVarElectricalMasterBattery(args ...interface{})
SimVar
SimVarElectricalMasterBattery Simvar
args contain optional index and/or unit
func SimVarElectricalOldChargingAmps(args ...interface{})
SimVar
SimVarElectricalOldChargingAmps Simvar
args contain optional index and/or unit
func SimVarElectricalTotalLoadAmps(args ...interface{})
SimVar
SimVarElectricalTotalLoadAmps Simvar
args contain optional index and/or unit
func SimVarElevatorDeflection(args ...interface{})
SimVar
SimVarElevatorDeflection Simvar
args contain optional index and/or unit
func SimVarElevatorDeflectionPct(args ...interface{})
SimVar
SimVarElevatorDeflectionPct Simvar
args contain optional index and/or unit
func SimVarElevatorPosition(args ...interface{})
SimVar
SimVarElevatorPosition Simvar
args contain optional index and/or unit
func SimVarElevatorTrimIndicator(args ...interface{})
SimVar
SimVarElevatorTrimIndicator Simvar
args contain optional index and/or unit
func SimVarElevatorTrimPct(args ...interface{})
SimVar
SimVarElevatorTrimPct Simvar
args contain optional index and/or unit
func SimVarElevatorTrimPosition(args ...interface{})
SimVar
SimVarElevatorTrimPosition Simvar
args contain optional index and/or unit
func SimVarElevonDeflection(args ...interface{})
SimVar
SimVarElevonDeflection Simvar
args contain optional index and/or unit
func SimVarEmptyWeight(args ...interface{})
SimVar
SimVarEmptyWeight Simvar
args contain optional index and/or unit
func SimVarEmptyWeightCrossCoupledMoi(args ...interface{})
SimVar
SimVarEmptyWeightCrossCoupledMoi Simvar
args contain optional index and/or unit
func SimVarEmptyWeightPitchMoi(args ...interface{})
SimVar
SimVarEmptyWeightPitchMoi Simvar
args contain optional index and/or unit
func SimVarEmptyWeightRollMoi(args ...interface{})
SimVar
SimVarEmptyWeightRollMoi Simvar
args contain optional index and/or unit
func SimVarEmptyWeightYawMoi(args ...interface{})
SimVar
SimVarEmptyWeightYawMoi Simvar
args contain optional index and/or unit
func SimVarEngAntiIce(args ...interface{})
SimVar
SimVarEngAntiIce Simvar
args contain optional index and/or unit
func SimVarEngCombustion(args ...interface{})
SimVar
SimVarEngCombustion Simvar
args contain optional index and/or unit
func SimVarEngCylinderHeadTemperature(args ...interface{})
SimVar
SimVarEngCylinderHeadTemperature Simvar
args contain optional index and/or unit
func SimVarEngElectricalLoad(args ...interface{})
SimVar
SimVarEngElectricalLoad Simvar
args contain optional index and/or unit
func SimVarEngExhaustGasTemperature(args ...interface{})
SimVar
SimVarEngExhaustGasTemperature Simvar
args contain optional index and/or unit
func SimVarEngExhaustGasTemperatureGes(args ...interface{})
SimVar
SimVarEngExhaustGasTemperatureGes Simvar
args contain optional index and/or unit
func SimVarEngFailed(args ...interface{})
SimVar
SimVarEngFailed Simvar
args contain optional index and/or unit
func SimVarEngFuelFlowBugPosition(args ...interface{})
SimVar
SimVarEngFuelFlowBugPosition Simvar
args contain optional index and/or unit
func SimVarEngFuelFlowPph(args ...interface{})
SimVar
SimVarEngFuelFlowPph Simvar
args contain optional index and/or unit
func SimVarEngFuelPressure(args ...interface{})
SimVar
SimVarEngFuelPressure Simvar
args contain optional index and/or unit
func SimVarEngHydraulicPressure(args ...interface{})
SimVar
SimVarEngHydraulicPressure Simvar
args contain optional index and/or unit
func SimVarEngHydraulicQuantity(args ...interface{})
SimVar
SimVarEngHydraulicQuantity Simvar
args contain optional index and/or unit
func SimVarEngManifoldPressure(args ...interface{})
SimVar
SimVarEngManifoldPressure Simvar
args contain optional index and/or unit
func SimVarEngMaxRpm(args ...interface{})
SimVar
SimVarEngMaxRpm Simvar
args contain optional index and/or unit
func SimVarEngN1Rpm(args ...interface{})
SimVar
SimVarEngN1Rpm Simvar
func SimVarEngN2Rpm(args ...interface{})
SimVar
SimVarEngN2Rpm Simvar
func SimVarEngOilPressure(args ...interface{})
SimVar
SimVarEngOilPressure Simvar
args contain optional index and/or unit
func SimVarEngOilQuantity(args ...interface{})
SimVar
SimVarEngOilQuantity Simvar
args contain optional index and/or unit
func SimVarEngOilTemperature(args ...interface{})
SimVar
SimVarEngOilTemperature Simvar
args contain optional index and/or unit
func SimVarEngOnFire(args ...interface{})
SimVar
SimVarEngOnFire Simvar
args contain optional index and/or unit
func SimVarEngPressureRatio(args ...interface{})
SimVar
SimVarEngPressureRatio Simvar
args contain optional index and/or unit
func SimVarEngRotorRpm(args ...interface{})
SimVar
SimVarEngRotorRpm Simvar
args contain optional index and/or unit
func SimVarEngRpmAnimationPercent(args ...interface{})
SimVar
SimVarEngRpmAnimationPercent Simvar
args contain optional index and/or unit
func SimVarEngRpmScaler(args ...interface{})
SimVar
SimVarEngRpmScaler Simvar
args contain optional index and/or unit
func SimVarEngTorque(args ...interface{})
SimVar
SimVarEngTorque Simvar
args contain optional index and/or unit
func SimVarEngTorquePercent(args ...interface{})
SimVar
SimVarEngTorquePercent Simvar
args contain optional index and/or unit
func SimVarEngTransmissionPressure(args ...interface{})
SimVar
SimVarEngTransmissionPressure Simvar
args contain optional index and/or unit
func SimVarEngTransmissionTemperature(args ...interface{})
SimVar
SimVarEngTransmissionTemperature Simvar
args contain optional index and/or unit
func SimVarEngTurbineTemperature(args ...interface{})
SimVar
SimVarEngTurbineTemperature Simvar
args contain optional index and/or unit
func SimVarEngVibration(args ...interface{})
SimVar
SimVarEngVibration Simvar
args contain optional index and/or unit
func SimVarEngineControlSelect(args ...interface{})
SimVar
SimVarEngineControlSelect Simvar
args contain optional index and/or unit
func SimVarEngineMixureAvailable(args ...interface{})
SimVar
SimVarEngineMixureAvailable Simvar
args contain optional index and/or unit
func SimVarEngineType(args ...interface{})
SimVar
SimVarEngineType Simvar
args contain optional index and/or unit
func SimVarEstimatedCruiseSpeed(args ...interface{})
SimVar
SimVarEstimatedCruiseSpeed Simvar
args contain optional index and/or unit
func SimVarEstimatedFuelFlow(args ...interface{})
SimVar
SimVarEstimatedFuelFlow Simvar
args contain optional index and/or unit
func SimVarExitOpen(args ...interface{})
SimVar
SimVarExitOpen Simvar
args contain optional index and/or unit
func SimVarExitPosx(args ...interface{})
SimVar
SimVarExitPosx Simvar
args contain optional index and/or unit
func SimVarExitPosy(args ...interface{})
SimVar
SimVarExitPosy Simvar
args contain optional index and/or unit
func SimVarExitPosz(args ...interface{})
SimVar
SimVarExitPosz Simvar
args contain optional index and/or unit
func SimVarExitType(args ...interface{})
SimVar
SimVarExitType Simvar
args contain optional index and/or unit
func SimVarEyepointPosition(args ...interface{})
SimVar
SimVarEyepointPosition Simvar
args contain optional index and/or unit
func SimVarFireBottleDischarged(args ...interface{})
SimVar
SimVarFireBottleDischarged Simvar
args contain optional index and/or unit
func SimVarFireBottleSwitch(args ...interface{})
SimVar
SimVarFireBottleSwitch Simvar
args contain optional index and/or unit
func SimVarFlapDamageBySpeed(args ...interface{})
SimVar
SimVarFlapDamageBySpeed Simvar
args contain optional index and/or unit
func SimVarFlapSpeedExceeded(args ...interface{})
SimVar
SimVarFlapSpeedExceeded Simvar
args contain optional index and/or unit
func SimVarFlapsAvailable(args ...interface{})
SimVar
SimVarFlapsAvailable Simvar
args contain optional index and/or unit
func
SimVarFlapsHandleIndex
ΒΆ
func SimVarFlapsHandleIndex(args ...interface{})
SimVar
SimVarFlapsHandleIndex Simvar
args contain optional index and/or unit
func
SimVarFlapsHandlePercent
ΒΆ
func SimVarFlapsHandlePercent(args ...interface{})
SimVar
SimVarFlapsHandlePercent Simvar
args contain optional index and/or unit
func
SimVarFlapsNumHandlePositions
ΒΆ
func SimVarFlapsNumHandlePositions(args ...interface{})
SimVar
SimVarFlapsNumHandlePositions Simvar
args contain optional index and/or unit
func SimVarFlyByWireElacFailed(args ...interface{})
SimVar
SimVarFlyByWireElacFailed Simvar
args contain optional index and/or unit
func SimVarFlyByWireElacSwitch(args ...interface{})
SimVar
SimVarFlyByWireElacSwitch Simvar
args contain optional index and/or unit
func SimVarFlyByWireFacFailed(args ...interface{})
SimVar
SimVarFlyByWireFacFailed Simvar
args contain optional index and/or unit
func SimVarFlyByWireFacSwitch(args ...interface{})
SimVar
SimVarFlyByWireFacSwitch Simvar
args contain optional index and/or unit
func SimVarFlyByWireSecFailed(args ...interface{})
SimVar
SimVarFlyByWireSecFailed Simvar
args contain optional index and/or unit
func SimVarFlyByWireSecSwitch(args ...interface{})
SimVar
SimVarFlyByWireSecSwitch Simvar
args contain optional index and/or unit
func SimVarFoldingWingLeftPercent(args ...interface{})
SimVar
SimVarFoldingWingLeftPercent Simvar
args contain optional index and/or unit
func SimVarFoldingWingRightPercent(args ...interface{})
SimVar
SimVarFoldingWingRightPercent Simvar
args contain optional index and/or unit
func SimVarFuelCrossFeed(args ...interface{})
SimVar
SimVarFuelCrossFeed Simvar
args contain optional index and/or unit
func SimVarFuelLeftCapacity(args ...interface{})
SimVar
SimVarFuelLeftCapacity Simvar
args contain optional index and/or unit
func SimVarFuelLeftQuantity(args ...interface{})
SimVar
SimVarFuelLeftQuantity Simvar
args contain optional index and/or unit
func SimVarFuelRightCapacity(args ...interface{})
SimVar
SimVarFuelRightCapacity Simvar
args contain optional index and/or unit
func SimVarFuelRightQuantity(args ...interface{})
SimVar
SimVarFuelRightQuantity Simvar
args contain optional index and/or unit
func SimVarFuelSelectedQuantity(args ...interface{})
SimVar
SimVarFuelSelectedQuantity Simvar
args contain optional index and/or unit
func SimVarFuelSelectedQuantityPercent(args ...interface{})
SimVar
SimVarFuelSelectedQuantityPercent Simvar
args contain optional index and/or unit
func SimVarFuelSelectedTransferMode(args ...interface{})
SimVar
SimVarFuelSelectedTransferMode Simvar
args contain optional index and/or unit
func SimVarFuelTankCenter2Capacity(args ...interface{})
SimVar
SimVarFuelTankCenter2Capacity Simvar
func SimVarFuelTankCenter2Level(args ...interface{})
SimVar
SimVarFuelTankCenter2Level Simvar
func SimVarFuelTankCenter2Quantity(args ...interface{})
SimVar
SimVarFuelTankCenter2Quantity Simvar
func SimVarFuelTankCenter3Capacity(args ...interface{})
SimVar
SimVarFuelTankCenter3Capacity Simvar
func SimVarFuelTankCenter3Level(args ...interface{})
SimVar
SimVarFuelTankCenter3Level Simvar
func SimVarFuelTankCenter3Quantity(args ...interface{})
SimVar
SimVarFuelTankCenter3Quantity Simvar
func SimVarFuelTankCenterCapacity(args ...interface{})
SimVar
SimVarFuelTankCenterCapacity Simvar
args contain optional index and/or unit
func SimVarFuelTankCenterLevel(args ...interface{})
SimVar
SimVarFuelTankCenterLevel Simvar
args contain optional index and/or unit
func SimVarFuelTankCenterQuantity(args ...interface{})
SimVar
SimVarFuelTankCenterQuantity Simvar
args contain optional index and/or unit
func SimVarFuelTankExternal1Capacity(args ...interface{})
SimVar
SimVarFuelTankExternal1Capacity Simvar
func SimVarFuelTankExternal1Level(args ...interface{})
SimVar
SimVarFuelTankExternal1Level Simvar
func SimVarFuelTankExternal1Quantity(args ...interface{})
SimVar
SimVarFuelTankExternal1Quantity Simvar
func SimVarFuelTankExternal2Capacity(args ...interface{})
SimVar
SimVarFuelTankExternal2Capacity Simvar
func SimVarFuelTankExternal2Level(args ...interface{})
SimVar
SimVarFuelTankExternal2Level Simvar
func SimVarFuelTankExternal2Quantity(args ...interface{})
SimVar
SimVarFuelTankExternal2Quantity Simvar
func SimVarFuelTankLeftAuxCapacity(args ...interface{})
SimVar
SimVarFuelTankLeftAuxCapacity Simvar
args contain optional index and/or unit
func SimVarFuelTankLeftAuxLevel(args ...interface{})
SimVar
SimVarFuelTankLeftAuxLevel Simvar
args contain optional index and/or unit
func SimVarFuelTankLeftAuxQuantity(args ...interface{})
SimVar
SimVarFuelTankLeftAuxQuantity Simvar
args contain optional index and/or unit
func
SimVarFuelTankLeftMainCapacity
ΒΆ
func SimVarFuelTankLeftMainCapacity(args ...interface{})
SimVar
SimVarFuelTankLeftMainCapacity Simvar
args contain optional index and/or unit
func
SimVarFuelTankLeftMainLevel
ΒΆ
func SimVarFuelTankLeftMainLevel(args ...interface{})
SimVar
SimVarFuelTankLeftMainLevel Simvar
args contain optional index and/or unit
func
SimVarFuelTankLeftMainQuantity
ΒΆ
func SimVarFuelTankLeftMainQuantity(args ...interface{})
SimVar
SimVarFuelTankLeftMainQuantity Simvar
args contain optional index and/or unit
func SimVarFuelTankLeftTipCapacity(args ...interface{})
SimVar
SimVarFuelTankLeftTipCapacity Simvar
args contain optional index and/or unit
func SimVarFuelTankLeftTipLevel(args ...interface{})
SimVar
SimVarFuelTankLeftTipLevel Simvar
args contain optional index and/or unit
func SimVarFuelTankLeftTipQuantity(args ...interface{})
SimVar
SimVarFuelTankLeftTipQuantity Simvar
args contain optional index and/or unit
func SimVarFuelTankRightAuxCapacity(args ...interface{})
SimVar
SimVarFuelTankRightAuxCapacity Simvar
args contain optional index and/or unit
func SimVarFuelTankRightAuxLevel(args ...interface{})
SimVar
SimVarFuelTankRightAuxLevel Simvar
args contain optional index and/or unit
func SimVarFuelTankRightAuxQuantity(args ...interface{})
SimVar
SimVarFuelTankRightAuxQuantity Simvar
args contain optional index and/or unit
func
SimVarFuelTankRightMainCapacity
ΒΆ
func SimVarFuelTankRightMainCapacity(args ...interface{})
SimVar
SimVarFuelTankRightMainCapacity Simvar
args contain optional index and/or unit
func
SimVarFuelTankRightMainLevel
ΒΆ
func SimVarFuelTankRightMainLevel(args ...interface{})
SimVar
SimVarFuelTankRightMainLevel Simvar
args contain optional index and/or unit
func
SimVarFuelTankRightMainQuantity
ΒΆ
func SimVarFuelTankRightMainQuantity(args ...interface{})
SimVar
SimVarFuelTankRightMainQuantity Simvar
args contain optional index and/or unit
func SimVarFuelTankRightTipCapacity(args ...interface{})
SimVar
SimVarFuelTankRightTipCapacity Simvar
args contain optional index and/or unit
func SimVarFuelTankRightTipLevel(args ...interface{})
SimVar
SimVarFuelTankRightTipLevel Simvar
args contain optional index and/or unit
func SimVarFuelTankRightTipQuantity(args ...interface{})
SimVar
SimVarFuelTankRightTipQuantity Simvar
args contain optional index and/or unit
func SimVarFuelTankSelector(args ...interface{})
SimVar
SimVarFuelTankSelector Simvar
args contain optional index and/or unit
func SimVarFuelTotalCapacity(args ...interface{})
SimVar
SimVarFuelTotalCapacity Simvar
args contain optional index and/or unit
func SimVarFuelTotalQuantity(args ...interface{})
SimVar
SimVarFuelTotalQuantity Simvar
args contain optional index and/or unit
func SimVarFuelTotalQuantityWeight(args ...interface{})
SimVar
SimVarFuelTotalQuantityWeight Simvar
args contain optional index and/or unit
func SimVarFuelWeightPerGallon(args ...interface{})
SimVar
SimVarFuelWeightPerGallon Simvar
args contain optional index and/or unit
func SimVarFullThrottleThrustToWeightRatio(args ...interface{})
SimVar
SimVarFullThrottleThrustToWeightRatio Simvar
args contain optional index and/or unit
func SimVarGForce(args ...interface{})
SimVar
SimVarGForce Simvar
args contain optional index and/or unit
func SimVarGearAnimationPosition(args ...interface{})
SimVar
SimVarGearAnimationPosition Simvar
args contain optional index and/or unit
func SimVarGearAuxPosition(args ...interface{})
SimVar
SimVarGearAuxPosition Simvar
args contain optional index and/or unit
func SimVarGearAuxSteerAngle(args ...interface{})
SimVar
SimVarGearAuxSteerAngle Simvar
args contain optional index and/or unit
func SimVarGearAuxSteerAnglePct(args ...interface{})
SimVar
SimVarGearAuxSteerAnglePct Simvar
args contain optional index and/or unit
func SimVarGearCenterPosition(args ...interface{})
SimVar
SimVarGearCenterPosition Simvar
args contain optional index and/or unit
func SimVarGearCenterSteerAngle(args ...interface{})
SimVar
SimVarGearCenterSteerAngle Simvar
args contain optional index and/or unit
func SimVarGearCenterSteerAnglePct(args ...interface{})
SimVar
SimVarGearCenterSteerAnglePct Simvar
args contain optional index and/or unit
func SimVarGearDamageBySpeed(args ...interface{})
SimVar
SimVarGearDamageBySpeed Simvar
args contain optional index and/or unit
func
SimVarGearEmergencyHandlePosition
ΒΆ
func SimVarGearEmergencyHandlePosition(args ...interface{})
SimVar
SimVarGearEmergencyHandlePosition Simvar
args contain optional index and/or unit
func
SimVarGearHandlePosition
ΒΆ
func SimVarGearHandlePosition(args ...interface{})
SimVar
SimVarGearHandlePosition Simvar
args contain optional index and/or unit
func SimVarGearHydraulicPressure(args ...interface{})
SimVar
SimVarGearHydraulicPressure Simvar
args contain optional index and/or unit
func SimVarGearLeftPosition(args ...interface{})
SimVar
SimVarGearLeftPosition Simvar
args contain optional index and/or unit
func SimVarGearLeftSteerAngle(args ...interface{})
SimVar
SimVarGearLeftSteerAngle Simvar
args contain optional index and/or unit
func SimVarGearLeftSteerAnglePct(args ...interface{})
SimVar
SimVarGearLeftSteerAnglePct Simvar
args contain optional index and/or unit
func SimVarGearPosition(args ...interface{})
SimVar
SimVarGearPosition Simvar
args contain optional index and/or unit
func SimVarGearRightPosition(args ...interface{})
SimVar
SimVarGearRightPosition Simvar
args contain optional index and/or unit
func SimVarGearRightSteerAngle(args ...interface{})
SimVar
SimVarGearRightSteerAngle Simvar
args contain optional index and/or unit
func SimVarGearRightSteerAnglePct(args ...interface{})
SimVar
SimVarGearRightSteerAnglePct Simvar
args contain optional index and/or unit
func SimVarGearSpeedExceeded(args ...interface{})
SimVar
SimVarGearSpeedExceeded Simvar
args contain optional index and/or unit
func SimVarGearSteerAngle(args ...interface{})
SimVar
SimVarGearSteerAngle Simvar
args contain optional index and/or unit
func SimVarGearSteerAnglePct(args ...interface{})
SimVar
SimVarGearSteerAnglePct Simvar
args contain optional index and/or unit
func SimVarGearTailPosition(args ...interface{})
SimVar
SimVarGearTailPosition Simvar
args contain optional index and/or unit
func SimVarGearTotalPctExtended(args ...interface{})
SimVar
SimVarGearTotalPctExtended Simvar
args contain optional index and/or unit
func SimVarGearWarning(args ...interface{})
SimVar
SimVarGearWarning Simvar
args contain optional index and/or unit
func SimVarGeneralEngAntiIcePosition(args ...interface{})
SimVar
SimVarGeneralEngAntiIcePosition Simvar
args contain optional index and/or unit
func SimVarGeneralEngCombustion(args ...interface{})
SimVar
SimVarGeneralEngCombustion Simvar
args contain optional index and/or unit
func SimVarGeneralEngCombustionSoundPercent(args ...interface{})
SimVar
SimVarGeneralEngCombustionSoundPercent Simvar
args contain optional index and/or unit
func SimVarGeneralEngDamagePercent(args ...interface{})
SimVar
SimVarGeneralEngDamagePercent Simvar
args contain optional index and/or unit
func SimVarGeneralEngElapsedTime(args ...interface{})
SimVar
SimVarGeneralEngElapsedTime Simvar
args contain optional index and/or unit
func SimVarGeneralEngExhaustGasTemperature(args ...interface{})
SimVar
SimVarGeneralEngExhaustGasTemperature Simvar
args contain optional index and/or unit
func SimVarGeneralEngFailed(args ...interface{})
SimVar
SimVarGeneralEngFailed Simvar
args contain optional index and/or unit
func SimVarGeneralEngFuelPressure(args ...interface{})
SimVar
SimVarGeneralEngFuelPressure Simvar
args contain optional index and/or unit
func SimVarGeneralEngFuelPumpOn(args ...interface{})
SimVar
SimVarGeneralEngFuelPumpOn Simvar
args contain optional index and/or unit
func SimVarGeneralEngFuelPumpSwitch(args ...interface{})
SimVar
SimVarGeneralEngFuelPumpSwitch Simvar
args contain optional index and/or unit
func SimVarGeneralEngFuelUsedSinceStart(args ...interface{})
SimVar
SimVarGeneralEngFuelUsedSinceStart Simvar
args contain optional index and/or unit
func SimVarGeneralEngFuelValve(args ...interface{})
SimVar
SimVarGeneralEngFuelValve Simvar
args contain optional index and/or unit
func SimVarGeneralEngGeneratorActive(args ...interface{})
SimVar
SimVarGeneralEngGeneratorActive Simvar
args contain optional index and/or unit
func SimVarGeneralEngGeneratorSwitch(args ...interface{})
SimVar
SimVarGeneralEngGeneratorSwitch Simvar
args contain optional index and/or unit
func SimVarGeneralEngMasterAlternator(args ...interface{})
SimVar
SimVarGeneralEngMasterAlternator Simvar
args contain optional index and/or unit
func SimVarGeneralEngMaxReachedRpm(args ...interface{})
SimVar
SimVarGeneralEngMaxReachedRpm Simvar
args contain optional index and/or unit
func SimVarGeneralEngMixtureLeverPosition(args ...interface{})
SimVar
SimVarGeneralEngMixtureLeverPosition Simvar
args contain optional index and/or unit
func SimVarGeneralEngOilLeakedPercent(args ...interface{})
SimVar
SimVarGeneralEngOilLeakedPercent Simvar
args contain optional index and/or unit
func SimVarGeneralEngOilPressure(args ...interface{})
SimVar
SimVarGeneralEngOilPressure Simvar
args contain optional index and/or unit
func SimVarGeneralEngOilTemperature(args ...interface{})
SimVar
SimVarGeneralEngOilTemperature Simvar
args contain optional index and/or unit
func SimVarGeneralEngPctMaxRpm(args ...interface{})
SimVar
SimVarGeneralEngPctMaxRpm Simvar
args contain optional index and/or unit
func SimVarGeneralEngPropellerLeverPosition(args ...interface{})
SimVar
SimVarGeneralEngPropellerLeverPosition Simvar
args contain optional index and/or unit
func SimVarGeneralEngRpm(args ...interface{})
SimVar
SimVarGeneralEngRpm Simvar
args contain optional index and/or unit
func SimVarGeneralEngStarter(args ...interface{})
SimVar
SimVarGeneralEngStarter Simvar
args contain optional index and/or unit
func SimVarGeneralEngStarterActive(args ...interface{})
SimVar
SimVarGeneralEngStarterActive Simvar
args contain optional index and/or unit
func SimVarGeneralEngThrottleLeverPosition(args ...interface{})
SimVar
SimVarGeneralEngThrottleLeverPosition Simvar
args contain optional index and/or unit
func SimVarGenerator(iFace interface{}) ([]
SimVar
,
error
)
func SimVarGpsApproachAirportId(args ...interface{})
SimVar
SimVarGpsApproachAirportId Simvar
args contain optional index and/or unit
func SimVarGpsApproachApproachId(args ...interface{})
SimVar
SimVarGpsApproachApproachId Simvar
args contain optional index and/or unit
func SimVarGpsApproachApproachIndex(args ...interface{})
SimVar
SimVarGpsApproachApproachIndex Simvar
args contain optional index and/or unit
func SimVarGpsApproachApproachType(args ...interface{})
SimVar
SimVarGpsApproachApproachType Simvar
args contain optional index and/or unit
func SimVarGpsApproachIsFinal(args ...interface{})
SimVar
SimVarGpsApproachIsFinal Simvar
args contain optional index and/or unit
func SimVarGpsApproachIsMissed(args ...interface{})
SimVar
SimVarGpsApproachIsMissed Simvar
args contain optional index and/or unit
func SimVarGpsApproachIsWpRunway(args ...interface{})
SimVar
SimVarGpsApproachIsWpRunway Simvar
args contain optional index and/or unit
func SimVarGpsApproachMode(args ...interface{})
SimVar
SimVarGpsApproachMode Simvar
args contain optional index and/or unit
func SimVarGpsApproachSegmentType(args ...interface{})
SimVar
SimVarGpsApproachSegmentType Simvar
args contain optional index and/or unit
func SimVarGpsApproachTimezoneDeviation(args ...interface{})
SimVar
SimVarGpsApproachTimezoneDeviation Simvar
args contain optional index and/or unit
func SimVarGpsApproachTransitionId(args ...interface{})
SimVar
SimVarGpsApproachTransitionId Simvar
args contain optional index and/or unit
func SimVarGpsApproachTransitionIndex(args ...interface{})
SimVar
SimVarGpsApproachTransitionIndex Simvar
args contain optional index and/or unit
func SimVarGpsApproachWpCount(args ...interface{})
SimVar
SimVarGpsApproachWpCount Simvar
args contain optional index and/or unit
func SimVarGpsApproachWpIndex(args ...interface{})
SimVar
SimVarGpsApproachWpIndex Simvar
args contain optional index and/or unit
func SimVarGpsApproachWpType(args ...interface{})
SimVar
SimVarGpsApproachWpType Simvar
args contain optional index and/or unit
func SimVarGpsCourseToSteer(args ...interface{})
SimVar
SimVarGpsCourseToSteer Simvar
args contain optional index and/or unit
func SimVarGpsDrivesNav1(args ...interface{})
SimVar
SimVarGpsDrivesNav1 Simvar
func SimVarGpsEta(args ...interface{})
SimVar
SimVarGpsEta Simvar
args contain optional index and/or unit
func SimVarGpsEte(args ...interface{})
SimVar
SimVarGpsEte Simvar
args contain optional index and/or unit
func SimVarGpsFlightPlanWpCount(args ...interface{})
SimVar
SimVarGpsFlightPlanWpCount Simvar
args contain optional index and/or unit
func SimVarGpsFlightPlanWpIndex(args ...interface{})
SimVar
SimVarGpsFlightPlanWpIndex Simvar
args contain optional index and/or unit
func SimVarGpsGroundMagneticTrack(args ...interface{})
SimVar
SimVarGpsGroundMagneticTrack Simvar
args contain optional index and/or unit
func SimVarGpsGroundSpeed(args ...interface{})
SimVar
SimVarGpsGroundSpeed Simvar
args contain optional index and/or unit
func SimVarGpsGroundTrueHeading(args ...interface{})
SimVar
SimVarGpsGroundTrueHeading Simvar
args contain optional index and/or unit
func SimVarGpsGroundTrueTrack(args ...interface{})
SimVar
SimVarGpsGroundTrueTrack Simvar
args contain optional index and/or unit
func SimVarGpsIsActiveFlightPlan(args ...interface{})
SimVar
SimVarGpsIsActiveFlightPlan Simvar
args contain optional index and/or unit
func SimVarGpsIsActiveWayPoint(args ...interface{})
SimVar
SimVarGpsIsActiveWayPoint Simvar
args contain optional index and/or unit
func SimVarGpsIsActiveWpLocked(args ...interface{})
SimVar
SimVarGpsIsActiveWpLocked Simvar
args contain optional index and/or unit
func SimVarGpsIsApproachActive(args ...interface{})
SimVar
SimVarGpsIsApproachActive Simvar
args contain optional index and/or unit
func SimVarGpsIsApproachLoaded(args ...interface{})
SimVar
SimVarGpsIsApproachLoaded Simvar
args contain optional index and/or unit
func SimVarGpsIsArrived(args ...interface{})
SimVar
SimVarGpsIsArrived Simvar
args contain optional index and/or unit
func SimVarGpsIsDirecttoFlightplan(args ...interface{})
SimVar
SimVarGpsIsDirecttoFlightplan Simvar
args contain optional index and/or unit
func SimVarGpsMagvar(args ...interface{})
SimVar
SimVarGpsMagvar Simvar
args contain optional index and/or unit
func SimVarGpsPositionAlt(args ...interface{})
SimVar
SimVarGpsPositionAlt Simvar
args contain optional index and/or unit
func SimVarGpsPositionLat(args ...interface{})
SimVar
SimVarGpsPositionLat Simvar
args contain optional index and/or unit
func SimVarGpsPositionLon(args ...interface{})
SimVar
SimVarGpsPositionLon Simvar
args contain optional index and/or unit
func SimVarGpsTargetAltitude(args ...interface{})
SimVar
SimVarGpsTargetAltitude Simvar
args contain optional index and/or unit
func SimVarGpsTargetDistance(args ...interface{})
SimVar
SimVarGpsTargetDistance Simvar
args contain optional index and/or unit
func SimVarGpsWpBearing(args ...interface{})
SimVar
SimVarGpsWpBearing Simvar
args contain optional index and/or unit
func SimVarGpsWpCrossTrk(args ...interface{})
SimVar
SimVarGpsWpCrossTrk Simvar
args contain optional index and/or unit
func SimVarGpsWpDesiredTrack(args ...interface{})
SimVar
SimVarGpsWpDesiredTrack Simvar
args contain optional index and/or unit
func SimVarGpsWpDistance(args ...interface{})
SimVar
SimVarGpsWpDistance Simvar
args contain optional index and/or unit
func SimVarGpsWpEta(args ...interface{})
SimVar
SimVarGpsWpEta Simvar
args contain optional index and/or unit
func SimVarGpsWpEte(args ...interface{})
SimVar
SimVarGpsWpEte Simvar
args contain optional index and/or unit
func SimVarGpsWpNextAlt(args ...interface{})
SimVar
SimVarGpsWpNextAlt Simvar
args contain optional index and/or unit
func SimVarGpsWpNextId(args ...interface{})
SimVar
SimVarGpsWpNextId Simvar
args contain optional index and/or unit
func SimVarGpsWpNextLat(args ...interface{})
SimVar
SimVarGpsWpNextLat Simvar
args contain optional index and/or unit
func SimVarGpsWpNextLon(args ...interface{})
SimVar
SimVarGpsWpNextLon Simvar
args contain optional index and/or unit
func SimVarGpsWpPrevAlt(args ...interface{})
SimVar
SimVarGpsWpPrevAlt Simvar
args contain optional index and/or unit
func SimVarGpsWpPrevId(args ...interface{})
SimVar
SimVarGpsWpPrevId Simvar
args contain optional index and/or unit
func SimVarGpsWpPrevLat(args ...interface{})
SimVar
SimVarGpsWpPrevLat Simvar
args contain optional index and/or unit
func SimVarGpsWpPrevLon(args ...interface{})
SimVar
SimVarGpsWpPrevLon Simvar
args contain optional index and/or unit
func SimVarGpsWpPrevValid(args ...interface{})
SimVar
SimVarGpsWpPrevValid Simvar
args contain optional index and/or unit
func SimVarGpsWpTrackAngleError(args ...interface{})
SimVar
SimVarGpsWpTrackAngleError Simvar
args contain optional index and/or unit
func SimVarGpsWpTrueBearing(args ...interface{})
SimVar
SimVarGpsWpTrueBearing Simvar
args contain optional index and/or unit
func SimVarGpsWpTrueReqHdg(args ...interface{})
SimVar
SimVarGpsWpTrueReqHdg Simvar
args contain optional index and/or unit
func SimVarGpsWpVerticalSpeed(args ...interface{})
SimVar
SimVarGpsWpVerticalSpeed Simvar
args contain optional index and/or unit
func SimVarGpwsSystemActive(args ...interface{})
SimVar
SimVarGpwsSystemActive Simvar
args contain optional index and/or unit
func SimVarGpwsWarning(args ...interface{})
SimVar
SimVarGpwsWarning Simvar
args contain optional index and/or unit
func SimVarGroundAltitude(args ...interface{})
SimVar
SimVarGroundAltitude Simvar
args contain optional index and/or unit
func SimVarGroundVelocity(args ...interface{})
SimVar
SimVarGroundVelocity Simvar
args contain optional index and/or unit
func SimVarGyroDriftError(args ...interface{})
SimVar
SimVarGyroDriftError Simvar
args contain optional index and/or unit
func SimVarHeadingIndicator(args ...interface{})
SimVar
SimVarHeadingIndicator Simvar
args contain optional index and/or unit
func SimVarHoldbackBarInstalled(args ...interface{})
SimVar
SimVarHoldbackBarInstalled Simvar
args contain optional index and/or unit
func SimVarHsiBearing(args ...interface{})
SimVar
SimVarHsiBearing Simvar
args contain optional index and/or unit
func SimVarHsiBearingValid(args ...interface{})
SimVar
SimVarHsiBearingValid Simvar
args contain optional index and/or unit
func SimVarHsiCdiNeedle(args ...interface{})
SimVar
SimVarHsiCdiNeedle Simvar
args contain optional index and/or unit
func SimVarHsiCdiNeedleValid(args ...interface{})
SimVar
SimVarHsiCdiNeedleValid Simvar
args contain optional index and/or unit
func SimVarHsiDistance(args ...interface{})
SimVar
SimVarHsiDistance Simvar
args contain optional index and/or unit
func SimVarHsiGsiNeedle(args ...interface{})
SimVar
SimVarHsiGsiNeedle Simvar
args contain optional index and/or unit
func SimVarHsiGsiNeedleValid(args ...interface{})
SimVar
SimVarHsiGsiNeedleValid Simvar
args contain optional index and/or unit
func SimVarHsiHasLocalizer(args ...interface{})
SimVar
SimVarHsiHasLocalizer Simvar
args contain optional index and/or unit
func SimVarHsiSpeed(args ...interface{})
SimVar
SimVarHsiSpeed Simvar
args contain optional index and/or unit
func SimVarHsiStationIdent(args ...interface{})
SimVar
SimVarHsiStationIdent Simvar
args contain optional index and/or unit
func SimVarHsiTfFlags(args ...interface{})
SimVar
SimVarHsiTfFlags Simvar
args contain optional index and/or unit
func SimVarHydraulicPressure(args ...interface{})
SimVar
SimVarHydraulicPressure Simvar
args contain optional index and/or unit
func SimVarHydraulicReservoirPercent(args ...interface{})
SimVar
SimVarHydraulicReservoirPercent Simvar
args contain optional index and/or unit
func SimVarHydraulicSwitch(args ...interface{})
SimVar
SimVarHydraulicSwitch Simvar
args contain optional index and/or unit
func SimVarHydraulicSystemIntegrity(args ...interface{})
SimVar
SimVarHydraulicSystemIntegrity Simvar
args contain optional index and/or unit
func SimVarIncidenceAlpha(args ...interface{})
SimVar
SimVarIncidenceAlpha Simvar
args contain optional index and/or unit
func SimVarIncidenceBeta(args ...interface{})
SimVar
SimVarIncidenceBeta Simvar
args contain optional index and/or unit
func SimVarIndicatedAltitude(args ...interface{})
SimVar
SimVarIndicatedAltitude Simvar
args contain optional index and/or unit
func SimVarInductorCompassHeadingRef(args ...interface{})
SimVar
SimVarInductorCompassHeadingRef Simvar
args contain optional index and/or unit
func SimVarInductorCompassPercentDeviation(args ...interface{})
SimVar
SimVarInductorCompassPercentDeviation Simvar
args contain optional index and/or unit
func SimVarInnerMarker(args ...interface{})
SimVar
SimVarInnerMarker Simvar
args contain optional index and/or unit
func SimVarInnerMarkerLatlonalt(args ...interface{})
SimVar
SimVarInnerMarkerLatlonalt Simvar
args contain optional index and/or unit
func SimVarIsAltitudeFreezeOn(args ...interface{})
SimVar
SimVarIsAltitudeFreezeOn Simvar
args contain optional index and/or unit
func SimVarIsAttachedToSling(args ...interface{})
SimVar
SimVarIsAttachedToSling Simvar
args contain optional index and/or unit
func SimVarIsAttitudeFreezeOn(args ...interface{})
SimVar
SimVarIsAttitudeFreezeOn Simvar
args contain optional index and/or unit
func SimVarIsGearFloats(args ...interface{})
SimVar
SimVarIsGearFloats Simvar
args contain optional index and/or unit
func SimVarIsGearRetractable(args ...interface{})
SimVar
SimVarIsGearRetractable Simvar
args contain optional index and/or unit
func SimVarIsGearSkids(args ...interface{})
SimVar
SimVarIsGearSkids Simvar
args contain optional index and/or unit
func SimVarIsGearSkis(args ...interface{})
SimVar
SimVarIsGearSkis Simvar
args contain optional index and/or unit
func SimVarIsGearWheels(args ...interface{})
SimVar
SimVarIsGearWheels Simvar
args contain optional index and/or unit
func SimVarIsLatitudeLongitudeFreezeOn(args ...interface{})
SimVar
SimVarIsLatitudeLongitudeFreezeOn Simvar
args contain optional index and/or unit
func SimVarIsSlewActive(args ...interface{})
SimVar
SimVarIsSlewActive Simvar
args contain optional index and/or unit
func SimVarIsSlewAllowed(args ...interface{})
SimVar
SimVarIsSlewAllowed Simvar
args contain optional index and/or unit
func SimVarIsTailDragger(args ...interface{})
SimVar
SimVarIsTailDragger Simvar
args contain optional index and/or unit
func SimVarIsUserSim(args ...interface{})
SimVar
SimVarIsUserSim Simvar
args contain optional index and/or unit
func SimVarKohlsmanSettingHg(args ...interface{})
SimVar
SimVarKohlsmanSettingHg Simvar
args contain optional index and/or unit
func SimVarKohlsmanSettingMb(args ...interface{})
SimVar
SimVarKohlsmanSettingMb Simvar
args contain optional index and/or unit
func
SimVarLandingLightPbh
ΒΆ
func SimVarLandingLightPbh(args ...interface{})
SimVar
SimVarLandingLightPbh Simvar
args contain optional index and/or unit
func SimVarLaunchbarPosition(args ...interface{})
SimVar
SimVarLaunchbarPosition Simvar
args contain optional index and/or unit
func SimVarLeadingEdgeFlapsLeftAngle(args ...interface{})
SimVar
SimVarLeadingEdgeFlapsLeftAngle Simvar
args contain optional index and/or unit
func SimVarLeadingEdgeFlapsLeftPercent(args ...interface{})
SimVar
SimVarLeadingEdgeFlapsLeftPercent Simvar
args contain optional index and/or unit
func SimVarLeadingEdgeFlapsRightAngle(args ...interface{})
SimVar
SimVarLeadingEdgeFlapsRightAngle Simvar
args contain optional index and/or unit
func SimVarLeadingEdgeFlapsRightPercent(args ...interface{})
SimVar
SimVarLeadingEdgeFlapsRightPercent Simvar
args contain optional index and/or unit
func SimVarLeftWheelRotationAngle(args ...interface{})
SimVar
SimVarLeftWheelRotationAngle Simvar
args contain optional index and/or unit
func SimVarLeftWheelRpm(args ...interface{})
SimVar
SimVarLeftWheelRpm Simvar
args contain optional index and/or unit
func SimVarLightBeacon(args ...interface{})
SimVar
SimVarLightBeacon Simvar
args contain optional index and/or unit
func SimVarLightBeaconOn(args ...interface{})
SimVar
SimVarLightBeaconOn Simvar
args contain optional index and/or unit
func SimVarLightBrakeOn(args ...interface{})
SimVar
SimVarLightBrakeOn Simvar
args contain optional index and/or unit
func SimVarLightCabin(args ...interface{})
SimVar
SimVarLightCabin Simvar
args contain optional index and/or unit
func SimVarLightCabinOn(args ...interface{})
SimVar
SimVarLightCabinOn Simvar
args contain optional index and/or unit
func SimVarLightHeadOn(args ...interface{})
SimVar
SimVarLightHeadOn Simvar
args contain optional index and/or unit
func
SimVarLightLanding
ΒΆ
func SimVarLightLanding(args ...interface{})
SimVar
SimVarLightLanding Simvar
args contain optional index and/or unit
func
SimVarLightLandingOn
ΒΆ
func SimVarLightLandingOn(args ...interface{})
SimVar
SimVarLightLandingOn Simvar
args contain optional index and/or unit
func SimVarLightLogo(args ...interface{})
SimVar
SimVarLightLogo Simvar
args contain optional index and/or unit
func SimVarLightLogoOn(args ...interface{})
SimVar
SimVarLightLogoOn Simvar
args contain optional index and/or unit
func SimVarLightNav(args ...interface{})
SimVar
SimVarLightNav Simvar
args contain optional index and/or unit
func SimVarLightNavOn(args ...interface{})
SimVar
SimVarLightNavOn Simvar
args contain optional index and/or unit
func SimVarLightOnStates(args ...interface{})
SimVar
SimVarLightOnStates Simvar
args contain optional index and/or unit
func SimVarLightPanel(args ...interface{})
SimVar
SimVarLightPanel Simvar
args contain optional index and/or unit
func SimVarLightPanelOn(args ...interface{})
SimVar
SimVarLightPanelOn Simvar
args contain optional index and/or unit
func SimVarLightRecognition(args ...interface{})
SimVar
SimVarLightRecognition Simvar
args contain optional index and/or unit
func SimVarLightRecognitionOn(args ...interface{})
SimVar
SimVarLightRecognitionOn Simvar
args contain optional index and/or unit
func SimVarLightStates(args ...interface{})
SimVar
SimVarLightStates Simvar
args contain optional index and/or unit
func SimVarLightStrobe(args ...interface{})
SimVar
SimVarLightStrobe Simvar
args contain optional index and/or unit
func SimVarLightStrobeOn(args ...interface{})
SimVar
SimVarLightStrobeOn Simvar
args contain optional index and/or unit
func SimVarLightTaxi(args ...interface{})
SimVar
SimVarLightTaxi Simvar
args contain optional index and/or unit
func SimVarLightTaxiOn(args ...interface{})
SimVar
SimVarLightTaxiOn Simvar
args contain optional index and/or unit
func SimVarLightWing(args ...interface{})
SimVar
SimVarLightWing Simvar
args contain optional index and/or unit
func SimVarLightWingOn(args ...interface{})
SimVar
SimVarLightWingOn Simvar
args contain optional index and/or unit
func SimVarLinearClAlpha(args ...interface{})
SimVar
SimVarLinearClAlpha Simvar
args contain optional index and/or unit
func SimVarLocalDayOfMonth(args ...interface{})
SimVar
SimVarLocalDayOfMonth Simvar
args contain optional index and/or unit
func SimVarLocalDayOfWeek(args ...interface{})
SimVar
SimVarLocalDayOfWeek Simvar
args contain optional index and/or unit
func SimVarLocalDayOfYear(args ...interface{})
SimVar
SimVarLocalDayOfYear Simvar
args contain optional index and/or unit
func SimVarLocalMonthOfYear(args ...interface{})
SimVar
SimVarLocalMonthOfYear Simvar
args contain optional index and/or unit
func SimVarLocalTime(args ...interface{})
SimVar
SimVarLocalTime Simvar
args contain optional index and/or unit
func SimVarLocalYear(args ...interface{})
SimVar
SimVarLocalYear Simvar
args contain optional index and/or unit
func SimVarMachMaxOperate(args ...interface{})
SimVar
SimVarMachMaxOperate Simvar
args contain optional index and/or unit
func SimVarMagneticCompass(args ...interface{})
SimVar
SimVarMagneticCompass Simvar
args contain optional index and/or unit
func SimVarMagvar(args ...interface{})
SimVar
SimVarMagvar Simvar
args contain optional index and/or unit
func
SimVarManualFuelPumpHandle
ΒΆ
func SimVarManualFuelPumpHandle(args ...interface{})
SimVar
SimVarManualFuelPumpHandle Simvar
args contain optional index and/or unit
func SimVarManualInstrumentLights(args ...interface{})
SimVar
SimVarManualInstrumentLights Simvar
args contain optional index and/or unit
func SimVarMarkerBeaconState(args ...interface{})
SimVar
SimVarMarkerBeaconState Simvar
args contain optional index and/or unit
func SimVarMarkerSound(args ...interface{})
SimVar
SimVarMarkerSound Simvar
args contain optional index and/or unit
func SimVarMasterIgnitionSwitch(args ...interface{})
SimVar
SimVarMasterIgnitionSwitch Simvar
args contain optional index and/or unit
func SimVarMaxGForce(args ...interface{})
SimVar
SimVarMaxGForce Simvar
args contain optional index and/or unit
func SimVarMaxGrossWeight(args ...interface{})
SimVar
SimVarMaxGrossWeight Simvar
args contain optional index and/or unit
func SimVarMaxRatedEngineRpm(args ...interface{})
SimVar
SimVarMaxRatedEngineRpm Simvar
args contain optional index and/or unit
func SimVarMiddleMarker(args ...interface{})
SimVar
SimVarMiddleMarker Simvar
args contain optional index and/or unit
func SimVarMiddleMarkerLatlonalt(args ...interface{})
SimVar
SimVarMiddleMarkerLatlonalt Simvar
args contain optional index and/or unit
func SimVarMinDragVelocity(args ...interface{})
SimVar
SimVarMinDragVelocity Simvar
args contain optional index and/or unit
func SimVarMinGForce(args ...interface{})
SimVar
SimVarMinGForce Simvar
args contain optional index and/or unit
func SimVarNavActiveFrequency(args ...interface{})
SimVar
SimVarNavActiveFrequency Simvar
args contain optional index and/or unit
func SimVarNavAvailable(args ...interface{})
SimVar
SimVarNavAvailable Simvar
args contain optional index and/or unit
func SimVarNavBackCourseFlags(args ...interface{})
SimVar
SimVarNavBackCourseFlags Simvar
args contain optional index and/or unit
func SimVarNavCdi(args ...interface{})
SimVar
SimVarNavCdi Simvar
args contain optional index and/or unit
func SimVarNavCodes(args ...interface{})
SimVar
SimVarNavCodes Simvar
args contain optional index and/or unit
func SimVarNavDme(args ...interface{})
SimVar
SimVarNavDme Simvar
args contain optional index and/or unit
func SimVarNavDmeLatlonalt(args ...interface{})
SimVar
SimVarNavDmeLatlonalt Simvar
args contain optional index and/or unit
func SimVarNavDmespeed(args ...interface{})
SimVar
SimVarNavDmespeed Simvar
args contain optional index and/or unit
func SimVarNavGlideSlope(args ...interface{})
SimVar
SimVarNavGlideSlope Simvar
args contain optional index and/or unit
func SimVarNavGlideSlopeError(args ...interface{})
SimVar
SimVarNavGlideSlopeError Simvar
args contain optional index and/or unit
func SimVarNavGsFlag(args ...interface{})
SimVar
SimVarNavGsFlag Simvar
args contain optional index and/or unit
func SimVarNavGsLatlonalt(args ...interface{})
SimVar
SimVarNavGsLatlonalt Simvar
args contain optional index and/or unit
func SimVarNavGsLlaf64(args ...interface{})
SimVar
SimVarNavGsLlaf64 Simvar
func SimVarNavGsi(args ...interface{})
SimVar
SimVarNavGsi Simvar
args contain optional index and/or unit
func SimVarNavHasDme(args ...interface{})
SimVar
SimVarNavHasDme Simvar
args contain optional index and/or unit
func SimVarNavHasGlideSlope(args ...interface{})
SimVar
SimVarNavHasGlideSlope Simvar
args contain optional index and/or unit
func SimVarNavHasLocalizer(args ...interface{})
SimVar
SimVarNavHasLocalizer Simvar
args contain optional index and/or unit
func SimVarNavHasNav(args ...interface{})
SimVar
SimVarNavHasNav Simvar
args contain optional index and/or unit
func SimVarNavIdent(args ...interface{})
SimVar
SimVarNavIdent Simvar
args contain optional index and/or unit
func SimVarNavLocalizer(args ...interface{})
SimVar
SimVarNavLocalizer Simvar
args contain optional index and/or unit
func SimVarNavMagvar(args ...interface{})
SimVar
SimVarNavMagvar Simvar
args contain optional index and/or unit
func SimVarNavName(args ...interface{})
SimVar
SimVarNavName Simvar
args contain optional index and/or unit
func SimVarNavObs(args ...interface{})
SimVar
SimVarNavObs Simvar
args contain optional index and/or unit
func SimVarNavRadial(args ...interface{})
SimVar
SimVarNavRadial Simvar
args contain optional index and/or unit
func SimVarNavRadialError(args ...interface{})
SimVar
SimVarNavRadialError Simvar
args contain optional index and/or unit
func SimVarNavRawGlideSlope(args ...interface{})
SimVar
SimVarNavRawGlideSlope Simvar
args contain optional index and/or unit
func SimVarNavRelativeBearingToStation(args ...interface{})
SimVar
SimVarNavRelativeBearingToStation Simvar
args contain optional index and/or unit
func SimVarNavSignal(args ...interface{})
SimVar
SimVarNavSignal Simvar
args contain optional index and/or unit
func SimVarNavSound(args ...interface{})
SimVar
SimVarNavSound Simvar
args contain optional index and/or unit
func
SimVarNavStandbyFrequency
ΒΆ
func SimVarNavStandbyFrequency(args ...interface{})
SimVar
SimVarNavStandbyFrequency Simvar
args contain optional index and/or unit
func SimVarNavTofrom(args ...interface{})
SimVar
SimVarNavTofrom Simvar
args contain optional index and/or unit
func SimVarNavVorLatlonalt(args ...interface{})
SimVar
SimVarNavVorLatlonalt Simvar
args contain optional index and/or unit
func SimVarNavVorLlaf64(args ...interface{})
SimVar
SimVarNavVorLlaf64 Simvar
func SimVarNumFuelSelectors(args ...interface{})
SimVar
SimVarNumFuelSelectors Simvar
args contain optional index and/or unit
func SimVarNumberOfCatapults(args ...interface{})
SimVar
SimVarNumberOfCatapults Simvar
args contain optional index and/or unit
func SimVarNumberOfEngines(args ...interface{})
SimVar
SimVarNumberOfEngines Simvar
args contain optional index and/or unit
func SimVarOuterMarker(args ...interface{})
SimVar
SimVarOuterMarker Simvar
args contain optional index and/or unit
func SimVarOuterMarkerLatlonalt(args ...interface{})
SimVar
SimVarOuterMarkerLatlonalt Simvar
args contain optional index and/or unit
func SimVarOverspeedWarning(args ...interface{})
SimVar
SimVarOverspeedWarning Simvar
args contain optional index and/or unit
func SimVarPanelAntiIceSwitch(args ...interface{})
SimVar
SimVarPanelAntiIceSwitch Simvar
args contain optional index and/or unit
func SimVarPanelAutoFeatherSwitch(args ...interface{})
SimVar
SimVarPanelAutoFeatherSwitch Simvar
args contain optional index and/or unit
func SimVarPartialPanelAdf(args ...interface{})
SimVar
SimVarPartialPanelAdf Simvar
args contain optional index and/or unit
func SimVarPartialPanelAirspeed(args ...interface{})
SimVar
SimVarPartialPanelAirspeed Simvar
args contain optional index and/or unit
func SimVarPartialPanelAltimeter(args ...interface{})
SimVar
SimVarPartialPanelAltimeter Simvar
args contain optional index and/or unit
func SimVarPartialPanelAttitude(args ...interface{})
SimVar
SimVarPartialPanelAttitude Simvar
args contain optional index and/or unit
func SimVarPartialPanelAvionics(args ...interface{})
SimVar
SimVarPartialPanelAvionics Simvar
args contain optional index and/or unit
func SimVarPartialPanelComm(args ...interface{})
SimVar
SimVarPartialPanelComm Simvar
args contain optional index and/or unit
func SimVarPartialPanelCompass(args ...interface{})
SimVar
SimVarPartialPanelCompass Simvar
args contain optional index and/or unit
func SimVarPartialPanelElectrical(args ...interface{})
SimVar
SimVarPartialPanelElectrical Simvar
args contain optional index and/or unit
func SimVarPartialPanelEngine(args ...interface{})
SimVar
SimVarPartialPanelEngine Simvar
args contain optional index and/or unit
func SimVarPartialPanelFuelIndicator(args ...interface{})
SimVar
SimVarPartialPanelFuelIndicator Simvar
args contain optional index and/or unit
func SimVarPartialPanelHeading(args ...interface{})
SimVar
SimVarPartialPanelHeading Simvar
args contain optional index and/or unit
func SimVarPartialPanelNav(args ...interface{})
SimVar
SimVarPartialPanelNav Simvar
args contain optional index and/or unit
func SimVarPartialPanelPitot(args ...interface{})
SimVar
SimVarPartialPanelPitot Simvar
args contain optional index and/or unit
func SimVarPartialPanelTransponder(args ...interface{})
SimVar
SimVarPartialPanelTransponder Simvar
args contain optional index and/or unit
func SimVarPartialPanelTurnCoordinator(args ...interface{})
SimVar
SimVarPartialPanelTurnCoordinator Simvar
args contain optional index and/or unit
func SimVarPartialPanelVacuum(args ...interface{})
SimVar
SimVarPartialPanelVacuum Simvar
args contain optional index and/or unit
func SimVarPartialPanelVerticalVelocity(args ...interface{})
SimVar
SimVarPartialPanelVerticalVelocity Simvar
args contain optional index and/or unit
func SimVarPayloadStationCount(args ...interface{})
SimVar
SimVarPayloadStationCount Simvar
args contain optional index and/or unit
func SimVarPayloadStationName(args ...interface{})
SimVar
SimVarPayloadStationName Simvar
args contain optional index and/or unit
func SimVarPayloadStationNumSimobjects(args ...interface{})
SimVar
SimVarPayloadStationNumSimobjects Simvar
args contain optional index and/or unit
func SimVarPayloadStationObject(args ...interface{})
SimVar
SimVarPayloadStationObject Simvar
args contain optional index and/or unit
func SimVarPayloadStationWeight(args ...interface{})
SimVar
SimVarPayloadStationWeight Simvar
args contain optional index and/or unit
func SimVarPitotHeat(args ...interface{})
SimVar
SimVarPitotHeat Simvar
args contain optional index and/or unit
func SimVarPitotIcePct(args ...interface{})
SimVar
SimVarPitotIcePct Simvar
args contain optional index and/or unit
func SimVarPlaneAltAboveGround(args ...interface{})
SimVar
SimVarPlaneAltAboveGround Simvar
args contain optional index and/or unit
func SimVarPlaneAltitude(args ...interface{})
SimVar
SimVarPlaneAltitude Simvar
args contain optional index and/or unit
func SimVarPlaneBankDegrees(args ...interface{})
SimVar
SimVarPlaneBankDegrees Simvar
args contain optional index and/or unit
func SimVarPlaneHeadingDegreesGyro(args ...interface{})
SimVar
SimVarPlaneHeadingDegreesGyro Simvar
args contain optional index and/or unit
func SimVarPlaneHeadingDegreesMagnetic(args ...interface{})
SimVar
SimVarPlaneHeadingDegreesMagnetic Simvar
args contain optional index and/or unit
func SimVarPlaneHeadingDegreesTrue(args ...interface{})
SimVar
SimVarPlaneHeadingDegreesTrue Simvar
args contain optional index and/or unit
func SimVarPlaneLatitude(args ...interface{})
SimVar
SimVarPlaneLatitude Simvar
args contain optional index and/or unit
func SimVarPlaneLongitude(args ...interface{})
SimVar
SimVarPlaneLongitude Simvar
args contain optional index and/or unit
func SimVarPlanePitchDegrees(args ...interface{})
SimVar
SimVarPlanePitchDegrees Simvar
args contain optional index and/or unit
func SimVarPressureAltitude(args ...interface{})
SimVar
SimVarPressureAltitude Simvar
args contain optional index and/or unit
func SimVarPressurizationCabinAltitude(args ...interface{})
SimVar
SimVarPressurizationCabinAltitude Simvar
args contain optional index and/or unit
func SimVarPressurizationCabinAltitudeGoal(args ...interface{})
SimVar
SimVarPressurizationCabinAltitudeGoal Simvar
args contain optional index and/or unit
func SimVarPressurizationCabinAltitudeRate(args ...interface{})
SimVar
SimVarPressurizationCabinAltitudeRate Simvar
args contain optional index and/or unit
func SimVarPressurizationDumpSwitch(args ...interface{})
SimVar
SimVarPressurizationDumpSwitch Simvar
args contain optional index and/or unit
func SimVarPressurizationPressureDifferential(args ...interface{})
SimVar
SimVarPressurizationPressureDifferential Simvar
args contain optional index and/or unit
func SimVarPropAutoCruiseActive(args ...interface{})
SimVar
SimVarPropAutoCruiseActive Simvar
args contain optional index and/or unit
func SimVarPropAutoFeatherArmed(args ...interface{})
SimVar
SimVarPropAutoFeatherArmed Simvar
args contain optional index and/or unit
func SimVarPropBeta(args ...interface{})
SimVar
SimVarPropBeta Simvar
args contain optional index and/or unit
func SimVarPropBetaMax(args ...interface{})
SimVar
SimVarPropBetaMax Simvar
args contain optional index and/or unit
func SimVarPropBetaMin(args ...interface{})
SimVar
SimVarPropBetaMin Simvar
args contain optional index and/or unit
func SimVarPropBetaMinReverse(args ...interface{})
SimVar
SimVarPropBetaMinReverse Simvar
args contain optional index and/or unit
func SimVarPropDeiceSwitch(args ...interface{})
SimVar
SimVarPropDeiceSwitch Simvar
args contain optional index and/or unit
func SimVarPropFeatherSwitch(args ...interface{})
SimVar
SimVarPropFeatherSwitch Simvar
args contain optional index and/or unit
func SimVarPropFeathered(args ...interface{})
SimVar
SimVarPropFeathered Simvar
args contain optional index and/or unit
func SimVarPropFeatheringInhibit(args ...interface{})
SimVar
SimVarPropFeatheringInhibit Simvar
args contain optional index and/or unit
func SimVarPropMaxRpmPercent(args ...interface{})
SimVar
SimVarPropMaxRpmPercent Simvar
args contain optional index and/or unit
func SimVarPropRotationAngle(args ...interface{})
SimVar
SimVarPropRotationAngle Simvar
args contain optional index and/or unit
func SimVarPropRpm(args ...interface{})
SimVar
SimVarPropRpm Simvar
args contain optional index and/or unit
func SimVarPropSyncActive(args ...interface{})
SimVar
SimVarPropSyncActive Simvar
args contain optional index and/or unit
func SimVarPropSyncDeltaLever(args ...interface{})
SimVar
SimVarPropSyncDeltaLever Simvar
args contain optional index and/or unit
func SimVarPropThrust(args ...interface{})
SimVar
SimVarPropThrust Simvar
args contain optional index and/or unit
func SimVarPushbackAngle(args ...interface{})
SimVar
SimVarPushbackAngle Simvar
args contain optional index and/or unit
func SimVarPushbackContactx(args ...interface{})
SimVar
SimVarPushbackContactx Simvar
args contain optional index and/or unit
func SimVarPushbackContacty(args ...interface{})
SimVar
SimVarPushbackContacty Simvar
args contain optional index and/or unit
func SimVarPushbackContactz(args ...interface{})
SimVar
SimVarPushbackContactz Simvar
args contain optional index and/or unit
func SimVarPushbackState(args ...interface{})
SimVar
SimVarPushbackState Simvar
args contain optional index and/or unit
func SimVarPushbackWait(args ...interface{})
SimVar
SimVarPushbackWait Simvar
args contain optional index and/or unit
func SimVarRadInsSwitch(args ...interface{})
SimVar
SimVarRadInsSwitch Simvar
args contain optional index and/or unit
func SimVarRadioHeight(args ...interface{})
SimVar
SimVarRadioHeight Simvar
args contain optional index and/or unit
func SimVarRealism(args ...interface{})
SimVar
SimVarRealism Simvar
args contain optional index and/or unit
func SimVarRealismCrashDetection(args ...interface{})
SimVar
SimVarRealismCrashDetection Simvar
args contain optional index and/or unit
func SimVarRealismCrashWithOthers(args ...interface{})
SimVar
SimVarRealismCrashWithOthers Simvar
args contain optional index and/or unit
func SimVarRecipCarburetorTemperature(args ...interface{})
SimVar
SimVarRecipCarburetorTemperature Simvar
args contain optional index and/or unit
func SimVarRecipEngAlternateAirPosition(args ...interface{})
SimVar
SimVarRecipEngAlternateAirPosition Simvar
args contain optional index and/or unit
func SimVarRecipEngAntidetonationTankMaxQuantity(args ...interface{})
SimVar
SimVarRecipEngAntidetonationTankMaxQuantity Simvar
args contain optional index and/or unit
func SimVarRecipEngAntidetonationTankQuantity(args ...interface{})
SimVar
SimVarRecipEngAntidetonationTankQuantity Simvar
args contain optional index and/or unit
func SimVarRecipEngAntidetonationTankValve(args ...interface{})
SimVar
SimVarRecipEngAntidetonationTankValve Simvar
args contain optional index and/or unit
func SimVarRecipEngBrakePower(args ...interface{})
SimVar
SimVarRecipEngBrakePower Simvar
args contain optional index and/or unit
func SimVarRecipEngCoolantReservoirPercent(args ...interface{})
SimVar
SimVarRecipEngCoolantReservoirPercent Simvar
args contain optional index and/or unit
func SimVarRecipEngCowlFlapPosition(args ...interface{})
SimVar
SimVarRecipEngCowlFlapPosition Simvar
args contain optional index and/or unit
func SimVarRecipEngCylinderHeadTemperature(args ...interface{})
SimVar
SimVarRecipEngCylinderHeadTemperature Simvar
args contain optional index and/or unit
func SimVarRecipEngCylinderHealth(args ...interface{})
SimVar
SimVarRecipEngCylinderHealth Simvar
args contain optional index and/or unit
func SimVarRecipEngDetonating(args ...interface{})
SimVar
SimVarRecipEngDetonating Simvar
args contain optional index and/or unit
func SimVarRecipEngEmergencyBoostActive(args ...interface{})
SimVar
SimVarRecipEngEmergencyBoostActive Simvar
args contain optional index and/or unit
func SimVarRecipEngEmergencyBoostElapsedTime(args ...interface{})
SimVar
SimVarRecipEngEmergencyBoostElapsedTime Simvar
args contain optional index and/or unit
func SimVarRecipEngFuelAvailable(args ...interface{})
SimVar
SimVarRecipEngFuelAvailable Simvar
args contain optional index and/or unit
func SimVarRecipEngFuelFlow(args ...interface{})
SimVar
SimVarRecipEngFuelFlow Simvar
args contain optional index and/or unit
func SimVarRecipEngFuelNumberTanksUsed(args ...interface{})
SimVar
SimVarRecipEngFuelNumberTanksUsed Simvar
args contain optional index and/or unit
func SimVarRecipEngFuelTankSelector(args ...interface{})
SimVar
SimVarRecipEngFuelTankSelector Simvar
args contain optional index and/or unit
func SimVarRecipEngFuelTanksUsed(args ...interface{})
SimVar
SimVarRecipEngFuelTanksUsed Simvar
args contain optional index and/or unit
func SimVarRecipEngLeftMagneto(args ...interface{})
SimVar
SimVarRecipEngLeftMagneto Simvar
args contain optional index and/or unit
func SimVarRecipEngManifoldPressure(args ...interface{})
SimVar
SimVarRecipEngManifoldPressure Simvar
args contain optional index and/or unit
func SimVarRecipEngNitrousTankMaxQuantity(args ...interface{})
SimVar
SimVarRecipEngNitrousTankMaxQuantity Simvar
args contain optional index and/or unit
func SimVarRecipEngNitrousTankQuantity(args ...interface{})
SimVar
SimVarRecipEngNitrousTankQuantity Simvar
args contain optional index and/or unit
func SimVarRecipEngNitrousTankValve(args ...interface{})
SimVar
SimVarRecipEngNitrousTankValve Simvar
args contain optional index and/or unit
func SimVarRecipEngNumCylinders(args ...interface{})
SimVar
SimVarRecipEngNumCylinders Simvar
args contain optional index and/or unit
func SimVarRecipEngNumCylindersFailed(args ...interface{})
SimVar
SimVarRecipEngNumCylindersFailed Simvar
args contain optional index and/or unit
func SimVarRecipEngPrimer(args ...interface{})
SimVar
SimVarRecipEngPrimer Simvar
args contain optional index and/or unit
func SimVarRecipEngRadiatorTemperature(args ...interface{})
SimVar
SimVarRecipEngRadiatorTemperature Simvar
args contain optional index and/or unit
func SimVarRecipEngRightMagneto(args ...interface{})
SimVar
SimVarRecipEngRightMagneto Simvar
args contain optional index and/or unit
func SimVarRecipEngStarterTorque(args ...interface{})
SimVar
SimVarRecipEngStarterTorque Simvar
args contain optional index and/or unit
func SimVarRecipEngTurbineInletTemperature(args ...interface{})
SimVar
SimVarRecipEngTurbineInletTemperature Simvar
args contain optional index and/or unit
func SimVarRecipEngTurbochargerFailed(args ...interface{})
SimVar
SimVarRecipEngTurbochargerFailed Simvar
args contain optional index and/or unit
func SimVarRecipEngWastegatePosition(args ...interface{})
SimVar
SimVarRecipEngWastegatePosition Simvar
args contain optional index and/or unit
func SimVarRecipMixtureRatio(args ...interface{})
SimVar
SimVarRecipMixtureRatio Simvar
args contain optional index and/or unit
func
SimVarRelativeWindVelocityBodyX
ΒΆ
func SimVarRelativeWindVelocityBodyX(args ...interface{})
SimVar
SimVarRelativeWindVelocityBodyX Simvar
args contain optional index and/or unit
func
SimVarRelativeWindVelocityBodyY
ΒΆ
func SimVarRelativeWindVelocityBodyY(args ...interface{})
SimVar
SimVarRelativeWindVelocityBodyY Simvar
args contain optional index and/or unit
func
SimVarRelativeWindVelocityBodyZ
ΒΆ
func SimVarRelativeWindVelocityBodyZ(args ...interface{})
SimVar
SimVarRelativeWindVelocityBodyZ Simvar
args contain optional index and/or unit
func SimVarRetractFloatSwitch(args ...interface{})
SimVar
SimVarRetractFloatSwitch Simvar
args contain optional index and/or unit
func SimVarRetractLeftFloatExtended(args ...interface{})
SimVar
SimVarRetractLeftFloatExtended Simvar
args contain optional index and/or unit
func SimVarRetractRightFloatExtended(args ...interface{})
SimVar
SimVarRetractRightFloatExtended Simvar
args contain optional index and/or unit
func SimVarRightWheelRotationAngle(args ...interface{})
SimVar
SimVarRightWheelRotationAngle Simvar
args contain optional index and/or unit
func SimVarRightWheelRpm(args ...interface{})
SimVar
SimVarRightWheelRpm Simvar
args contain optional index and/or unit
func
SimVarRotationVelocityBodyX
ΒΆ
func SimVarRotationVelocityBodyX(args ...interface{})
SimVar
SimVarRotationVelocityBodyX Simvar
args contain optional index and/or unit
func
SimVarRotationVelocityBodyY
ΒΆ
func SimVarRotationVelocityBodyY(args ...interface{})
SimVar
SimVarRotationVelocityBodyY Simvar
args contain optional index and/or unit
func
SimVarRotationVelocityBodyZ
ΒΆ
func SimVarRotationVelocityBodyZ(args ...interface{})
SimVar
SimVarRotationVelocityBodyZ Simvar
args contain optional index and/or unit
func SimVarRotorBrakeActive(args ...interface{})
SimVar
SimVarRotorBrakeActive Simvar
args contain optional index and/or unit
func
SimVarRotorBrakeHandlePos
ΒΆ
func SimVarRotorBrakeHandlePos(args ...interface{})
SimVar
SimVarRotorBrakeHandlePos Simvar
args contain optional index and/or unit
func SimVarRotorChipDetected(args ...interface{})
SimVar
SimVarRotorChipDetected Simvar
args contain optional index and/or unit
func SimVarRotorClutchActive(args ...interface{})
SimVar
SimVarRotorClutchActive Simvar
args contain optional index and/or unit
func SimVarRotorClutchSwitchPos(args ...interface{})
SimVar
SimVarRotorClutchSwitchPos Simvar
args contain optional index and/or unit
func SimVarRotorGovActive(args ...interface{})
SimVar
SimVarRotorGovActive Simvar
args contain optional index and/or unit
func SimVarRotorGovSwitchPos(args ...interface{})
SimVar
SimVarRotorGovSwitchPos Simvar
args contain optional index and/or unit
func SimVarRotorLateralTrimPct(args ...interface{})
SimVar
SimVarRotorLateralTrimPct Simvar
args contain optional index and/or unit
func SimVarRotorRotationAngle(args ...interface{})
SimVar
SimVarRotorRotationAngle Simvar
args contain optional index and/or unit
func SimVarRotorRpmPct(args ...interface{})
SimVar
SimVarRotorRpmPct Simvar
args contain optional index and/or unit
func SimVarRotorTemperature(args ...interface{})
SimVar
SimVarRotorTemperature Simvar
args contain optional index and/or unit
func SimVarRudderDeflection(args ...interface{})
SimVar
SimVarRudderDeflection Simvar
args contain optional index and/or unit
func SimVarRudderDeflectionPct(args ...interface{})
SimVar
SimVarRudderDeflectionPct Simvar
args contain optional index and/or unit
func SimVarRudderPedalIndicator(args ...interface{})
SimVar
SimVarRudderPedalIndicator Simvar
args contain optional index and/or unit
func SimVarRudderPedalPosition(args ...interface{})
SimVar
SimVarRudderPedalPosition Simvar
args contain optional index and/or unit
func SimVarRudderPosition(args ...interface{})
SimVar
SimVarRudderPosition Simvar
args contain optional index and/or unit
func SimVarRudderTrim(args ...interface{})
SimVar
SimVarRudderTrim Simvar
args contain optional index and/or unit
func SimVarRudderTrimPct(args ...interface{})
SimVar
SimVarRudderTrimPct Simvar
args contain optional index and/or unit
func SimVarSeaLevelPressure(args ...interface{})
SimVar
SimVarSeaLevelPressure Simvar
args contain optional index and/or unit
func SimVarSelectedDme(args ...interface{})
SimVar
SimVarSelectedDme Simvar
args contain optional index and/or unit
func
SimVarSemibodyLoadfactorY
ΒΆ
func SimVarSemibodyLoadfactorY(args ...interface{})
SimVar
SimVarSemibodyLoadfactorY Simvar
args contain optional index and/or unit
func
SimVarSemibodyLoadfactorYdot
ΒΆ
func SimVarSemibodyLoadfactorYdot(args ...interface{})
SimVar
SimVarSemibodyLoadfactorYdot Simvar
args contain optional index and/or unit
func SimVarSigmaSqrt(args ...interface{})
SimVar
SimVarSigmaSqrt Simvar
args contain optional index and/or unit
func SimVarSimDisabled(args ...interface{})
SimVar
SimVarSimDisabled Simvar
args contain optional index and/or unit
func SimVarSimOnGround(args ...interface{})
SimVar
SimVarSimOnGround Simvar
args contain optional index and/or unit
func SimVarSimulatedRadius(args ...interface{})
SimVar
SimVarSimulatedRadius Simvar
args contain optional index and/or unit
func SimVarSimulationRate(args ...interface{})
SimVar
SimVarSimulationRate Simvar
args contain optional index and/or unit
func SimVarSlingActivePayloadStation(args ...interface{})
SimVar
SimVarSlingActivePayloadStation Simvar
args contain optional index and/or unit
func SimVarSlingCableBroken(args ...interface{})
SimVar
SimVarSlingCableBroken Simvar
args contain optional index and/or unit
func SimVarSlingCableExtendedLength(args ...interface{})
SimVar
SimVarSlingCableExtendedLength Simvar
args contain optional index and/or unit
func SimVarSlingHoistPercentDeployed(args ...interface{})
SimVar
SimVarSlingHoistPercentDeployed Simvar
args contain optional index and/or unit
func SimVarSlingHookInPickupMode(args ...interface{})
SimVar
SimVarSlingHookInPickupMode Simvar
args contain optional index and/or unit
func SimVarSlingObjectAttached(args ...interface{})
SimVar
SimVarSlingObjectAttached Simvar
args contain optional index and/or unit
func SimVarSmokeEnable(args ...interface{})
SimVar
SimVarSmokeEnable Simvar
args contain optional index and/or unit
func SimVarSmokesystemAvailable(args ...interface{})
SimVar
SimVarSmokesystemAvailable Simvar
args contain optional index and/or unit
func SimVarSpoilerAvailable(args ...interface{})
SimVar
SimVarSpoilerAvailable Simvar
args contain optional index and/or unit
func SimVarSpoilersArmed(args ...interface{})
SimVar
SimVarSpoilersArmed Simvar
args contain optional index and/or unit
func
SimVarSpoilersHandlePosition
ΒΆ
func SimVarSpoilersHandlePosition(args ...interface{})
SimVar
SimVarSpoilersHandlePosition Simvar
args contain optional index and/or unit
func SimVarSpoilersLeftPosition(args ...interface{})
SimVar
SimVarSpoilersLeftPosition Simvar
args contain optional index and/or unit
func SimVarSpoilersRightPosition(args ...interface{})
SimVar
SimVarSpoilersRightPosition Simvar
args contain optional index and/or unit
func SimVarStallAlpha(args ...interface{})
SimVar
SimVarStallAlpha Simvar
args contain optional index and/or unit
func SimVarStallHornAvailable(args ...interface{})
SimVar
SimVarStallHornAvailable Simvar
args contain optional index and/or unit
func SimVarStallWarning(args ...interface{})
SimVar
SimVarStallWarning Simvar
args contain optional index and/or unit
func
SimVarStandardAtmTemperature
ΒΆ
func SimVarStandardAtmTemperature(args ...interface{})
SimVar
SimVarStandardAtmTemperature Simvar
args contain optional index and/or unit
func SimVarStaticCgToGround(args ...interface{})
SimVar
SimVarStaticCgToGround Simvar
args contain optional index and/or unit
func SimVarStaticPitch(args ...interface{})
SimVar
SimVarStaticPitch Simvar
args contain optional index and/or unit
func SimVarSteerInputControl(args ...interface{})
SimVar
SimVarSteerInputControl Simvar
args contain optional index and/or unit
func SimVarStrobesAvailable(args ...interface{})
SimVar
SimVarStrobesAvailable Simvar
args contain optional index and/or unit
func SimVarStructAmbientWind(args ...interface{})
SimVar
SimVarStructAmbientWind Simvar
args contain optional index and/or unit
func
SimVarStructBodyRotationVelocity
ΒΆ
func SimVarStructBodyRotationVelocity(args ...interface{})
SimVar
SimVarStructBodyRotationVelocity Simvar
args contain optional index and/or unit
func
SimVarStructBodyVelocity
ΒΆ
func SimVarStructBodyVelocity(args ...interface{})
SimVar
SimVarStructBodyVelocity Simvar
args contain optional index and/or unit
func SimVarStructEnginePosition(args ...interface{})
SimVar
SimVarStructEnginePosition Simvar
args contain optional index and/or unit
func SimVarStructEyepointDynamicAngle(args ...interface{})
SimVar
SimVarStructEyepointDynamicAngle Simvar
args contain optional index and/or unit
func SimVarStructEyepointDynamicOffset(args ...interface{})
SimVar
SimVarStructEyepointDynamicOffset Simvar
args contain optional index and/or unit
func SimVarStructLatlonalt(args ...interface{})
SimVar
SimVarStructLatlonalt Simvar
args contain optional index and/or unit
func SimVarStructLatlonaltpbh(args ...interface{})
SimVar
SimVarStructLatlonaltpbh Simvar
args contain optional index and/or unit
func SimVarStructSurfaceRelativeVelocity(args ...interface{})
SimVar
SimVarStructSurfaceRelativeVelocity Simvar
args contain optional index and/or unit
func SimVarStructWorldAcceleration(args ...interface{})
SimVar
SimVarStructWorldAcceleration Simvar
args contain optional index and/or unit
func SimVarStructWorldRotationVelocity(args ...interface{})
SimVar
SimVarStructWorldRotationVelocity Simvar
args contain optional index and/or unit
func SimVarStructWorldvelocity(args ...interface{})
SimVar
SimVarStructWorldvelocity Simvar
args contain optional index and/or unit
func SimVarStructuralDeiceSwitch(args ...interface{})
SimVar
SimVarStructuralDeiceSwitch Simvar
args contain optional index and/or unit
func SimVarStructuralIcePct(args ...interface{})
SimVar
SimVarStructuralIcePct Simvar
args contain optional index and/or unit
func SimVarSuctionPressure(args ...interface{})
SimVar
SimVarSuctionPressure Simvar
args contain optional index and/or unit
func SimVarSurfaceCondition(args ...interface{})
SimVar
SimVarSurfaceCondition Simvar
args contain optional index and/or unit
func SimVarSurfaceInfoValid(args ...interface{})
SimVar
SimVarSurfaceInfoValid Simvar
args contain optional index and/or unit
func SimVarSurfaceType(args ...interface{})
SimVar
SimVarSurfaceType Simvar
args contain optional index and/or unit
func SimVarTailhookPosition(args ...interface{})
SimVar
SimVarTailhookPosition Simvar
args contain optional index and/or unit
func SimVarTailwheelLockOn(args ...interface{})
SimVar
SimVarTailwheelLockOn Simvar
args contain optional index and/or unit
func SimVarThrottleLowerLimit(args ...interface{})
SimVar
SimVarThrottleLowerLimit Simvar
args contain optional index and/or unit
func SimVarTimeOfDay(args ...interface{})
SimVar
SimVarTimeOfDay Simvar
args contain optional index and/or unit
func SimVarTimeZoneOffset(args ...interface{})
SimVar
SimVarTimeZoneOffset Simvar
args contain optional index and/or unit
func SimVarTitle(args ...interface{})
SimVar
SimVarTitle Simvar
args contain optional index and/or unit
func SimVarToeBrakesAvailable(args ...interface{})
SimVar
SimVarToeBrakesAvailable Simvar
args contain optional index and/or unit
func SimVarTotalAirTemperature(args ...interface{})
SimVar
SimVarTotalAirTemperature Simvar
args contain optional index and/or unit
func SimVarTotalVelocity(args ...interface{})
SimVar
SimVarTotalVelocity Simvar
args contain optional index and/or unit
func SimVarTotalWeight(args ...interface{})
SimVar
SimVarTotalWeight Simvar
args contain optional index and/or unit
func SimVarTotalWeightCrossCoupledMoi(args ...interface{})
SimVar
SimVarTotalWeightCrossCoupledMoi Simvar
args contain optional index and/or unit
func SimVarTotalWeightPitchMoi(args ...interface{})
SimVar
SimVarTotalWeightPitchMoi Simvar
args contain optional index and/or unit
func SimVarTotalWeightRollMoi(args ...interface{})
SimVar
SimVarTotalWeightRollMoi Simvar
args contain optional index and/or unit
func SimVarTotalWeightYawMoi(args ...interface{})
SimVar
SimVarTotalWeightYawMoi Simvar
args contain optional index and/or unit
func SimVarTotalWorldVelocity(args ...interface{})
SimVar
SimVarTotalWorldVelocity Simvar
args contain optional index and/or unit
func SimVarTowConnection(args ...interface{})
SimVar
SimVarTowConnection Simvar
args contain optional index and/or unit
func
SimVarTowReleaseHandle
ΒΆ
func SimVarTowReleaseHandle(args ...interface{})
SimVar
SimVarTowReleaseHandle Simvar
args contain optional index and/or unit
func SimVarTrailingEdgeFlapsLeftAngle(args ...interface{})
SimVar
SimVarTrailingEdgeFlapsLeftAngle Simvar
args contain optional index and/or unit
func SimVarTrailingEdgeFlapsLeftPercent(args ...interface{})
SimVar
SimVarTrailingEdgeFlapsLeftPercent Simvar
args contain optional index and/or unit
func SimVarTrailingEdgeFlapsRightAngle(args ...interface{})
SimVar
SimVarTrailingEdgeFlapsRightAngle Simvar
args contain optional index and/or unit
func SimVarTrailingEdgeFlapsRightPercent(args ...interface{})
SimVar
SimVarTrailingEdgeFlapsRightPercent Simvar
args contain optional index and/or unit
func SimVarTransponderAvailable(args ...interface{})
SimVar
SimVarTransponderAvailable Simvar
args contain optional index and/or unit
func SimVarTransponderCode(args ...interface{})
SimVar
SimVarTransponderCode Simvar
args contain optional index and/or unit
func SimVarTrueAirspeedSelected(args ...interface{})
SimVar
SimVarTrueAirspeedSelected Simvar
args contain optional index and/or unit
func SimVarTurbEngAfterburner(args ...interface{})
SimVar
SimVarTurbEngAfterburner Simvar
args contain optional index and/or unit
func SimVarTurbEngBleedAir(args ...interface{})
SimVar
SimVarTurbEngBleedAir Simvar
args contain optional index and/or unit
func SimVarTurbEngCorrectedFf(args ...interface{})
SimVar
SimVarTurbEngCorrectedFf Simvar
args contain optional index and/or unit
func SimVarTurbEngCorrectedN1(args ...interface{})
SimVar
SimVarTurbEngCorrectedN1 Simvar
func SimVarTurbEngCorrectedN2(args ...interface{})
SimVar
SimVarTurbEngCorrectedN2 Simvar
func SimVarTurbEngFuelAvailable(args ...interface{})
SimVar
SimVarTurbEngFuelAvailable Simvar
args contain optional index and/or unit
func SimVarTurbEngFuelFlowPph(args ...interface{})
SimVar
SimVarTurbEngFuelFlowPph Simvar
args contain optional index and/or unit
func SimVarTurbEngIgnitionSwitch(args ...interface{})
SimVar
SimVarTurbEngIgnitionSwitch Simvar
args contain optional index and/or unit
func SimVarTurbEngItt(args ...interface{})
SimVar
SimVarTurbEngItt Simvar
args contain optional index and/or unit
func SimVarTurbEngJetThrust(args ...interface{})
SimVar
SimVarTurbEngJetThrust Simvar
args contain optional index and/or unit
func SimVarTurbEngMasterStarterSwitch(args ...interface{})
SimVar
SimVarTurbEngMasterStarterSwitch Simvar
args contain optional index and/or unit
func SimVarTurbEngMaxTorquePercent(args ...interface{})
SimVar
SimVarTurbEngMaxTorquePercent Simvar
args contain optional index and/or unit
func SimVarTurbEngN1(args ...interface{})
SimVar
SimVarTurbEngN1 Simvar
func SimVarTurbEngN2(args ...interface{})
SimVar
SimVarTurbEngN2 Simvar
func SimVarTurbEngNumTanksUsed(args ...interface{})
SimVar
SimVarTurbEngNumTanksUsed Simvar
args contain optional index and/or unit
func SimVarTurbEngPressureRatio(args ...interface{})
SimVar
SimVarTurbEngPressureRatio Simvar
args contain optional index and/or unit
func SimVarTurbEngPrimaryNozzlePercent(args ...interface{})
SimVar
SimVarTurbEngPrimaryNozzlePercent Simvar
args contain optional index and/or unit
func SimVarTurbEngReverseNozzlePercent(args ...interface{})
SimVar
SimVarTurbEngReverseNozzlePercent Simvar
args contain optional index and/or unit
func SimVarTurbEngTankSelector(args ...interface{})
SimVar
SimVarTurbEngTankSelector Simvar
args contain optional index and/or unit
func SimVarTurbEngTanksUsed(args ...interface{})
SimVar
SimVarTurbEngTanksUsed Simvar
args contain optional index and/or unit
func SimVarTurbEngVibration(args ...interface{})
SimVar
SimVarTurbEngVibration Simvar
args contain optional index and/or unit
func SimVarTurnCoordinatorBall(args ...interface{})
SimVar
SimVarTurnCoordinatorBall Simvar
args contain optional index and/or unit
func SimVarTurnIndicatorRate(args ...interface{})
SimVar
SimVarTurnIndicatorRate Simvar
args contain optional index and/or unit
func SimVarTurnIndicatorSwitch(args ...interface{})
SimVar
SimVarTurnIndicatorSwitch Simvar
args contain optional index and/or unit
func SimVarTypicalDescentRate(args ...interface{})
SimVar
SimVarTypicalDescentRate Simvar
args contain optional index and/or unit
func SimVarUnitOfMeasure(args ...interface{})
SimVar
SimVarUnitOfMeasure Simvar
args contain optional index and/or unit
func SimVarUnlimitedFuel(args ...interface{})
SimVar
SimVarUnlimitedFuel Simvar
args contain optional index and/or unit
func SimVarUserInputEnabled(args ...interface{})
SimVar
SimVarUserInputEnabled Simvar
args contain optional index and/or unit
func SimVarVariometerRate(args ...interface{})
SimVar
SimVarVariometerRate Simvar
args contain optional index and/or unit
func SimVarVariometerSwitch(args ...interface{})
SimVar
SimVarVariometerSwitch Simvar
args contain optional index and/or unit
func
SimVarVelocityBodyX
ΒΆ
func SimVarVelocityBodyX(args ...interface{})
SimVar
SimVarVelocityBodyX Simvar
args contain optional index and/or unit
func
SimVarVelocityBodyY
ΒΆ
func SimVarVelocityBodyY(args ...interface{})
SimVar
SimVarVelocityBodyY Simvar
args contain optional index and/or unit
func
SimVarVelocityBodyZ
ΒΆ
func SimVarVelocityBodyZ(args ...interface{})
SimVar
SimVarVelocityBodyZ Simvar
args contain optional index and/or unit
func SimVarVelocityWorldX(args ...interface{})
SimVar
SimVarVelocityWorldX Simvar
args contain optional index and/or unit
func SimVarVelocityWorldY(args ...interface{})
SimVar
SimVarVelocityWorldY Simvar
args contain optional index and/or unit
func SimVarVelocityWorldZ(args ...interface{})
SimVar
SimVarVelocityWorldZ Simvar
args contain optional index and/or unit
func SimVarVerticalSpeed(args ...interface{})
SimVar
SimVarVerticalSpeed Simvar
args contain optional index and/or unit
func SimVarVisualModelRadius(args ...interface{})
SimVar
SimVarVisualModelRadius Simvar
args contain optional index and/or unit
func SimVarWaterBallastValve(args ...interface{})
SimVar
SimVarWaterBallastValve Simvar
args contain optional index and/or unit
func SimVarWaterLeftRudderExtended(args ...interface{})
SimVar
SimVarWaterLeftRudderExtended Simvar
args contain optional index and/or unit
func SimVarWaterLeftRudderSteerAngle(args ...interface{})
SimVar
SimVarWaterLeftRudderSteerAngle Simvar
args contain optional index and/or unit
func SimVarWaterLeftRudderSteerAnglePct(args ...interface{})
SimVar
SimVarWaterLeftRudderSteerAnglePct Simvar
args contain optional index and/or unit
func SimVarWaterRightRudderExtended(args ...interface{})
SimVar
SimVarWaterRightRudderExtended Simvar
args contain optional index and/or unit
func SimVarWaterRightRudderSteerAngle(args ...interface{})
SimVar
SimVarWaterRightRudderSteerAngle Simvar
args contain optional index and/or unit
func SimVarWaterRightRudderSteerAnglePct(args ...interface{})
SimVar
SimVarWaterRightRudderSteerAnglePct Simvar
args contain optional index and/or unit
func
SimVarWaterRudderHandlePosition
ΒΆ
func SimVarWaterRudderHandlePosition(args ...interface{})
SimVar
SimVarWaterRudderHandlePosition Simvar
args contain optional index and/or unit
func SimVarWheelRotationAngle(args ...interface{})
SimVar
SimVarWheelRotationAngle Simvar
args contain optional index and/or unit
func SimVarWheelRpm(args ...interface{})
SimVar
SimVarWheelRpm Simvar
args contain optional index and/or unit
func SimVarWindshieldRainEffectAvailable(args ...interface{})
SimVar
SimVarWindshieldRainEffectAvailable Simvar
args contain optional index and/or unit
func SimVarWingArea(args ...interface{})
SimVar
SimVarWingArea Simvar
args contain optional index and/or unit
func SimVarWingFlexPct(args ...interface{})
SimVar
SimVarWingFlexPct Simvar
args contain optional index and/or unit
func SimVarWingSpan(args ...interface{})
SimVar
SimVarWingSpan Simvar
args contain optional index and/or unit
func SimVarWiskeyCompassIndicationDegrees(args ...interface{})
SimVar
SimVarWiskeyCompassIndicationDegrees Simvar
args contain optional index and/or unit
func SimVarYawStringAngle(args ...interface{})
SimVar
SimVarYawStringAngle Simvar
args contain optional index and/or unit
func SimVarYawStringPctExtended(args ...interface{})
SimVar
SimVarYawStringPctExtended Simvar
args contain optional index and/or unit
func SimVarYokeXIndicator(args ...interface{})
SimVar
SimVarYokeXIndicator Simvar
args contain optional index and/or unit
func SimVarYokeXPosition(args ...interface{})
SimVar
SimVarYokeXPosition Simvar
args contain optional index and/or unit
func SimVarYokeYIndicator(args ...interface{})
SimVar
SimVarYokeYIndicator Simvar
args contain optional index and/or unit
func SimVarYokeYPosition(args ...interface{})
SimVar
SimVarYokeYPosition Simvar
args contain optional index and/or unit
func SimVarZeroLiftAlpha(args ...interface{})
SimVar
SimVarZeroLiftAlpha Simvar
args contain optional index and/or unit
func SimVarZuluDayOfMonth(args ...interface{})
SimVar
SimVarZuluDayOfMonth Simvar
args contain optional index and/or unit
func SimVarZuluDayOfWeek(args ...interface{})
SimVar
SimVarZuluDayOfWeek Simvar
args contain optional index and/or unit
func SimVarZuluDayOfYear(args ...interface{})
SimVar
SimVarZuluDayOfYear Simvar
args contain optional index and/or unit
func SimVarZuluMonthOfYear(args ...interface{})
SimVar
SimVarZuluMonthOfYear Simvar
args contain optional index and/or unit
func SimVarZuluTime(args ...interface{})
SimVar
SimVarZuluTime Simvar
args contain optional index and/or unit
func SimVarZuluYear(args ...interface{})
SimVar
SimVarZuluYear Simvar
args contain optional index and/or unit
func (s *
SimVar
) GetData() []
byte
GetInt lost precision
func (s *
SimVar
) GetSize()
int
const (
UnitBool
SimVarUnit
= "Bool"
UnitFeetpersecond
SimVarUnit
= "Feetpersecond"
UnitPercentover100
SimVarUnit
= "Percentover100"
UnitNumber
SimVarUnit
= "Number"
UnitGallons
SimVarUnit
= "Gallons"
UnitString
SimVarUnit
= "String"
UnitBoolString
SimVarUnit
= "Bool/String"
UnitFeet
SimVarUnit
= "Feet"
UnitSimconnectDataXyz
SimVarUnit
= "SimconnectDataXyz"
UnitMask
SimVarUnit
= "Mask"
UnitKnots
SimVarUnit
= "Knots"
UnitSimconnectDataWaypoint
SimVarUnit
= "SimconnectDataWaypoint"
UnitDegrees
SimVarUnit
= "Degrees"
UnitSeconds
SimVarUnit
= "Seconds"
UnitBoolean
SimVarUnit
= "Boolean"
UnitSimconnectDataLatlonalt
SimVarUnit
= "SimconnectDataLatlonalt"
UnitPercent
SimVarUnit
= "Percent"
UnitEnum
SimVarUnit
= "Enum"
UnitRpm
SimVarUnit
= "Rpm"
UnitRankine
SimVarUnit
= "Rankine"
UnitPsi
SimVarUnit
= "Psi"
UnitHours
SimVarUnit
= "Hours"
UnitPosition
SimVarUnit
= "Position"
Unitftlbpersecond
SimVarUnit
= "ftlbpersecond"
UnitFootpound
SimVarUnit
= "Footpound"
UnitCelsius
SimVarUnit
= "Celsius"
UnitPoundsperhour
SimVarUnit
= "Poundsperhour"
UnitRatio
SimVarUnit
= "Ratio"
UnitPounds
SimVarUnit
= "Pounds"
UnitRadians
SimVarUnit
= "Radians"
UnitFootpounds
SimVarUnit
= "Footpounds"
UnitpoundForcepersquareinch
SimVarUnit
= "pound-forcepersquareinch"
UnitinHg
SimVarUnit
= "inHg"
UnitPSI
SimVarUnit
= "PSI"
UnitFeetpersecondsquared
SimVarUnit
= "Feetpersecondsquared"
UnitMeters
SimVarUnit
= "Meters"
UnitMach
SimVarUnit
= "Mach"
UnitMillibars
SimVarUnit
= "Millibars"
UnitRadianspersecond
SimVarUnit
= "Radianspersecond"
UnitGforce
SimVarUnit
= "Gforce"
UnitFrequencyBCD16
SimVarUnit
= "FrequencyBCD16"
UnitMHz
SimVarUnit
= "MHz"
UnitNauticalmiles
SimVarUnit
= "Nauticalmiles"
UnitFrequencyADFBCD32
SimVarUnit
= "FrequencyADFBCD32"
UnitHz
SimVarUnit
= "Hz"
UnitBCO16
SimVarUnit
= "BCO16"
UnitMeterspersecond
SimVarUnit
= "Meterspersecond"
UnitFlags
SimVarUnit
= "Flags"
Unitpsf
SimVarUnit
= "psf"
UnitPercentage
SimVarUnit
= "Percentage"
UnitFeetPMinute
SimVarUnit
= "Feet/minute"
UnitSlugspercubicfeet
SimVarUnit
= "Slugspercubicfeet"
UnitAmperes
SimVarUnit
= "Amperes"
UnitVolts
SimVarUnit
= "Volts"
UnitPoundforcepersquarefoot
SimVarUnit
= "Poundforcepersquarefoot"
UnitGForce
SimVarUnit
= "GForce"
UnitFeetperminute
SimVarUnit
= "Feetperminute"
UnitPoundspersquarefoot
SimVarUnit
= "Poundspersquarefoot"
Unitfootpounds
SimVarUnit
= "footpounds"
UnitSquarefeet
SimVarUnit
= "Squarefeet"
UnitPerradian
SimVarUnit
= "Perradian"
UnitMachs
SimVarUnit
= "Machs"
Unitslugfeetsquared
SimVarUnit
= "slugfeetsquared"
UnitAmps
SimVarUnit
= "Amps"
UnitPersecond
SimVarUnit
= "Persecond"
UnitString64
SimVarUnit
= "String64"
UnitString8
SimVarUnit
= "String8"
UnitVariablelengthstring
SimVarUnit
= "Variablelengthstring"
)
type SyscallSC struct {
}
func NewSyscallSC() (*
SyscallSC
,
error
)
NewsyscallSC.pinit all syscall
func (syscallSC *
SyscallSC
) WeatherCreateThermal(hSimConnect
uintptr
, RequestID
uintptr
, lat
uintptr
, lon
uintptr
, alt
uintptr
, radius
uintptr
, height
uintptr
, coreRate
uintptr
, coreTurbulence
uintptr
, sinkRate
uintptr
, sinkTurbulence
uintptr
, coreSize
uintptr
, coreTransitionSize
uintptr
, sinkLayerSize
uintptr
, sinkTransitionSize
uintptr
)
error
func (syscallSC *
SyscallSC
) WeatherSetModeCustom(hSimConnect
uintptr
)
error
func (syscallSC *
SyscallSC
) WeatherSetModeGlobal(hSimConnect
uintptr
)
error
const (
SystemEvent1sec
SystemEvent
= "1sec"
SystemEvent4sec
SystemEvent
= "4sec"
SystemEvent6Hz
SystemEvent
= "6Hz"
SystemEventAircraftLoaded
SystemEvent
= "AircraftLoaded"
SystemEventCrashed
SystemEvent
= "Crashed"
SystemEventCrashReset
SystemEvent
= "CrashReset"
SystemEventFlightLoaded
SystemEvent
= "FlightLoaded"
SystemEventFlightSaved
SystemEvent
= "FlightSaved"
SystemEventFlightPlanActivated
SystemEvent
= "FlightPlanActivated"
SystemEventFlightPlanDeactivated
SystemEvent
= "FlightPlanDeactivated"
SystemEventFrame
SystemEvent
= "Frame"
SystemEventPause
SystemEvent
= "Pause"
SystemEventPaused
SystemEvent
= "Paused"
SystemEventPauseFrame
SystemEvent
= "PauseFrame"
SystemEventPositionChanged
SystemEvent
= "PositionChanged"
SystemEventSim
SystemEvent
= "Sim"
SystemEventSimStart
SystemEvent
= "SimStart"
SystemEventSimStop
SystemEvent
= "SimStop"
SystemEventSound
SystemEvent
= "Sound"
SystemEventUnpaused
SystemEvent
= "Unpaused"
SystemEventView
SystemEvent
= "View"
SystemEventWeatherModeChanged
SystemEvent
= "WeatherModeChanged"
SystemEventObjectAdded
SystemEvent
= "ObjectAdded"
SystemEventObjectRemoved
SystemEvent
= "ObjectRemoved"
SystemEventMissionCompleted
SystemEvent
= "MissionCompleted"
SystemEventCustomMissionActionExecuted
SystemEvent
= "CustomMissionActionExecuted"
SystemEventMultiplayerClientStarted
SystemEvent
= "MultiplayerClientStarted"
SystemEventMultiplayerServerStarted
SystemEvent
= "MultiplayerServerStarted"
SystemEventMultiplayerSessionEnded
SystemEvent
= "MultiplayerSessionEnded"
SystemEventRaceEnd
SystemEvent
= "RaceEnd"
SystemEventRaceLap
SystemEvent
= "RaceLap"
) |
| Markdown | [](https://go.dev/)
[Skip to Main Content](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#main-content)

- [Why Go ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
- [Case Studies](https://go.dev/solutions#case-studies)
Common problems companies solve with Go
- [Use Cases](https://go.dev/solutions#use-cases)
Stories about how and why companies use Go
- [Security](https://go.dev/security/)
How Go can help keep you secure by default
- [Learn](https://go.dev/learn/)
- [Docs ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
- [Effective Go](https://go.dev/doc/effective_go)
Tips for writing clear, performant, and idiomatic Go code
- [Go User Manual](https://go.dev/doc/)
A complete introduction to building software with Go
- [Standard library](https://pkg.go.dev/std)
Reference documentation for Go's standard library
- [Release Notes](https://go.dev/doc/devel/release)
Learn what's new in each Go release
- [Packages](https://pkg.go.dev/)
- [Community ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
- [Recorded Talks](https://go.dev/talks/)
Videos from prior events
- [Meetups **](https://www.meetup.com/pro/go)
Meet other local Go developers
- [Conferences **](https://github.com/golang/go/wiki/Conferences)
Learn and network with Go developers from around the world
- [Go blog](https://go.dev/blog)
The Go project's official blog.
- [Go project](https://go.dev/help)
Get help and stay informed from Go
- Get connected
[](https://groups.google.com/g/golang-nuts "Get connected with google-groups (Opens in new window)") [](https://github.com/golang "Get connected with github (Opens in new window)") [](https://twitter.com/golang "Get connected with twitter (Opens in new window)") [](https://www.reddit.com/r/golang/ "Get connected with reddit (Opens in new window)") [](https://invite.slack.golangbridge.org/ "Get connected with slack (Opens in new window)") [](https://stackoverflow.com/collectives/go)
[](https://go.dev/)
- [Why Go **](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
[** Why Go](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
- [Case Studies](https://go.dev/solutions#case-studies)
- [Use Cases](https://go.dev/solutions#use-cases)
- [Security](https://go.dev/security/)
- [Learn](https://go.dev/learn/)
- [Docs **](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
[** Docs](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
- [Effective Go](https://go.dev/doc/effective_go)
- [Go User Manual](https://go.dev/doc/)
- [Standard library](https://pkg.go.dev/std)
- [Release Notes](https://go.dev/doc/devel/release)
- [Packages](https://pkg.go.dev/)
- [Community **](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
[** Community](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
- [Recorded Talks](https://go.dev/talks/)
- [Meetups **](https://www.meetup.com/pro/go)
- [Conferences **](https://github.com/golang/go/wiki/Conferences)
- [Go blog](https://go.dev/blog)
- [Go project](https://go.dev/help)
- Get connected
[](https://groups.google.com/g/golang-nuts) [](https://github.com/golang) [](https://twitter.com/golang) [](https://www.reddit.com/r/golang/) [](https://invite.slack.golangbridge.org/) [](https://stackoverflow.com/collectives/go)
1. [Discover Packages](https://pkg.go.dev/)
2. [github.com/flysim-apps/simgo](https://pkg.go.dev/github.com/flysim-apps/simgo)
3. [simconnect](https://pkg.go.dev/github.com/flysim-apps/simgo@v1.2.0/simconnect)

[](https://go.dev/)
# simconnect
package

[Version: v1.2.0](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect?tab=versions)
Opens a new window with list of versions in this module.
Latest
Latest

This package is not in the latest version of its module.
[Go to latest](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect)
Published: Dec 5, 2023 License: [GPL-3.0, MIT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect?tab=licenses)
Opens a new window with license information.
[Imports: 13](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect?tab=imports)
Opens a new window with list of imports.
[Imported by: 0](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect?tab=importedby)
Opens a new window with list of known importers.
## Details
-  Valid [go.mod](https://github.com/flysim-apps/simgo/tree/v1.2.0/go.mod) file 
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
-  Redistributable license 
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
-  Tagged version 
Modules with tagged versions give importers more predictable builds.
-  Stable version 
When a project reaches major version v1 it is considered stable.
- [Learn more about best practices](https://pkg.go.dev/about#best-practices)
## Repository
[github.com/flysim-apps/simgo](https://github.com/flysim-apps/simgo "https://github.com/flysim-apps/simgo")
## Links
- [ Open Source Insights](https://deps.dev/go/github.com%2Fflysim-apps%2Fsimgo/v1.2.0 "View this module on Open Source Insights")
Jump to ...
- [README](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#section-readme)
- [A simple example of how to use this library](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#readme-a-simple-example-of-how-to-use-this-library)
- [Documentation](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#section-documentation)
- [Overview](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-overview)
- [Index](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-index)
- [Examples](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-examples)
- [Package (GetLatLonAlt)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetLatLonAlt "Package (GetLatLonAlt)")
- [Package (GetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetSimVar "Package (GetSimVar)")
- [Package (GetSimVarWithIndex)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetSimVarWithIndex "Package (GetSimVarWithIndex)")
- [Package (GetString)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetString "Package (GetString)")
- [Package (GetXYZ)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetXYZ "Package (GetXYZ)")
- [Package (IFaceSetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-IFaceSetSimVar "Package (IFaceSetSimVar)")
- [Package (InterfaceSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-InterfaceSimVar "Package (InterfaceSimVar)")
- [Package (SetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-SetSimVar "Package (SetSimVar)")
- [Package (ShowText)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-ShowText "Package (ShowText)")
- [Package (SimEvent)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-SimEvent "Package (SimEvent)")
- [Constants](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-constants)
- [Variables](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-variables)
- [Functions](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-functions)
- [InterfaceAssignSimVar(listSimVar, iFace)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#InterfaceAssignSimVar "InterfaceAssignSimVar(listSimVar, iFace)")
- [SimVarAssignInterface(iFace, listSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAssignInterface "SimVarAssignInterface(iFace, listSimVar)")
- [Types](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-types)
- [type EasySimConnect](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect "type EasySimConnect")
- [NewEasySimConnect(ctx)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewEasySimConnect "NewEasySimConnect(ctx)")
- [(esc) Close()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.Close "(esc) Close()")
- [(esc) Connect(appName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.Connect "(esc) Connect(appName)")
- [(esc) ConnectInterfaceToSimVar(iFace)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectInterfaceToSimVar "(esc) ConnectInterfaceToSimVar(iFace)")
- [(esc) ConnectSysEventAircraftLoaded()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventAircraftLoaded "(esc) ConnectSysEventAircraftLoaded()")
- [(esc) ConnectSysEventCrashReset()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventCrashReset "(esc) ConnectSysEventCrashReset()")
- [(esc) ConnectSysEventCrashed()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventCrashed "(esc) ConnectSysEventCrashed()")
- [(esc) ConnectSysEventFlightLoaded()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightLoaded "(esc) ConnectSysEventFlightLoaded()")
- [(esc) ConnectSysEventFlightPlanActivated()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanActivated "(esc) ConnectSysEventFlightPlanActivated()")
- [(esc) ConnectSysEventFlightPlanDeactivated()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanDeactivated "(esc) ConnectSysEventFlightPlanDeactivated()")
- [(esc) ConnectSysEventFlightSaved()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightSaved "(esc) ConnectSysEventFlightSaved()")
- [(esc) ConnectSysEventPause()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventPause "(esc) ConnectSysEventPause()")
- [(esc) ConnectSysEventPaused()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventPaused "(esc) ConnectSysEventPaused()")
- [(esc) ConnectSysEventSim()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventSim "(esc) ConnectSysEventSim()")
- [(esc) ConnectToSimVar(listSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectToSimVar "(esc) ConnectToSimVar(listSimVar)")
- [(esc) ConnectToSimVarObject(listSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectToSimVarObject "(esc) ConnectToSimVarObject(listSimVar)")
- [(esc) IsAlive()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.IsAlive "(esc) IsAlive()")
- [(esc) NewSimEvent(simEventStr)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.NewSimEvent "(esc) NewSimEvent(simEventStr)")
- [(esc) SetDelay(t)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetDelay "(esc) SetDelay(t)")
- [(esc) SetLoggerLevel(level)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetLoggerLevel "(esc) SetLoggerLevel(level)")
- [(esc) SetSimObject(simVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetSimObject "(esc) SetSimObject(simVar)")
- [(esc) SetSimVarInterfaceInSim(iFace)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetSimVarInterfaceInSim "(esc) SetSimVarInterfaceInSim(iFace)")
- [(esc) ShowText(str, time, color)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ShowText "(esc) ShowText(str, time, color)")
- [type EasySimConnectLogLevel](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnectLogLevel "type EasySimConnectLogLevel")
- [type EventFlag](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EventFlag "type EventFlag")
- [type GUID](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#GUID "type GUID")
- [type GroupPriority](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#GroupPriority "type GroupPriority")
- [type KeySimEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#KeySimEvent "type KeySimEvent")
- [type PrintColor](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#PrintColor "type PrintColor")
- [type SIMCONNECT\_DATA\_FACILITY\_AIRPORT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_AIRPORT "type SIMCONNECT_DATA_FACILITY_AIRPORT")
- [type SIMCONNECT\_DATA\_FACILITY\_NDB](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_NDB "type SIMCONNECT_DATA_FACILITY_NDB")
- [type SIMCONNECT\_DATA\_FACILITY\_VOR](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_VOR "type SIMCONNECT_DATA_FACILITY_VOR")
- [type SIMCONNECT\_DATA\_FACILITY\_WAYPOINT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_WAYPOINT "type SIMCONNECT_DATA_FACILITY_WAYPOINT")
- [type SIMCONNECT\_DATA\_INITPOSITION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_INITPOSITION "type SIMCONNECT_DATA_INITPOSITION")
- [type SIMCONNECT\_DATA\_LATLONALT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_LATLONALT "type SIMCONNECT_DATA_LATLONALT")
- [(s) GetFeets()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_LATLONALT.GetFeets "(s) GetFeets()")
- [type SIMCONNECT\_DATA\_MARKERSTATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_MARKERSTATE "type SIMCONNECT_DATA_MARKERSTATE")
- [type SIMCONNECT\_DATA\_RACE\_RESULT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_RACE_RESULT "type SIMCONNECT_DATA_RACE_RESULT")
- [type SIMCONNECT\_DATA\_WAYPOINT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_WAYPOINT "type SIMCONNECT_DATA_WAYPOINT")
- [type SIMCONNECT\_DATA\_XYZ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_XYZ "type SIMCONNECT_DATA_XYZ")
- [type SIMCONNECT\_RECV](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV "type SIMCONNECT_RECV")
- [type SIMCONNECT\_RECV\_AIRPORT\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_AIRPORT_LIST "type SIMCONNECT_RECV_AIRPORT_LIST")
- [type SIMCONNECT\_RECV\_ASSIGNED\_OBJECT\_ID](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_ASSIGNED_OBJECT_ID "type SIMCONNECT_RECV_ASSIGNED_OBJECT_ID")
- [type SIMCONNECT\_RECV\_CLIENT\_DATA](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CLIENT_DATA "type SIMCONNECT_RECV_CLIENT_DATA")
- [type SIMCONNECT\_RECV\_CLOUD\_STATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CLOUD_STATE "type SIMCONNECT_RECV_CLOUD_STATE")
- [type SIMCONNECT\_RECV\_CUSTOM\_ACTION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CUSTOM_ACTION "type SIMCONNECT_RECV_CUSTOM_ACTION")
- [type SIMCONNECT\_RECV\_EVENT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT "type SIMCONNECT_RECV_EVENT")
- [type SIMCONNECT\_RECV\_EVENT\_FILENAME](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_FILENAME "type SIMCONNECT_RECV_EVENT_FILENAME")
- [type SIMCONNECT\_RECV\_EVENT\_FRAME](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_FRAME "type SIMCONNECT_RECV_EVENT_FRAME")
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_CLIENT\_STARTED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED "type SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED")
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_SERVER\_STARTED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED "type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED")
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_SESSION\_ENDED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED "type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED")
- [type SIMCONNECT\_RECV\_EVENT\_OBJECT\_ADDREMOVE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE "type SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE")
- [type SIMCONNECT\_RECV\_EVENT\_RACE\_END](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_RACE_END "type SIMCONNECT_RECV_EVENT_RACE_END")
- [type SIMCONNECT\_RECV\_EVENT\_RACE\_LAP](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_RACE_LAP "type SIMCONNECT_RECV_EVENT_RACE_LAP")
- [type SIMCONNECT\_RECV\_EVENT\_WEATHER\_MODE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_WEATHER_MODE "type SIMCONNECT_RECV_EVENT_WEATHER_MODE")
- [type SIMCONNECT\_RECV\_EXCEPTION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EXCEPTION "type SIMCONNECT_RECV_EXCEPTION")
- [type SIMCONNECT\_RECV\_FACILITIES\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_FACILITIES_LIST "type SIMCONNECT_RECV_FACILITIES_LIST")
- [type SIMCONNECT\_RECV\_NDB\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_NDB_LIST "type SIMCONNECT_RECV_NDB_LIST")
- [type SIMCONNECT\_RECV\_OPEN](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_OPEN "type SIMCONNECT_RECV_OPEN")
- [type SIMCONNECT\_RECV\_QUIT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_QUIT "type SIMCONNECT_RECV_QUIT")
- [type SIMCONNECT\_RECV\_RESERVED\_KEY](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_RESERVED_KEY "type SIMCONNECT_RECV_RESERVED_KEY")
- [type SIMCONNECT\_RECV\_SIMOBJECT\_DATA](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SIMOBJECT_DATA "type SIMCONNECT_RECV_SIMOBJECT_DATA")
- [type SIMCONNECT\_RECV\_SIMOBJECT\_DATA\_BYTYPE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE "type SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE")
- [type SIMCONNECT\_RECV\_SYSTEM\_STATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SYSTEM_STATE "type SIMCONNECT_RECV_SYSTEM_STATE")
- [type SIMCONNECT\_RECV\_VOR\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_VOR_LIST "type SIMCONNECT_RECV_VOR_LIST")
- [type SIMCONNECT\_RECV\_WAYPOINT\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_WAYPOINT_LIST "type SIMCONNECT_RECV_WAYPOINT_LIST")
- [type SIMCONNECT\_RECV\_WEATHER\_OBSERVATION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_WEATHER_OBSERVATION "type SIMCONNECT_RECV_WEATHER_OBSERVATION")
- [type ScrollColor](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#ScrollColor "type ScrollColor")
- [type SimConnect](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect "type SimConnect")
- [NewSimConnect()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewSimConnect "NewSimConnect()")
- [(sc) AICreateEnrouteATCAircraft(szContainerTitle, szTailNumber, iFlightNumber, szFlightPlanPath, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateEnrouteATCAircraft "(sc) AICreateEnrouteATCAircraft(szContainerTitle, szTailNumber, iFlightNumber, szFlightPlanPath, ...)")
- [(sc) AICreateNonATCAircraft(szContainerTitle, szTailNumber, InitPos, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateNonATCAircraft "(sc) AICreateNonATCAircraft(szContainerTitle, szTailNumber, InitPos, RequestID)")
- [(sc) AICreateParkedATCAircraft(szContainerTitle, szTailNumber, szAirportID, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateParkedATCAircraft "(sc) AICreateParkedATCAircraft(szContainerTitle, szTailNumber, szAirportID, RequestID)")
- [(sc) AICreateSimulatedObject(szContainerTitle, InitPos, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateSimulatedObject "(sc) AICreateSimulatedObject(szContainerTitle, InitPos, RequestID)")
- [(sc) AIReleaseControl(ObjectID, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AIReleaseControl "(sc) AIReleaseControl(ObjectID, RequestID)")
- [(sc) AIRemoveObject(ObjectID, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AIRemoveObject "(sc) AIRemoveObject(ObjectID, RequestID)")
- [(sc) AISetAircraftFlightPlan(ObjectID, szFlightPlanPath, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AISetAircraftFlightPlan "(sc) AISetAircraftFlightPlan(ObjectID, szFlightPlanPath, RequestID)")
- [(sc) AddClientEventToNotificationGroup(GroupID, EventID, bMaskable)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddClientEventToNotificationGroup "(sc) AddClientEventToNotificationGroup(GroupID, EventID, bMaskable)")
- [(sc) AddToClientDataDefinition(DefineID, dwOffset, dwSizeOrType, fEpsilon, DatumID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddToClientDataDefinition "(sc) AddToClientDataDefinition(DefineID, dwOffset, dwSizeOrType, fEpsilon, DatumID)")
- [(sc) AddToDataDefinition(DefineID, DatumName, UnitsName, DatumType, fEpsilon, DatumID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddToDataDefinition "(sc) AddToDataDefinition(DefineID, DatumName, UnitsName, DatumType, fEpsilon, DatumID)")
- [(sc) CameraSetRelative6DOF(fDeltaX, fDeltaY, fDeltaZ, fPitchDeg, fBankDeg, fHeadingDeg)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CameraSetRelative6DOF "(sc) CameraSetRelative6DOF(fDeltaX, fDeltaY, fDeltaZ, fPitchDeg, fBankDeg, fHeadingDeg)")
- [(sc) ClearClientDataDefinition(DefineID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearClientDataDefinition "(sc) ClearClientDataDefinition(DefineID)")
- [(sc) ClearDataDefinition(DefineID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearDataDefinition "(sc) ClearDataDefinition(DefineID)")
- [(sc) ClearInputGroup(GroupID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearInputGroup "(sc) ClearInputGroup(GroupID)")
- [(sc) ClearNotificationGroup(GroupID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearNotificationGroup "(sc) ClearNotificationGroup(GroupID)")
- [(sc) Close()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Close "(sc) Close()")
- [(sc) CompleteCustomMissionAction(guidInstanceID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CompleteCustomMissionAction "(sc) CompleteCustomMissionAction(guidInstanceID)")
- [(sc) CreateClientData(ClientDataID, dwSize, Flags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CreateClientData "(sc) CreateClientData(ClientDataID, dwSize, Flags)")
- [(sc) ExecuteMissionAction(guidInstanceID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ExecuteMissionAction "(sc) ExecuteMissionAction(guidInstanceID)")
- [(sc) FlightLoad(szFileName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightLoad "(sc) FlightLoad(szFileName)")
- [(sc) FlightPlanLoad(szFileName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightPlanLoad "(sc) FlightPlanLoad(szFileName)")
- [(sc) FlightSave(szFileName, szTitle, szDescription, Flags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightSave "(sc) FlightSave(szFileName, szTitle, szDescription, Flags)")
- [(sc) GetLastSentPacketID(pdwError)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.GetLastSentPacketID "(sc) GetLastSentPacketID(pdwError)")
- [(sc) GetNextDispatch(ppData, pcbData)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.GetNextDispatch "(sc) GetNextDispatch(ppData, pcbData)")
- [(sc) InsertString(pDest, cbDest, ppEnd, pcbStringV, pSource)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.InsertString "(sc) InsertString(pDest, cbDest, ppEnd, pcbStringV, pSource)")
- [(sc) MapClientDataNameToID(szClientDataName, ClientDataID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapClientDataNameToID "(sc) MapClientDataNameToID(szClientDataName, ClientDataID)")
- [(sc) MapClientEventToSimEvent(EventID, EventName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapClientEventToSimEvent "(sc) MapClientEventToSimEvent(EventID, EventName)")
- [(sc) MapInputEventToClientEvent(GroupID, szInputDefinition, DownEventID, DownValue, UpEventID, UpValue, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapInputEventToClientEvent "(sc) MapInputEventToClientEvent(GroupID, szInputDefinition, DownEventID, DownValue, UpEventID, UpValue, ...)")
- [(sc) MenuAddItem(szMenuItem, MenuEventID, dwData)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuAddItem "(sc) MenuAddItem(szMenuItem, MenuEventID, dwData)")
- [(sc) MenuAddSubItem(MenuEventID, szMenuItem, SubMenuEventID, dwData)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuAddSubItem "(sc) MenuAddSubItem(MenuEventID, szMenuItem, SubMenuEventID, dwData)")
- [(sc) MenuDeleteItem(MenuEventID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuDeleteItem "(sc) MenuDeleteItem(MenuEventID)")
- [(sc) MenuDeleteSubItem(MenuEventID, constSubMenuEventID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuDeleteSubItem "(sc) MenuDeleteSubItem(MenuEventID, constSubMenuEventID)")
- [(sc) Open(appTitle)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Open "(sc) Open(appTitle)")
- [(sc) RemoveClientEvent(GroupID, EventID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RemoveClientEvent "(sc) RemoveClientEvent(GroupID, EventID)")
- [(sc) RemoveInputEvent(GroupID, szInputDefinition)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RemoveInputEvent "(sc) RemoveInputEvent(GroupID, szInputDefinition)")
- [(sc) RequestClientData(ClientDataID, RequestID, DefineID, Period, Flags, origin, interval, limit)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestClientData "(sc) RequestClientData(ClientDataID, RequestID, DefineID, Period, Flags, origin, interval, limit)")
- [(sc) RequestDataOnSimObject(RequestID, DefineID, ObjectID, Period, Flags, origin, interval, limit)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestDataOnSimObject "(sc) RequestDataOnSimObject(RequestID, DefineID, ObjectID, Period, Flags, origin, interval, limit)")
- [(sc) RequestDataOnSimObjectType(RequestID, DefineID, dwRadiusMeters, t)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestDataOnSimObjectType "(sc) RequestDataOnSimObjectType(RequestID, DefineID, dwRadiusMeters, t)")
- [(sc) RequestFacilitiesList(t, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestFacilitiesList "(sc) RequestFacilitiesList(t, RequestID)")
- [(sc) RequestNotificationGroup(GroupID, dwReserved, Flags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestNotificationGroup "(sc) RequestNotificationGroup(GroupID, dwReserved, Flags)")
- [(sc) RequestReservedKey(EventID, szKeyChoice1, szKeyChoice2, szKeyChoice3)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestReservedKey "(sc) RequestReservedKey(EventID, szKeyChoice1, szKeyChoice2, szKeyChoice3)")
- [(sc) RequestResponseTimes(nCount, fElapsedSeconds)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestResponseTimes "(sc) RequestResponseTimes(nCount, fElapsedSeconds)")
- [(sc) RequestSystemState(RequestID, szState)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestSystemState "(sc) RequestSystemState(RequestID, szState)")
- [(sc) RetrieveString(pData, cbData, pStringV, pszString, pcbString)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RetrieveString "(sc) RetrieveString(pData, cbData, pStringV, pszString, pcbString)")
- [(sc) SetClientData(ClientDataID, DefineID, Flags, dwReserved, cbUnitSize, pDataSet)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetClientData "(sc) SetClientData(ClientDataID, DefineID, Flags, dwReserved, cbUnitSize, pDataSet)")
- [(sc) SetDataOnSimObject(DefineID, ObjectID, Flags, ArrayCount, cbUnitSize, pDataSet)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetDataOnSimObject "(sc) SetDataOnSimObject(DefineID, ObjectID, Flags, ArrayCount, cbUnitSize, pDataSet)")
- [(sc) SetInputGroupPriority(GroupID, uPriority)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetInputGroupPriority "(sc) SetInputGroupPriority(GroupID, uPriority)")
- [(sc) SetInputGroupState(GroupID, dwState)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetInputGroupState "(sc) SetInputGroupState(GroupID, dwState)")
- [(sc) SetNotificationGroupPriority(GroupID, uPriority)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetNotificationGroupPriority "(sc) SetNotificationGroupPriority(GroupID, uPriority)")
- [(sc) SetSystemEventState(EventID, dwState)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetSystemEventState "(sc) SetSystemEventState(EventID, dwState)")
- [(sc) SetSystemState(szState, dwInteger, fFloat, szString)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetSystemState "(sc) SetSystemState(szState, dwInteger, fFloat, szString)")
- [(sc) SubscribeToFacilities(t, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SubscribeToFacilities "(sc) SubscribeToFacilities(t, RequestID)")
- [(sc) SubscribeToSystemEvent(EventID, SystemEventName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SubscribeToSystemEvent "(sc) SubscribeToSystemEvent(EventID, SystemEventName)")
- [(sc) Text(t, fTimeSeconds, EventID, pDataSet)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Text "(sc) Text(t, fTimeSeconds, EventID, pDataSet)")
- [(sc) TransmitClientEvent(ObjectID, EventID, dwData, GroupID, Flags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.TransmitClientEvent "(sc) TransmitClientEvent(ObjectID, EventID, dwData, GroupID, Flags)")
- [(sc) UnsubscribeFromSystemEvent(EventID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.UnsubscribeFromSystemEvent "(sc) UnsubscribeFromSystemEvent(EventID)")
- [(sc) UnsubscribeToFacilities(t)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.UnsubscribeToFacilities "(sc) UnsubscribeToFacilities(t)")
- [(sc) WeatherCreateStation(RequestID, szICAO, szName, lat, lon, alt)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherCreateStation "(sc) WeatherCreateStation(RequestID, szICAO, szName, lat, lon, alt)")
- [(sc) WeatherCreateThermal(RequestID, lat, lon, alt, radius, height, coreRate, coreTurbulence, sinkRate, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherCreateThermal "(sc) WeatherCreateThermal(RequestID, lat, lon, alt, radius, height, coreRate, coreTurbulence, sinkRate, ...)")
- [(sc) WeatherRemoveStation(RequestID, szICAO)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRemoveStation "(sc) WeatherRemoveStation(RequestID, szICAO)")
- [(sc) WeatherRemoveThermal(ObjectID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRemoveThermal "(sc) WeatherRemoveThermal(ObjectID)")
- [(sc) WeatherRequestCloudState(RequestID, minLat, minLon, minAlt, maxLat, maxLon, maxAlt, dwFlags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestCloudState "(sc) WeatherRequestCloudState(RequestID, minLat, minLon, minAlt, maxLat, maxLon, maxAlt, dwFlags)")
- [(sc) WeatherRequestInterpolatedObservation(RequestID, lat, lon, alt)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestInterpolatedObservation "(sc) WeatherRequestInterpolatedObservation(RequestID, lat, lon, alt)")
- [(sc) WeatherRequestObservationAtNearestStation(RequestID, lat, lon)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestObservationAtNearestStation "(sc) WeatherRequestObservationAtNearestStation(RequestID, lat, lon)")
- [(sc) WeatherRequestObservationAtStation(RequestID, szICAO)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestObservationAtStation "(sc) WeatherRequestObservationAtStation(RequestID, szICAO)")
- [(sc) WeatherSetDynamicUpdateRate(dwRate)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetDynamicUpdateRate "(sc) WeatherSetDynamicUpdateRate(dwRate)")
- [(sc) WeatherSetModeCustom()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeCustom "(sc) WeatherSetModeCustom()")
- [(sc) WeatherSetModeGlobal()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeGlobal "(sc) WeatherSetModeGlobal()")
- [(sc) WeatherSetModeServer(dwPort, dwSeconds)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeServer "(sc) WeatherSetModeServer(dwPort, dwSeconds)")
- [(sc) WeatherSetModeTheme(szThemeName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeTheme "(sc) WeatherSetModeTheme(szThemeName)")
- [(sc) WeatherSetObservation(Seconds, szMETAR)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetObservation "(sc) WeatherSetObservation(Seconds, szMETAR)")
- [type SimConnectStat](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnectStat "type SimConnectStat")
- [type SimEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent "type SimEvent")
- [(s) Run()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent.Run "(s) Run()")
- [(s) RunWithValue(value)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent.RunWithValue "(s) RunWithValue(value)")
- [type SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar "type SimVar")
- [SimVarAbsoluteTime(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAbsoluteTime "SimVarAbsoluteTime(args)")
- [SimVarAccelerationBodyX(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyX "SimVarAccelerationBodyX(args)")
- [SimVarAccelerationBodyY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyY "SimVarAccelerationBodyY(args)")
- [SimVarAccelerationBodyZ(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyZ "SimVarAccelerationBodyZ(args)")
- [SimVarAccelerationWorldX(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldX "SimVarAccelerationWorldX(args)")
- [SimVarAccelerationWorldY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldY "SimVarAccelerationWorldY(args)")
- [SimVarAccelerationWorldZ(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldZ "SimVarAccelerationWorldZ(args)")
- [SimVarAdfActiveFrequency(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfActiveFrequency "SimVarAdfActiveFrequency(args)")
- [SimVarAdfAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfAvailable "SimVarAdfAvailable(args)")
- [SimVarAdfCard(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfCard "SimVarAdfCard(args)")
- [SimVarAdfExtFrequency(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfExtFrequency "SimVarAdfExtFrequency(args)")
- [SimVarAdfFrequency(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfFrequency "SimVarAdfFrequency(args)")
- [SimVarAdfIdent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfIdent "SimVarAdfIdent(args)")
- [SimVarAdfLatlonalt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfLatlonalt "SimVarAdfLatlonalt(args)")
- [SimVarAdfName(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfName "SimVarAdfName(args)")
- [SimVarAdfRadial(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfRadial "SimVarAdfRadial(args)")
- [SimVarAdfSignal(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfSignal "SimVarAdfSignal(args)")
- [SimVarAdfSound(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfSound "SimVarAdfSound(args)")
- [SimVarAdfStandbyFrequency(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfStandbyFrequency "SimVarAdfStandbyFrequency(args)")
- [SimVarAiCurrentWaypoint(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiCurrentWaypoint "SimVarAiCurrentWaypoint(args)")
- [SimVarAiDesiredHeading(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiDesiredHeading "SimVarAiDesiredHeading(args)")
- [SimVarAiDesiredSpeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiDesiredSpeed "SimVarAiDesiredSpeed(args)")
- [SimVarAiGroundcruisespeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundcruisespeed "SimVarAiGroundcruisespeed(args)")
- [SimVarAiGroundturnspeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundturnspeed "SimVarAiGroundturnspeed(args)")
- [SimVarAiGroundturntime(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundturntime "SimVarAiGroundturntime(args)")
- [SimVarAiTrafficAssignedParking(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficAssignedParking "SimVarAiTrafficAssignedParking(args)")
- [SimVarAiTrafficAssignedRunway(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficAssignedRunway "SimVarAiTrafficAssignedRunway(args)")
- [SimVarAiTrafficCurrentAirport(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficCurrentAirport "SimVarAiTrafficCurrentAirport(args)")
- [SimVarAiTrafficEta(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficEta "SimVarAiTrafficEta(args)")
- [SimVarAiTrafficEtd(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficEtd "SimVarAiTrafficEtd(args)")
- [SimVarAiTrafficFromairport(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficFromairport "SimVarAiTrafficFromairport(args)")
- [SimVarAiTrafficIsifr(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficIsifr "SimVarAiTrafficIsifr(args)")
- [SimVarAiTrafficState(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficState "SimVarAiTrafficState(args)")
- [SimVarAiTrafficToairport(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficToairport "SimVarAiTrafficToairport(args)")
- [SimVarAiWaypointList(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiWaypointList "SimVarAiWaypointList(args)")
- [SimVarAileronAverageDeflection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronAverageDeflection "SimVarAileronAverageDeflection(args)")
- [SimVarAileronLeftDeflection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronLeftDeflection "SimVarAileronLeftDeflection(args)")
- [SimVarAileronLeftDeflectionPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronLeftDeflectionPct "SimVarAileronLeftDeflectionPct(args)")
- [SimVarAileronPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronPosition "SimVarAileronPosition(args)")
- [SimVarAileronRightDeflection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronRightDeflection "SimVarAileronRightDeflection(args)")
- [SimVarAileronRightDeflectionPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronRightDeflectionPct "SimVarAileronRightDeflectionPct(args)")
- [SimVarAileronTrim(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronTrim "SimVarAileronTrim(args)")
- [SimVarAileronTrimPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronTrimPct "SimVarAileronTrimPct(args)")
- [SimVarAircraftWindX(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindX "SimVarAircraftWindX(args)")
- [SimVarAircraftWindY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindY "SimVarAircraftWindY(args)")
- [SimVarAircraftWindZ(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindZ "SimVarAircraftWindZ(args)")
- [SimVarAirspeedBarberPole(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedBarberPole "SimVarAirspeedBarberPole(args)")
- [SimVarAirspeedIndicated(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedIndicated "SimVarAirspeedIndicated(args)")
- [SimVarAirspeedMach(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedMach "SimVarAirspeedMach(args)")
- [SimVarAirspeedSelectIndicatedOrTrue(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedSelectIndicatedOrTrue "SimVarAirspeedSelectIndicatedOrTrue(args)")
- [SimVarAirspeedTrue(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedTrue "SimVarAirspeedTrue(args)")
- [SimVarAirspeedTrueCalibrate(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedTrueCalibrate "SimVarAirspeedTrueCalibrate(args)")
- [SimVarAlternateStaticSourceOpen(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAlternateStaticSourceOpen "SimVarAlternateStaticSourceOpen(args)")
- [SimVarAmbientDensity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientDensity "SimVarAmbientDensity(args)")
- [SimVarAmbientInCloud(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientInCloud "SimVarAmbientInCloud(args)")
- [SimVarAmbientPrecipState(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientPrecipState "SimVarAmbientPrecipState(args)")
- [SimVarAmbientPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientPressure "SimVarAmbientPressure(args)")
- [SimVarAmbientTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientTemperature "SimVarAmbientTemperature(args)")
- [SimVarAmbientVisibility(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientVisibility "SimVarAmbientVisibility(args)")
- [SimVarAmbientWindDirection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindDirection "SimVarAmbientWindDirection(args)")
- [SimVarAmbientWindVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindVelocity "SimVarAmbientWindVelocity(args)")
- [SimVarAmbientWindX(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindX "SimVarAmbientWindX(args)")
- [SimVarAmbientWindY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindY "SimVarAmbientWindY(args)")
- [SimVarAmbientWindZ(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindZ "SimVarAmbientWindZ(args)")
- [SimVarAnemometerPctRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAnemometerPctRpm "SimVarAnemometerPctRpm(args)")
- [SimVarAngleOfAttackIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAngleOfAttackIndicator "SimVarAngleOfAttackIndicator(args)")
- [SimVarAntiskidBrakesActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAntiskidBrakesActive "SimVarAntiskidBrakesActive(args)")
- [SimVarApplyHeatToSystems(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApplyHeatToSystems "SimVarApplyHeatToSystems(args)")
- [SimVarApuGeneratorActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuGeneratorActive "SimVarApuGeneratorActive(args)")
- [SimVarApuGeneratorSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuGeneratorSwitch "SimVarApuGeneratorSwitch(args)")
- [SimVarApuOnFireDetected(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuOnFireDetected "SimVarApuOnFireDetected(args)")
- [SimVarApuPctRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuPctRpm "SimVarApuPctRpm(args)")
- [SimVarApuPctStarter(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuPctStarter "SimVarApuPctStarter(args)")
- [SimVarApuVolts(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuVolts "SimVarApuVolts(args)")
- [SimVarArtificialGroundElevation(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarArtificialGroundElevation "SimVarArtificialGroundElevation(args)")
- [SimVarAtcAirline(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcAirline "SimVarAtcAirline(args)")
- [SimVarAtcFlightNumber(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcFlightNumber "SimVarAtcFlightNumber(args)")
- [SimVarAtcHeavy(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcHeavy "SimVarAtcHeavy(args)")
- [SimVarAtcId(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcId "SimVarAtcId(args)")
- [SimVarAtcModel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcModel "SimVarAtcModel(args)")
- [SimVarAtcSuggestedMinRwyLanding(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyLanding "SimVarAtcSuggestedMinRwyLanding(args)")
- [SimVarAtcSuggestedMinRwyTakeoff(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyTakeoff "SimVarAtcSuggestedMinRwyTakeoff(args)")
- [SimVarAtcType(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcType "SimVarAtcType(args)")
- [SimVarAttitudeBarsPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeBarsPosition "SimVarAttitudeBarsPosition(args)")
- [SimVarAttitudeCage(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeCage "SimVarAttitudeCage(args)")
- [SimVarAttitudeIndicatorBankDegrees(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeIndicatorBankDegrees "SimVarAttitudeIndicatorBankDegrees(args)")
- [SimVarAttitudeIndicatorPitchDegrees(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeIndicatorPitchDegrees "SimVarAttitudeIndicatorPitchDegrees(args)")
- [SimVarAutoBrakeSwitchCb(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutoBrakeSwitchCb "SimVarAutoBrakeSwitchCb(args)")
- [SimVarAutoCoordination(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutoCoordination "SimVarAutoCoordination(args)")
- [SimVarAutopilotAirspeedHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAirspeedHold "SimVarAutopilotAirspeedHold(args)")
- [SimVarAutopilotAirspeedHoldVar(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAirspeedHoldVar "SimVarAutopilotAirspeedHoldVar(args)")
- [SimVarAutopilotAltitudeLock(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAltitudeLock "SimVarAutopilotAltitudeLock(args)")
- [SimVarAutopilotAltitudeLockVar(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAltitudeLockVar "SimVarAutopilotAltitudeLockVar(args)")
- [SimVarAutopilotApproachHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotApproachHold "SimVarAutopilotApproachHold(args)")
- [SimVarAutopilotAttitudeHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAttitudeHold "SimVarAutopilotAttitudeHold(args)")
- [SimVarAutopilotAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAvailable "SimVarAutopilotAvailable(args)")
- [SimVarAutopilotBackcourseHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotBackcourseHold "SimVarAutopilotBackcourseHold(args)")
- [SimVarAutopilotFlightDirectorActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorActive "SimVarAutopilotFlightDirectorActive(args)")
- [SimVarAutopilotFlightDirectorBank(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorBank "SimVarAutopilotFlightDirectorBank(args)")
- [SimVarAutopilotFlightDirectorPitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorPitch "SimVarAutopilotFlightDirectorPitch(args)")
- [SimVarAutopilotGlideslopeHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotGlideslopeHold "SimVarAutopilotGlideslopeHold(args)")
- [SimVarAutopilotHeadingLock(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotHeadingLock "SimVarAutopilotHeadingLock(args)")
- [SimVarAutopilotHeadingLockDir(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotHeadingLockDir "SimVarAutopilotHeadingLockDir(args)")
- [SimVarAutopilotMachHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMachHold "SimVarAutopilotMachHold(args)")
- [SimVarAutopilotMachHoldVar(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMachHoldVar "SimVarAutopilotMachHoldVar(args)")
- [SimVarAutopilotMaster(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMaster "SimVarAutopilotMaster(args)")
- [SimVarAutopilotMaxBank(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMaxBank "SimVarAutopilotMaxBank(args)")
- [SimVarAutopilotNav1Lock(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotNav1Lock "SimVarAutopilotNav1Lock(args)")
- [SimVarAutopilotNavSelected(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotNavSelected "SimVarAutopilotNavSelected(args)")
- [SimVarAutopilotPitchHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotPitchHold "SimVarAutopilotPitchHold(args)")
- [SimVarAutopilotPitchHoldRef(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotPitchHoldRef "SimVarAutopilotPitchHoldRef(args)")
- [SimVarAutopilotRpmHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotRpmHold "SimVarAutopilotRpmHold(args)")
- [SimVarAutopilotRpmHoldVar(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotRpmHoldVar "SimVarAutopilotRpmHoldVar(args)")
- [SimVarAutopilotTakeoffPowerActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotTakeoffPowerActive "SimVarAutopilotTakeoffPowerActive(args)")
- [SimVarAutopilotThrottleArm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotThrottleArm "SimVarAutopilotThrottleArm(args)")
- [SimVarAutopilotVerticalHold(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotVerticalHold "SimVarAutopilotVerticalHold(args)")
- [SimVarAutopilotVerticalHoldVar(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotVerticalHoldVar "SimVarAutopilotVerticalHoldVar(args)")
- [SimVarAutopilotWingLeveler(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotWingLeveler "SimVarAutopilotWingLeveler(args)")
- [SimVarAutopilotYawDamper(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotYawDamper "SimVarAutopilotYawDamper(args)")
- [SimVarAutothrottleActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutothrottleActive "SimVarAutothrottleActive(args)")
- [SimVarAuxWheelRotationAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAuxWheelRotationAngle "SimVarAuxWheelRotationAngle(args)")
- [SimVarAuxWheelRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAuxWheelRpm "SimVarAuxWheelRpm(args)")
- [SimVarAvionicsMasterSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAvionicsMasterSwitch "SimVarAvionicsMasterSwitch(args)")
- [SimVarBarberPoleMach(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBarberPoleMach "SimVarBarberPoleMach(args)")
- [SimVarBarometerPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBarometerPressure "SimVarBarometerPressure(args)")
- [SimVarBetaDot(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBetaDot "SimVarBetaDot(args)")
- [SimVarBlastShieldPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBlastShieldPosition "SimVarBlastShieldPosition(args)")
- [SimVarBleedAirSourceControl(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBleedAirSourceControl "SimVarBleedAirSourceControl(args)")
- [SimVarBrakeDependentHydraulicPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeDependentHydraulicPressure "SimVarBrakeDependentHydraulicPressure(args)")
- [SimVarBrakeIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeIndicator "SimVarBrakeIndicator(args)")
- [SimVarBrakeLeftPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeLeftPosition "SimVarBrakeLeftPosition(args)")
- [SimVarBrakeParkingIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeParkingIndicator "SimVarBrakeParkingIndicator(args)")
- [SimVarBrakeParkingPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeParkingPosition "SimVarBrakeParkingPosition(args)")
- [SimVarBrakeRightPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeRightPosition "SimVarBrakeRightPosition(args)")
- [SimVarCabinNoSmokingAlertSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCabinNoSmokingAlertSwitch "SimVarCabinNoSmokingAlertSwitch(args)")
- [SimVarCabinSeatbeltsAlertSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCabinSeatbeltsAlertSwitch "SimVarCabinSeatbeltsAlertSwitch(args)")
- [SimVarCanopyOpen(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCanopyOpen "SimVarCanopyOpen(args)")
- [SimVarCarbHeatAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCarbHeatAvailable "SimVarCarbHeatAvailable(args)")
- [SimVarCategory(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCategory "SimVarCategory(args)")
- [SimVarCenterWheelRotationAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCenterWheelRotationAngle "SimVarCenterWheelRotationAngle(args)")
- [SimVarCenterWheelRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCenterWheelRpm "SimVarCenterWheelRpm(args)")
- [SimVarCgAftLimit(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgAftLimit "SimVarCgAftLimit(args)")
- [SimVarCgFwdLimit(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgFwdLimit "SimVarCgFwdLimit(args)")
- [SimVarCgMaxMach(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgMaxMach "SimVarCgMaxMach(args)")
- [SimVarCgMinMach(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgMinMach "SimVarCgMinMach(args)")
- [SimVarCgPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgPercent "SimVarCgPercent(args)")
- [SimVarCgPercentLateral(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgPercentLateral "SimVarCgPercentLateral(args)")
- [SimVarCircuitAutoBrakesOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutoBrakesOn "SimVarCircuitAutoBrakesOn(args)")
- [SimVarCircuitAutoFeatherOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutoFeatherOn "SimVarCircuitAutoFeatherOn(args)")
- [SimVarCircuitAutopilotOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutopilotOn "SimVarCircuitAutopilotOn(args)")
- [SimVarCircuitAvionicsOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAvionicsOn "SimVarCircuitAvionicsOn(args)")
- [SimVarCircuitFlapMotorOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitFlapMotorOn "SimVarCircuitFlapMotorOn(args)")
- [SimVarCircuitGearMotorOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGearMotorOn "SimVarCircuitGearMotorOn(args)")
- [SimVarCircuitGearWarningOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGearWarningOn "SimVarCircuitGearWarningOn(args)")
- [SimVarCircuitGeneralPanelOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGeneralPanelOn "SimVarCircuitGeneralPanelOn(args)")
- [SimVarCircuitHydraulicPumpOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitHydraulicPumpOn "SimVarCircuitHydraulicPumpOn(args)")
- [SimVarCircuitMarkerBeaconOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitMarkerBeaconOn "SimVarCircuitMarkerBeaconOn(args)")
- [SimVarCircuitPitotHeatOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitPitotHeatOn "SimVarCircuitPitotHeatOn(args)")
- [SimVarCircuitPropSyncOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitPropSyncOn "SimVarCircuitPropSyncOn(args)")
- [SimVarCircuitStandyVacuumOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitStandyVacuumOn "SimVarCircuitStandyVacuumOn(args)")
- [SimVarComActiveFrequency(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComActiveFrequency "SimVarComActiveFrequency(args)")
- [SimVarComAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComAvailable "SimVarComAvailable(args)")
- [SimVarComReceiveAll(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComReceiveAll "SimVarComReceiveAll(args)")
- [SimVarComRecieveAll(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComRecieveAll "SimVarComRecieveAll(args)")
- [SimVarComStandbyFrequency(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStandbyFrequency "SimVarComStandbyFrequency(args)")
- [SimVarComStatus(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStatus "SimVarComStatus(args)")
- [SimVarComTest(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComTest "SimVarComTest(args)")
- [SimVarComTransmit(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComTransmit "SimVarComTransmit(args)")
- [SimVarConcordeNoseAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeNoseAngle "SimVarConcordeNoseAngle(args)")
- [SimVarConcordeVisorNoseHandle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorNoseHandle "SimVarConcordeVisorNoseHandle(args)")
- [SimVarConcordeVisorPositionPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorPositionPercent "SimVarConcordeVisorPositionPercent(args)")
- [SimVarCrashFlag(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCrashFlag "SimVarCrashFlag(args)")
- [SimVarCrashSequence(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCrashSequence "SimVarCrashSequence(args)")
- [SimVarDecisionAltitudeMsl(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDecisionAltitudeMsl "SimVarDecisionAltitudeMsl(args)")
- [SimVarDecisionHeight(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDecisionHeight "SimVarDecisionHeight(args)")
- [SimVarDeltaHeadingRate(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDeltaHeadingRate "SimVarDeltaHeadingRate(args)")
- [SimVarDesignSpeedVc(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVc "SimVarDesignSpeedVc(args)")
- [SimVarDesignSpeedVs0(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVs0 "SimVarDesignSpeedVs0(args)")
- [SimVarDesignSpeedVs1(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVs1 "SimVarDesignSpeedVs1(args)")
- [SimVarDiskBankAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskBankAngle "SimVarDiskBankAngle(args)")
- [SimVarDiskBankPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskBankPct "SimVarDiskBankPct(args)")
- [SimVarDiskConingPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskConingPct "SimVarDiskConingPct(args)")
- [SimVarDiskPitchAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskPitchAngle "SimVarDiskPitchAngle(args)")
- [SimVarDiskPitchPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskPitchPct "SimVarDiskPitchPct(args)")
- [SimVarDmeSound(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDmeSound "SimVarDmeSound(args)")
- [SimVarDroppableObjectsCount(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsCount "SimVarDroppableObjectsCount(args)")
- [SimVarDroppableObjectsType(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsType "SimVarDroppableObjectsType(args)")
- [SimVarDroppableObjectsUiName(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsUiName "SimVarDroppableObjectsUiName(args)")
- [SimVarDynamicPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDynamicPressure "SimVarDynamicPressure(args)")
- [SimVarElectricalAvionicsBusAmps(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalAvionicsBusAmps "SimVarElectricalAvionicsBusAmps(args)")
- [SimVarElectricalAvionicsBusVoltage(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalAvionicsBusVoltage "SimVarElectricalAvionicsBusVoltage(args)")
- [SimVarElectricalBatteryBusAmps(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryBusAmps "SimVarElectricalBatteryBusAmps(args)")
- [SimVarElectricalBatteryBusVoltage(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryBusVoltage "SimVarElectricalBatteryBusVoltage(args)")
- [SimVarElectricalBatteryLoad(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryLoad "SimVarElectricalBatteryLoad(args)")
- [SimVarElectricalBatteryVoltage(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryVoltage "SimVarElectricalBatteryVoltage(args)")
- [SimVarElectricalGenaltBusAmps(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalGenaltBusAmps "SimVarElectricalGenaltBusAmps(args)")
- [SimVarElectricalGenaltBusVoltage(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalGenaltBusVoltage "SimVarElectricalGenaltBusVoltage(args)")
- [SimVarElectricalHotBatteryBusAmps(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalHotBatteryBusAmps "SimVarElectricalHotBatteryBusAmps(args)")
- [SimVarElectricalHotBatteryBusVoltage(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalHotBatteryBusVoltage "SimVarElectricalHotBatteryBusVoltage(args)")
- [SimVarElectricalMainBusAmps(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusAmps "SimVarElectricalMainBusAmps(args)")
- [SimVarElectricalMainBusVoltage(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusVoltage "SimVarElectricalMainBusVoltage(args)")
- [SimVarElectricalMasterBattery(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMasterBattery "SimVarElectricalMasterBattery(args)")
- [SimVarElectricalOldChargingAmps(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalOldChargingAmps "SimVarElectricalOldChargingAmps(args)")
- [SimVarElectricalTotalLoadAmps(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalTotalLoadAmps "SimVarElectricalTotalLoadAmps(args)")
- [SimVarElevatorDeflection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorDeflection "SimVarElevatorDeflection(args)")
- [SimVarElevatorDeflectionPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorDeflectionPct "SimVarElevatorDeflectionPct(args)")
- [SimVarElevatorPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorPosition "SimVarElevatorPosition(args)")
- [SimVarElevatorTrimIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimIndicator "SimVarElevatorTrimIndicator(args)")
- [SimVarElevatorTrimPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimPct "SimVarElevatorTrimPct(args)")
- [SimVarElevatorTrimPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimPosition "SimVarElevatorTrimPosition(args)")
- [SimVarElevonDeflection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevonDeflection "SimVarElevonDeflection(args)")
- [SimVarEmptyWeight(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeight "SimVarEmptyWeight(args)")
- [SimVarEmptyWeightCrossCoupledMoi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightCrossCoupledMoi "SimVarEmptyWeightCrossCoupledMoi(args)")
- [SimVarEmptyWeightPitchMoi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightPitchMoi "SimVarEmptyWeightPitchMoi(args)")
- [SimVarEmptyWeightRollMoi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightRollMoi "SimVarEmptyWeightRollMoi(args)")
- [SimVarEmptyWeightYawMoi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightYawMoi "SimVarEmptyWeightYawMoi(args)")
- [SimVarEngAntiIce(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngAntiIce "SimVarEngAntiIce(args)")
- [SimVarEngCombustion(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngCombustion "SimVarEngCombustion(args)")
- [SimVarEngCylinderHeadTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngCylinderHeadTemperature "SimVarEngCylinderHeadTemperature(args)")
- [SimVarEngElectricalLoad(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngElectricalLoad "SimVarEngElectricalLoad(args)")
- [SimVarEngExhaustGasTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngExhaustGasTemperature "SimVarEngExhaustGasTemperature(args)")
- [SimVarEngExhaustGasTemperatureGes(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngExhaustGasTemperatureGes "SimVarEngExhaustGasTemperatureGes(args)")
- [SimVarEngFailed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFailed "SimVarEngFailed(args)")
- [SimVarEngFuelFlowBugPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelFlowBugPosition "SimVarEngFuelFlowBugPosition(args)")
- [SimVarEngFuelFlowPph(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelFlowPph "SimVarEngFuelFlowPph(args)")
- [SimVarEngFuelPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelPressure "SimVarEngFuelPressure(args)")
- [SimVarEngHydraulicPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngHydraulicPressure "SimVarEngHydraulicPressure(args)")
- [SimVarEngHydraulicQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngHydraulicQuantity "SimVarEngHydraulicQuantity(args)")
- [SimVarEngManifoldPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngManifoldPressure "SimVarEngManifoldPressure(args)")
- [SimVarEngMaxRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngMaxRpm "SimVarEngMaxRpm(args)")
- [SimVarEngN1Rpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngN1Rpm "SimVarEngN1Rpm(args)")
- [SimVarEngN2Rpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngN2Rpm "SimVarEngN2Rpm(args)")
- [SimVarEngOilPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilPressure "SimVarEngOilPressure(args)")
- [SimVarEngOilQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilQuantity "SimVarEngOilQuantity(args)")
- [SimVarEngOilTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilTemperature "SimVarEngOilTemperature(args)")
- [SimVarEngOnFire(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOnFire "SimVarEngOnFire(args)")
- [SimVarEngPressureRatio(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngPressureRatio "SimVarEngPressureRatio(args)")
- [SimVarEngRotorRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRotorRpm "SimVarEngRotorRpm(args)")
- [SimVarEngRpmAnimationPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRpmAnimationPercent "SimVarEngRpmAnimationPercent(args)")
- [SimVarEngRpmScaler(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRpmScaler "SimVarEngRpmScaler(args)")
- [SimVarEngTorque(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTorque "SimVarEngTorque(args)")
- [SimVarEngTorquePercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTorquePercent "SimVarEngTorquePercent(args)")
- [SimVarEngTransmissionPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTransmissionPressure "SimVarEngTransmissionPressure(args)")
- [SimVarEngTransmissionTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTransmissionTemperature "SimVarEngTransmissionTemperature(args)")
- [SimVarEngTurbineTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTurbineTemperature "SimVarEngTurbineTemperature(args)")
- [SimVarEngVibration(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngVibration "SimVarEngVibration(args)")
- [SimVarEngineControlSelect(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineControlSelect "SimVarEngineControlSelect(args)")
- [SimVarEngineMixureAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineMixureAvailable "SimVarEngineMixureAvailable(args)")
- [SimVarEngineType(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineType "SimVarEngineType(args)")
- [SimVarEstimatedCruiseSpeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEstimatedCruiseSpeed "SimVarEstimatedCruiseSpeed(args)")
- [SimVarEstimatedFuelFlow(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEstimatedFuelFlow "SimVarEstimatedFuelFlow(args)")
- [SimVarExitOpen(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitOpen "SimVarExitOpen(args)")
- [SimVarExitPosx(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosx "SimVarExitPosx(args)")
- [SimVarExitPosy(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosy "SimVarExitPosy(args)")
- [SimVarExitPosz(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosz "SimVarExitPosz(args)")
- [SimVarExitType(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitType "SimVarExitType(args)")
- [SimVarEyepointPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEyepointPosition "SimVarEyepointPosition(args)")
- [SimVarFireBottleDischarged(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFireBottleDischarged "SimVarFireBottleDischarged(args)")
- [SimVarFireBottleSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFireBottleSwitch "SimVarFireBottleSwitch(args)")
- [SimVarFlapDamageBySpeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapDamageBySpeed "SimVarFlapDamageBySpeed(args)")
- [SimVarFlapSpeedExceeded(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapSpeedExceeded "SimVarFlapSpeedExceeded(args)")
- [SimVarFlapsAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsAvailable "SimVarFlapsAvailable(args)")
- [SimVarFlapsHandleIndex(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandleIndex "SimVarFlapsHandleIndex(args)")
- [SimVarFlapsHandlePercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandlePercent "SimVarFlapsHandlePercent(args)")
- [SimVarFlapsNumHandlePositions(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsNumHandlePositions "SimVarFlapsNumHandlePositions(args)")
- [SimVarFlyByWireElacFailed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireElacFailed "SimVarFlyByWireElacFailed(args)")
- [SimVarFlyByWireElacSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireElacSwitch "SimVarFlyByWireElacSwitch(args)")
- [SimVarFlyByWireFacFailed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireFacFailed "SimVarFlyByWireFacFailed(args)")
- [SimVarFlyByWireFacSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireFacSwitch "SimVarFlyByWireFacSwitch(args)")
- [SimVarFlyByWireSecFailed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireSecFailed "SimVarFlyByWireSecFailed(args)")
- [SimVarFlyByWireSecSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireSecSwitch "SimVarFlyByWireSecSwitch(args)")
- [SimVarFoldingWingLeftPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFoldingWingLeftPercent "SimVarFoldingWingLeftPercent(args)")
- [SimVarFoldingWingRightPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFoldingWingRightPercent "SimVarFoldingWingRightPercent(args)")
- [SimVarFuelCrossFeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelCrossFeed "SimVarFuelCrossFeed(args)")
- [SimVarFuelLeftCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelLeftCapacity "SimVarFuelLeftCapacity(args)")
- [SimVarFuelLeftQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelLeftQuantity "SimVarFuelLeftQuantity(args)")
- [SimVarFuelRightCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelRightCapacity "SimVarFuelRightCapacity(args)")
- [SimVarFuelRightQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelRightQuantity "SimVarFuelRightQuantity(args)")
- [SimVarFuelSelectedQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedQuantity "SimVarFuelSelectedQuantity(args)")
- [SimVarFuelSelectedQuantityPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedQuantityPercent "SimVarFuelSelectedQuantityPercent(args)")
- [SimVarFuelSelectedTransferMode(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedTransferMode "SimVarFuelSelectedTransferMode(args)")
- [SimVarFuelTankCenter2Capacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Capacity "SimVarFuelTankCenter2Capacity(args)")
- [SimVarFuelTankCenter2Level(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Level "SimVarFuelTankCenter2Level(args)")
- [SimVarFuelTankCenter2Quantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Quantity "SimVarFuelTankCenter2Quantity(args)")
- [SimVarFuelTankCenter3Capacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Capacity "SimVarFuelTankCenter3Capacity(args)")
- [SimVarFuelTankCenter3Level(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Level "SimVarFuelTankCenter3Level(args)")
- [SimVarFuelTankCenter3Quantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Quantity "SimVarFuelTankCenter3Quantity(args)")
- [SimVarFuelTankCenterCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterCapacity "SimVarFuelTankCenterCapacity(args)")
- [SimVarFuelTankCenterLevel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterLevel "SimVarFuelTankCenterLevel(args)")
- [SimVarFuelTankCenterQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterQuantity "SimVarFuelTankCenterQuantity(args)")
- [SimVarFuelTankExternal1Capacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Capacity "SimVarFuelTankExternal1Capacity(args)")
- [SimVarFuelTankExternal1Level(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Level "SimVarFuelTankExternal1Level(args)")
- [SimVarFuelTankExternal1Quantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Quantity "SimVarFuelTankExternal1Quantity(args)")
- [SimVarFuelTankExternal2Capacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Capacity "SimVarFuelTankExternal2Capacity(args)")
- [SimVarFuelTankExternal2Level(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Level "SimVarFuelTankExternal2Level(args)")
- [SimVarFuelTankExternal2Quantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Quantity "SimVarFuelTankExternal2Quantity(args)")
- [SimVarFuelTankLeftAuxCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxCapacity "SimVarFuelTankLeftAuxCapacity(args)")
- [SimVarFuelTankLeftAuxLevel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxLevel "SimVarFuelTankLeftAuxLevel(args)")
- [SimVarFuelTankLeftAuxQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxQuantity "SimVarFuelTankLeftAuxQuantity(args)")
- [SimVarFuelTankLeftMainCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainCapacity "SimVarFuelTankLeftMainCapacity(args)")
- [SimVarFuelTankLeftMainLevel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainLevel "SimVarFuelTankLeftMainLevel(args)")
- [SimVarFuelTankLeftMainQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainQuantity "SimVarFuelTankLeftMainQuantity(args)")
- [SimVarFuelTankLeftTipCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipCapacity "SimVarFuelTankLeftTipCapacity(args)")
- [SimVarFuelTankLeftTipLevel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipLevel "SimVarFuelTankLeftTipLevel(args)")
- [SimVarFuelTankLeftTipQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipQuantity "SimVarFuelTankLeftTipQuantity(args)")
- [SimVarFuelTankRightAuxCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxCapacity "SimVarFuelTankRightAuxCapacity(args)")
- [SimVarFuelTankRightAuxLevel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxLevel "SimVarFuelTankRightAuxLevel(args)")
- [SimVarFuelTankRightAuxQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxQuantity "SimVarFuelTankRightAuxQuantity(args)")
- [SimVarFuelTankRightMainCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainCapacity "SimVarFuelTankRightMainCapacity(args)")
- [SimVarFuelTankRightMainLevel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainLevel "SimVarFuelTankRightMainLevel(args)")
- [SimVarFuelTankRightMainQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainQuantity "SimVarFuelTankRightMainQuantity(args)")
- [SimVarFuelTankRightTipCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipCapacity "SimVarFuelTankRightTipCapacity(args)")
- [SimVarFuelTankRightTipLevel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipLevel "SimVarFuelTankRightTipLevel(args)")
- [SimVarFuelTankRightTipQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipQuantity "SimVarFuelTankRightTipQuantity(args)")
- [SimVarFuelTankSelector(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankSelector "SimVarFuelTankSelector(args)")
- [SimVarFuelTotalCapacity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalCapacity "SimVarFuelTotalCapacity(args)")
- [SimVarFuelTotalQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalQuantity "SimVarFuelTotalQuantity(args)")
- [SimVarFuelTotalQuantityWeight(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalQuantityWeight "SimVarFuelTotalQuantityWeight(args)")
- [SimVarFuelWeightPerGallon(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelWeightPerGallon "SimVarFuelWeightPerGallon(args)")
- [SimVarFullThrottleThrustToWeightRatio(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFullThrottleThrustToWeightRatio "SimVarFullThrottleThrustToWeightRatio(args)")
- [SimVarGForce(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGForce "SimVarGForce(args)")
- [SimVarGearAnimationPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAnimationPosition "SimVarGearAnimationPosition(args)")
- [SimVarGearAuxPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxPosition "SimVarGearAuxPosition(args)")
- [SimVarGearAuxSteerAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxSteerAngle "SimVarGearAuxSteerAngle(args)")
- [SimVarGearAuxSteerAnglePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxSteerAnglePct "SimVarGearAuxSteerAnglePct(args)")
- [SimVarGearCenterPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterPosition "SimVarGearCenterPosition(args)")
- [SimVarGearCenterSteerAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterSteerAngle "SimVarGearCenterSteerAngle(args)")
- [SimVarGearCenterSteerAnglePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterSteerAnglePct "SimVarGearCenterSteerAnglePct(args)")
- [SimVarGearDamageBySpeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearDamageBySpeed "SimVarGearDamageBySpeed(args)")
- [SimVarGearEmergencyHandlePosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearEmergencyHandlePosition "SimVarGearEmergencyHandlePosition(args)")
- [SimVarGearHandlePosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHandlePosition "SimVarGearHandlePosition(args)")
- [SimVarGearHydraulicPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHydraulicPressure "SimVarGearHydraulicPressure(args)")
- [SimVarGearLeftPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftPosition "SimVarGearLeftPosition(args)")
- [SimVarGearLeftSteerAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftSteerAngle "SimVarGearLeftSteerAngle(args)")
- [SimVarGearLeftSteerAnglePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftSteerAnglePct "SimVarGearLeftSteerAnglePct(args)")
- [SimVarGearPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearPosition "SimVarGearPosition(args)")
- [SimVarGearRightPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightPosition "SimVarGearRightPosition(args)")
- [SimVarGearRightSteerAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightSteerAngle "SimVarGearRightSteerAngle(args)")
- [SimVarGearRightSteerAnglePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightSteerAnglePct "SimVarGearRightSteerAnglePct(args)")
- [SimVarGearSpeedExceeded(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSpeedExceeded "SimVarGearSpeedExceeded(args)")
- [SimVarGearSteerAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSteerAngle "SimVarGearSteerAngle(args)")
- [SimVarGearSteerAnglePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSteerAnglePct "SimVarGearSteerAnglePct(args)")
- [SimVarGearTailPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearTailPosition "SimVarGearTailPosition(args)")
- [SimVarGearTotalPctExtended(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearTotalPctExtended "SimVarGearTotalPctExtended(args)")
- [SimVarGearWarning(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearWarning "SimVarGearWarning(args)")
- [SimVarGeneralEngAntiIcePosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngAntiIcePosition "SimVarGeneralEngAntiIcePosition(args)")
- [SimVarGeneralEngCombustion(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngCombustion "SimVarGeneralEngCombustion(args)")
- [SimVarGeneralEngCombustionSoundPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngCombustionSoundPercent "SimVarGeneralEngCombustionSoundPercent(args)")
- [SimVarGeneralEngDamagePercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngDamagePercent "SimVarGeneralEngDamagePercent(args)")
- [SimVarGeneralEngElapsedTime(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngElapsedTime "SimVarGeneralEngElapsedTime(args)")
- [SimVarGeneralEngExhaustGasTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngExhaustGasTemperature "SimVarGeneralEngExhaustGasTemperature(args)")
- [SimVarGeneralEngFailed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFailed "SimVarGeneralEngFailed(args)")
- [SimVarGeneralEngFuelPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPressure "SimVarGeneralEngFuelPressure(args)")
- [SimVarGeneralEngFuelPumpOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPumpOn "SimVarGeneralEngFuelPumpOn(args)")
- [SimVarGeneralEngFuelPumpSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPumpSwitch "SimVarGeneralEngFuelPumpSwitch(args)")
- [SimVarGeneralEngFuelUsedSinceStart(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelUsedSinceStart "SimVarGeneralEngFuelUsedSinceStart(args)")
- [SimVarGeneralEngFuelValve(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelValve "SimVarGeneralEngFuelValve(args)")
- [SimVarGeneralEngGeneratorActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngGeneratorActive "SimVarGeneralEngGeneratorActive(args)")
- [SimVarGeneralEngGeneratorSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngGeneratorSwitch "SimVarGeneralEngGeneratorSwitch(args)")
- [SimVarGeneralEngMasterAlternator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMasterAlternator "SimVarGeneralEngMasterAlternator(args)")
- [SimVarGeneralEngMaxReachedRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMaxReachedRpm "SimVarGeneralEngMaxReachedRpm(args)")
- [SimVarGeneralEngMixtureLeverPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMixtureLeverPosition "SimVarGeneralEngMixtureLeverPosition(args)")
- [SimVarGeneralEngOilLeakedPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilLeakedPercent "SimVarGeneralEngOilLeakedPercent(args)")
- [SimVarGeneralEngOilPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilPressure "SimVarGeneralEngOilPressure(args)")
- [SimVarGeneralEngOilTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilTemperature "SimVarGeneralEngOilTemperature(args)")
- [SimVarGeneralEngPctMaxRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngPctMaxRpm "SimVarGeneralEngPctMaxRpm(args)")
- [SimVarGeneralEngPropellerLeverPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngPropellerLeverPosition "SimVarGeneralEngPropellerLeverPosition(args)")
- [SimVarGeneralEngRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngRpm "SimVarGeneralEngRpm(args)")
- [SimVarGeneralEngStarter(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngStarter "SimVarGeneralEngStarter(args)")
- [SimVarGeneralEngStarterActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngStarterActive "SimVarGeneralEngStarterActive(args)")
- [SimVarGeneralEngThrottleLeverPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngThrottleLeverPosition "SimVarGeneralEngThrottleLeverPosition(args)")
- [SimVarGenerator(iFace)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGenerator "SimVarGenerator(iFace)")
- [SimVarGpsApproachAirportId(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachAirportId "SimVarGpsApproachAirportId(args)")
- [SimVarGpsApproachApproachId(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachId "SimVarGpsApproachApproachId(args)")
- [SimVarGpsApproachApproachIndex(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachIndex "SimVarGpsApproachApproachIndex(args)")
- [SimVarGpsApproachApproachType(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachType "SimVarGpsApproachApproachType(args)")
- [SimVarGpsApproachIsFinal(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsFinal "SimVarGpsApproachIsFinal(args)")
- [SimVarGpsApproachIsMissed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsMissed "SimVarGpsApproachIsMissed(args)")
- [SimVarGpsApproachIsWpRunway(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsWpRunway "SimVarGpsApproachIsWpRunway(args)")
- [SimVarGpsApproachMode(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachMode "SimVarGpsApproachMode(args)")
- [SimVarGpsApproachSegmentType(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachSegmentType "SimVarGpsApproachSegmentType(args)")
- [SimVarGpsApproachTimezoneDeviation(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTimezoneDeviation "SimVarGpsApproachTimezoneDeviation(args)")
- [SimVarGpsApproachTransitionId(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTransitionId "SimVarGpsApproachTransitionId(args)")
- [SimVarGpsApproachTransitionIndex(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTransitionIndex "SimVarGpsApproachTransitionIndex(args)")
- [SimVarGpsApproachWpCount(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpCount "SimVarGpsApproachWpCount(args)")
- [SimVarGpsApproachWpIndex(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpIndex "SimVarGpsApproachWpIndex(args)")
- [SimVarGpsApproachWpType(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpType "SimVarGpsApproachWpType(args)")
- [SimVarGpsCourseToSteer(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsCourseToSteer "SimVarGpsCourseToSteer(args)")
- [SimVarGpsDrivesNav1(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsDrivesNav1 "SimVarGpsDrivesNav1(args)")
- [SimVarGpsEta(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsEta "SimVarGpsEta(args)")
- [SimVarGpsEte(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsEte "SimVarGpsEte(args)")
- [SimVarGpsFlightPlanWpCount(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsFlightPlanWpCount "SimVarGpsFlightPlanWpCount(args)")
- [SimVarGpsFlightPlanWpIndex(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsFlightPlanWpIndex "SimVarGpsFlightPlanWpIndex(args)")
- [SimVarGpsGroundMagneticTrack(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundMagneticTrack "SimVarGpsGroundMagneticTrack(args)")
- [SimVarGpsGroundSpeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundSpeed "SimVarGpsGroundSpeed(args)")
- [SimVarGpsGroundTrueHeading(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundTrueHeading "SimVarGpsGroundTrueHeading(args)")
- [SimVarGpsGroundTrueTrack(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundTrueTrack "SimVarGpsGroundTrueTrack(args)")
- [SimVarGpsIsActiveFlightPlan(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveFlightPlan "SimVarGpsIsActiveFlightPlan(args)")
- [SimVarGpsIsActiveWayPoint(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveWayPoint "SimVarGpsIsActiveWayPoint(args)")
- [SimVarGpsIsActiveWpLocked(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveWpLocked "SimVarGpsIsActiveWpLocked(args)")
- [SimVarGpsIsApproachActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsApproachActive "SimVarGpsIsApproachActive(args)")
- [SimVarGpsIsApproachLoaded(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsApproachLoaded "SimVarGpsIsApproachLoaded(args)")
- [SimVarGpsIsArrived(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsArrived "SimVarGpsIsArrived(args)")
- [SimVarGpsIsDirecttoFlightplan(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsDirecttoFlightplan "SimVarGpsIsDirecttoFlightplan(args)")
- [SimVarGpsMagvar(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsMagvar "SimVarGpsMagvar(args)")
- [SimVarGpsPositionAlt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionAlt "SimVarGpsPositionAlt(args)")
- [SimVarGpsPositionLat(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionLat "SimVarGpsPositionLat(args)")
- [SimVarGpsPositionLon(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionLon "SimVarGpsPositionLon(args)")
- [SimVarGpsTargetAltitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsTargetAltitude "SimVarGpsTargetAltitude(args)")
- [SimVarGpsTargetDistance(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsTargetDistance "SimVarGpsTargetDistance(args)")
- [SimVarGpsWpBearing(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpBearing "SimVarGpsWpBearing(args)")
- [SimVarGpsWpCrossTrk(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpCrossTrk "SimVarGpsWpCrossTrk(args)")
- [SimVarGpsWpDesiredTrack(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpDesiredTrack "SimVarGpsWpDesiredTrack(args)")
- [SimVarGpsWpDistance(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpDistance "SimVarGpsWpDistance(args)")
- [SimVarGpsWpEta(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpEta "SimVarGpsWpEta(args)")
- [SimVarGpsWpEte(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpEte "SimVarGpsWpEte(args)")
- [SimVarGpsWpNextAlt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextAlt "SimVarGpsWpNextAlt(args)")
- [SimVarGpsWpNextId(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextId "SimVarGpsWpNextId(args)")
- [SimVarGpsWpNextLat(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextLat "SimVarGpsWpNextLat(args)")
- [SimVarGpsWpNextLon(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextLon "SimVarGpsWpNextLon(args)")
- [SimVarGpsWpPrevAlt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevAlt "SimVarGpsWpPrevAlt(args)")
- [SimVarGpsWpPrevId(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevId "SimVarGpsWpPrevId(args)")
- [SimVarGpsWpPrevLat(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevLat "SimVarGpsWpPrevLat(args)")
- [SimVarGpsWpPrevLon(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevLon "SimVarGpsWpPrevLon(args)")
- [SimVarGpsWpPrevValid(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevValid "SimVarGpsWpPrevValid(args)")
- [SimVarGpsWpTrackAngleError(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrackAngleError "SimVarGpsWpTrackAngleError(args)")
- [SimVarGpsWpTrueBearing(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrueBearing "SimVarGpsWpTrueBearing(args)")
- [SimVarGpsWpTrueReqHdg(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrueReqHdg "SimVarGpsWpTrueReqHdg(args)")
- [SimVarGpsWpVerticalSpeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpVerticalSpeed "SimVarGpsWpVerticalSpeed(args)")
- [SimVarGpwsSystemActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpwsSystemActive "SimVarGpwsSystemActive(args)")
- [SimVarGpwsWarning(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpwsWarning "SimVarGpwsWarning(args)")
- [SimVarGroundAltitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGroundAltitude "SimVarGroundAltitude(args)")
- [SimVarGroundVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGroundVelocity "SimVarGroundVelocity(args)")
- [SimVarGyroDriftError(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGyroDriftError "SimVarGyroDriftError(args)")
- [SimVarHeadingIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHeadingIndicator "SimVarHeadingIndicator(args)")
- [SimVarHoldbackBarInstalled(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHoldbackBarInstalled "SimVarHoldbackBarInstalled(args)")
- [SimVarHsiBearing(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiBearing "SimVarHsiBearing(args)")
- [SimVarHsiBearingValid(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiBearingValid "SimVarHsiBearingValid(args)")
- [SimVarHsiCdiNeedle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiCdiNeedle "SimVarHsiCdiNeedle(args)")
- [SimVarHsiCdiNeedleValid(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiCdiNeedleValid "SimVarHsiCdiNeedleValid(args)")
- [SimVarHsiDistance(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiDistance "SimVarHsiDistance(args)")
- [SimVarHsiGsiNeedle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiGsiNeedle "SimVarHsiGsiNeedle(args)")
- [SimVarHsiGsiNeedleValid(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiGsiNeedleValid "SimVarHsiGsiNeedleValid(args)")
- [SimVarHsiHasLocalizer(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiHasLocalizer "SimVarHsiHasLocalizer(args)")
- [SimVarHsiSpeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiSpeed "SimVarHsiSpeed(args)")
- [SimVarHsiStationIdent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiStationIdent "SimVarHsiStationIdent(args)")
- [SimVarHsiTfFlags(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiTfFlags "SimVarHsiTfFlags(args)")
- [SimVarHydraulicPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicPressure "SimVarHydraulicPressure(args)")
- [SimVarHydraulicReservoirPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicReservoirPercent "SimVarHydraulicReservoirPercent(args)")
- [SimVarHydraulicSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicSwitch "SimVarHydraulicSwitch(args)")
- [SimVarHydraulicSystemIntegrity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicSystemIntegrity "SimVarHydraulicSystemIntegrity(args)")
- [SimVarIncidenceAlpha(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIncidenceAlpha "SimVarIncidenceAlpha(args)")
- [SimVarIncidenceBeta(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIncidenceBeta "SimVarIncidenceBeta(args)")
- [SimVarIndicatedAltitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIndicatedAltitude "SimVarIndicatedAltitude(args)")
- [SimVarInductorCompassHeadingRef(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInductorCompassHeadingRef "SimVarInductorCompassHeadingRef(args)")
- [SimVarInductorCompassPercentDeviation(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInductorCompassPercentDeviation "SimVarInductorCompassPercentDeviation(args)")
- [SimVarInnerMarker(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInnerMarker "SimVarInnerMarker(args)")
- [SimVarInnerMarkerLatlonalt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInnerMarkerLatlonalt "SimVarInnerMarkerLatlonalt(args)")
- [SimVarIsAltitudeFreezeOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAltitudeFreezeOn "SimVarIsAltitudeFreezeOn(args)")
- [SimVarIsAttachedToSling(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAttachedToSling "SimVarIsAttachedToSling(args)")
- [SimVarIsAttitudeFreezeOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAttitudeFreezeOn "SimVarIsAttitudeFreezeOn(args)")
- [SimVarIsGearFloats(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearFloats "SimVarIsGearFloats(args)")
- [SimVarIsGearRetractable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearRetractable "SimVarIsGearRetractable(args)")
- [SimVarIsGearSkids(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearSkids "SimVarIsGearSkids(args)")
- [SimVarIsGearSkis(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearSkis "SimVarIsGearSkis(args)")
- [SimVarIsGearWheels(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearWheels "SimVarIsGearWheels(args)")
- [SimVarIsLatitudeLongitudeFreezeOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsLatitudeLongitudeFreezeOn "SimVarIsLatitudeLongitudeFreezeOn(args)")
- [SimVarIsSlewActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsSlewActive "SimVarIsSlewActive(args)")
- [SimVarIsSlewAllowed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsSlewAllowed "SimVarIsSlewAllowed(args)")
- [SimVarIsTailDragger(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsTailDragger "SimVarIsTailDragger(args)")
- [SimVarIsUserSim(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsUserSim "SimVarIsUserSim(args)")
- [SimVarKohlsmanSettingHg(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarKohlsmanSettingHg "SimVarKohlsmanSettingHg(args)")
- [SimVarKohlsmanSettingMb(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarKohlsmanSettingMb "SimVarKohlsmanSettingMb(args)")
- [SimVarLandingLightPbh(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLandingLightPbh "SimVarLandingLightPbh(args)")
- [SimVarLaunchbarPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLaunchbarPosition "SimVarLaunchbarPosition(args)")
- [SimVarLeadingEdgeFlapsLeftAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsLeftAngle "SimVarLeadingEdgeFlapsLeftAngle(args)")
- [SimVarLeadingEdgeFlapsLeftPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsLeftPercent "SimVarLeadingEdgeFlapsLeftPercent(args)")
- [SimVarLeadingEdgeFlapsRightAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsRightAngle "SimVarLeadingEdgeFlapsRightAngle(args)")
- [SimVarLeadingEdgeFlapsRightPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsRightPercent "SimVarLeadingEdgeFlapsRightPercent(args)")
- [SimVarLeftWheelRotationAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeftWheelRotationAngle "SimVarLeftWheelRotationAngle(args)")
- [SimVarLeftWheelRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeftWheelRpm "SimVarLeftWheelRpm(args)")
- [SimVarLightBeacon(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBeacon "SimVarLightBeacon(args)")
- [SimVarLightBeaconOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBeaconOn "SimVarLightBeaconOn(args)")
- [SimVarLightBrakeOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBrakeOn "SimVarLightBrakeOn(args)")
- [SimVarLightCabin(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightCabin "SimVarLightCabin(args)")
- [SimVarLightCabinOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightCabinOn "SimVarLightCabinOn(args)")
- [SimVarLightHeadOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightHeadOn "SimVarLightHeadOn(args)")
- [SimVarLightLanding(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLanding "SimVarLightLanding(args)")
- [SimVarLightLandingOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLandingOn "SimVarLightLandingOn(args)")
- [SimVarLightLogo(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLogo "SimVarLightLogo(args)")
- [SimVarLightLogoOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLogoOn "SimVarLightLogoOn(args)")
- [SimVarLightNav(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightNav "SimVarLightNav(args)")
- [SimVarLightNavOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightNavOn "SimVarLightNavOn(args)")
- [SimVarLightOnStates(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightOnStates "SimVarLightOnStates(args)")
- [SimVarLightPanel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightPanel "SimVarLightPanel(args)")
- [SimVarLightPanelOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightPanelOn "SimVarLightPanelOn(args)")
- [SimVarLightRecognition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightRecognition "SimVarLightRecognition(args)")
- [SimVarLightRecognitionOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightRecognitionOn "SimVarLightRecognitionOn(args)")
- [SimVarLightStates(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStates "SimVarLightStates(args)")
- [SimVarLightStrobe(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStrobe "SimVarLightStrobe(args)")
- [SimVarLightStrobeOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStrobeOn "SimVarLightStrobeOn(args)")
- [SimVarLightTaxi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightTaxi "SimVarLightTaxi(args)")
- [SimVarLightTaxiOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightTaxiOn "SimVarLightTaxiOn(args)")
- [SimVarLightWing(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightWing "SimVarLightWing(args)")
- [SimVarLightWingOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightWingOn "SimVarLightWingOn(args)")
- [SimVarLinearClAlpha(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLinearClAlpha "SimVarLinearClAlpha(args)")
- [SimVarLocalDayOfMonth(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfMonth "SimVarLocalDayOfMonth(args)")
- [SimVarLocalDayOfWeek(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfWeek "SimVarLocalDayOfWeek(args)")
- [SimVarLocalDayOfYear(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfYear "SimVarLocalDayOfYear(args)")
- [SimVarLocalMonthOfYear(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalMonthOfYear "SimVarLocalMonthOfYear(args)")
- [SimVarLocalTime(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalTime "SimVarLocalTime(args)")
- [SimVarLocalYear(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalYear "SimVarLocalYear(args)")
- [SimVarMachMaxOperate(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMachMaxOperate "SimVarMachMaxOperate(args)")
- [SimVarMagneticCompass(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMagneticCompass "SimVarMagneticCompass(args)")
- [SimVarMagvar(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMagvar "SimVarMagvar(args)")
- [SimVarManualFuelPumpHandle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualFuelPumpHandle "SimVarManualFuelPumpHandle(args)")
- [SimVarManualInstrumentLights(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualInstrumentLights "SimVarManualInstrumentLights(args)")
- [SimVarMarkerBeaconState(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMarkerBeaconState "SimVarMarkerBeaconState(args)")
- [SimVarMarkerSound(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMarkerSound "SimVarMarkerSound(args)")
- [SimVarMasterIgnitionSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMasterIgnitionSwitch "SimVarMasterIgnitionSwitch(args)")
- [SimVarMaxGForce(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxGForce "SimVarMaxGForce(args)")
- [SimVarMaxGrossWeight(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxGrossWeight "SimVarMaxGrossWeight(args)")
- [SimVarMaxRatedEngineRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxRatedEngineRpm "SimVarMaxRatedEngineRpm(args)")
- [SimVarMiddleMarker(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMiddleMarker "SimVarMiddleMarker(args)")
- [SimVarMiddleMarkerLatlonalt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMiddleMarkerLatlonalt "SimVarMiddleMarkerLatlonalt(args)")
- [SimVarMinDragVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMinDragVelocity "SimVarMinDragVelocity(args)")
- [SimVarMinGForce(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMinGForce "SimVarMinGForce(args)")
- [SimVarNavActiveFrequency(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavActiveFrequency "SimVarNavActiveFrequency(args)")
- [SimVarNavAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavAvailable "SimVarNavAvailable(args)")
- [SimVarNavBackCourseFlags(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavBackCourseFlags "SimVarNavBackCourseFlags(args)")
- [SimVarNavCdi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavCdi "SimVarNavCdi(args)")
- [SimVarNavCodes(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavCodes "SimVarNavCodes(args)")
- [SimVarNavDme(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDme "SimVarNavDme(args)")
- [SimVarNavDmeLatlonalt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDmeLatlonalt "SimVarNavDmeLatlonalt(args)")
- [SimVarNavDmespeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDmespeed "SimVarNavDmespeed(args)")
- [SimVarNavGlideSlope(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGlideSlope "SimVarNavGlideSlope(args)")
- [SimVarNavGlideSlopeError(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGlideSlopeError "SimVarNavGlideSlopeError(args)")
- [SimVarNavGsFlag(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsFlag "SimVarNavGsFlag(args)")
- [SimVarNavGsLatlonalt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsLatlonalt "SimVarNavGsLatlonalt(args)")
- [SimVarNavGsLlaf64(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsLlaf64 "SimVarNavGsLlaf64(args)")
- [SimVarNavGsi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsi "SimVarNavGsi(args)")
- [SimVarNavHasDme(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasDme "SimVarNavHasDme(args)")
- [SimVarNavHasGlideSlope(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasGlideSlope "SimVarNavHasGlideSlope(args)")
- [SimVarNavHasLocalizer(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasLocalizer "SimVarNavHasLocalizer(args)")
- [SimVarNavHasNav(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasNav "SimVarNavHasNav(args)")
- [SimVarNavIdent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavIdent "SimVarNavIdent(args)")
- [SimVarNavLocalizer(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavLocalizer "SimVarNavLocalizer(args)")
- [SimVarNavMagvar(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavMagvar "SimVarNavMagvar(args)")
- [SimVarNavName(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavName "SimVarNavName(args)")
- [SimVarNavObs(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavObs "SimVarNavObs(args)")
- [SimVarNavRadial(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRadial "SimVarNavRadial(args)")
- [SimVarNavRadialError(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRadialError "SimVarNavRadialError(args)")
- [SimVarNavRawGlideSlope(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRawGlideSlope "SimVarNavRawGlideSlope(args)")
- [SimVarNavRelativeBearingToStation(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRelativeBearingToStation "SimVarNavRelativeBearingToStation(args)")
- [SimVarNavSignal(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavSignal "SimVarNavSignal(args)")
- [SimVarNavSound(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavSound "SimVarNavSound(args)")
- [SimVarNavStandbyFrequency(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavStandbyFrequency "SimVarNavStandbyFrequency(args)")
- [SimVarNavTofrom(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavTofrom "SimVarNavTofrom(args)")
- [SimVarNavVorLatlonalt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavVorLatlonalt "SimVarNavVorLatlonalt(args)")
- [SimVarNavVorLlaf64(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavVorLlaf64 "SimVarNavVorLlaf64(args)")
- [SimVarNumFuelSelectors(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumFuelSelectors "SimVarNumFuelSelectors(args)")
- [SimVarNumberOfCatapults(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumberOfCatapults "SimVarNumberOfCatapults(args)")
- [SimVarNumberOfEngines(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumberOfEngines "SimVarNumberOfEngines(args)")
- [SimVarOuterMarker(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOuterMarker "SimVarOuterMarker(args)")
- [SimVarOuterMarkerLatlonalt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOuterMarkerLatlonalt "SimVarOuterMarkerLatlonalt(args)")
- [SimVarOverspeedWarning(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOverspeedWarning "SimVarOverspeedWarning(args)")
- [SimVarPanelAntiIceSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPanelAntiIceSwitch "SimVarPanelAntiIceSwitch(args)")
- [SimVarPanelAutoFeatherSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPanelAutoFeatherSwitch "SimVarPanelAutoFeatherSwitch(args)")
- [SimVarPartialPanelAdf(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAdf "SimVarPartialPanelAdf(args)")
- [SimVarPartialPanelAirspeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAirspeed "SimVarPartialPanelAirspeed(args)")
- [SimVarPartialPanelAltimeter(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAltimeter "SimVarPartialPanelAltimeter(args)")
- [SimVarPartialPanelAttitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAttitude "SimVarPartialPanelAttitude(args)")
- [SimVarPartialPanelAvionics(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAvionics "SimVarPartialPanelAvionics(args)")
- [SimVarPartialPanelComm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelComm "SimVarPartialPanelComm(args)")
- [SimVarPartialPanelCompass(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelCompass "SimVarPartialPanelCompass(args)")
- [SimVarPartialPanelElectrical(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelElectrical "SimVarPartialPanelElectrical(args)")
- [SimVarPartialPanelEngine(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelEngine "SimVarPartialPanelEngine(args)")
- [SimVarPartialPanelFuelIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelFuelIndicator "SimVarPartialPanelFuelIndicator(args)")
- [SimVarPartialPanelHeading(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelHeading "SimVarPartialPanelHeading(args)")
- [SimVarPartialPanelNav(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelNav "SimVarPartialPanelNav(args)")
- [SimVarPartialPanelPitot(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelPitot "SimVarPartialPanelPitot(args)")
- [SimVarPartialPanelTransponder(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelTransponder "SimVarPartialPanelTransponder(args)")
- [SimVarPartialPanelTurnCoordinator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelTurnCoordinator "SimVarPartialPanelTurnCoordinator(args)")
- [SimVarPartialPanelVacuum(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelVacuum "SimVarPartialPanelVacuum(args)")
- [SimVarPartialPanelVerticalVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelVerticalVelocity "SimVarPartialPanelVerticalVelocity(args)")
- [SimVarPayloadStationCount(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationCount "SimVarPayloadStationCount(args)")
- [SimVarPayloadStationName(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationName "SimVarPayloadStationName(args)")
- [SimVarPayloadStationNumSimobjects(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationNumSimobjects "SimVarPayloadStationNumSimobjects(args)")
- [SimVarPayloadStationObject(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationObject "SimVarPayloadStationObject(args)")
- [SimVarPayloadStationWeight(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationWeight "SimVarPayloadStationWeight(args)")
- [SimVarPitotHeat(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPitotHeat "SimVarPitotHeat(args)")
- [SimVarPitotIcePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPitotIcePct "SimVarPitotIcePct(args)")
- [SimVarPlaneAltAboveGround(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneAltAboveGround "SimVarPlaneAltAboveGround(args)")
- [SimVarPlaneAltitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneAltitude "SimVarPlaneAltitude(args)")
- [SimVarPlaneBankDegrees(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneBankDegrees "SimVarPlaneBankDegrees(args)")
- [SimVarPlaneHeadingDegreesGyro(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesGyro "SimVarPlaneHeadingDegreesGyro(args)")
- [SimVarPlaneHeadingDegreesMagnetic(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesMagnetic "SimVarPlaneHeadingDegreesMagnetic(args)")
- [SimVarPlaneHeadingDegreesTrue(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesTrue "SimVarPlaneHeadingDegreesTrue(args)")
- [SimVarPlaneLatitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneLatitude "SimVarPlaneLatitude(args)")
- [SimVarPlaneLongitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneLongitude "SimVarPlaneLongitude(args)")
- [SimVarPlanePitchDegrees(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlanePitchDegrees "SimVarPlanePitchDegrees(args)")
- [SimVarPressureAltitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressureAltitude "SimVarPressureAltitude(args)")
- [SimVarPressurizationCabinAltitude(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitude "SimVarPressurizationCabinAltitude(args)")
- [SimVarPressurizationCabinAltitudeGoal(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitudeGoal "SimVarPressurizationCabinAltitudeGoal(args)")
- [SimVarPressurizationCabinAltitudeRate(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitudeRate "SimVarPressurizationCabinAltitudeRate(args)")
- [SimVarPressurizationDumpSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationDumpSwitch "SimVarPressurizationDumpSwitch(args)")
- [SimVarPressurizationPressureDifferential(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationPressureDifferential "SimVarPressurizationPressureDifferential(args)")
- [SimVarPropAutoCruiseActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropAutoCruiseActive "SimVarPropAutoCruiseActive(args)")
- [SimVarPropAutoFeatherArmed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropAutoFeatherArmed "SimVarPropAutoFeatherArmed(args)")
- [SimVarPropBeta(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBeta "SimVarPropBeta(args)")
- [SimVarPropBetaMax(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMax "SimVarPropBetaMax(args)")
- [SimVarPropBetaMin(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMin "SimVarPropBetaMin(args)")
- [SimVarPropBetaMinReverse(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMinReverse "SimVarPropBetaMinReverse(args)")
- [SimVarPropDeiceSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropDeiceSwitch "SimVarPropDeiceSwitch(args)")
- [SimVarPropFeatherSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeatherSwitch "SimVarPropFeatherSwitch(args)")
- [SimVarPropFeathered(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeathered "SimVarPropFeathered(args)")
- [SimVarPropFeatheringInhibit(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeatheringInhibit "SimVarPropFeatheringInhibit(args)")
- [SimVarPropMaxRpmPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropMaxRpmPercent "SimVarPropMaxRpmPercent(args)")
- [SimVarPropRotationAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropRotationAngle "SimVarPropRotationAngle(args)")
- [SimVarPropRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropRpm "SimVarPropRpm(args)")
- [SimVarPropSyncActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropSyncActive "SimVarPropSyncActive(args)")
- [SimVarPropSyncDeltaLever(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropSyncDeltaLever "SimVarPropSyncDeltaLever(args)")
- [SimVarPropThrust(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropThrust "SimVarPropThrust(args)")
- [SimVarPushbackAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackAngle "SimVarPushbackAngle(args)")
- [SimVarPushbackContactx(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContactx "SimVarPushbackContactx(args)")
- [SimVarPushbackContacty(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContacty "SimVarPushbackContacty(args)")
- [SimVarPushbackContactz(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContactz "SimVarPushbackContactz(args)")
- [SimVarPushbackState(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackState "SimVarPushbackState(args)")
- [SimVarPushbackWait(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackWait "SimVarPushbackWait(args)")
- [SimVarRadInsSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRadInsSwitch "SimVarRadInsSwitch(args)")
- [SimVarRadioHeight(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRadioHeight "SimVarRadioHeight(args)")
- [SimVarRealism(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealism "SimVarRealism(args)")
- [SimVarRealismCrashDetection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealismCrashDetection "SimVarRealismCrashDetection(args)")
- [SimVarRealismCrashWithOthers(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealismCrashWithOthers "SimVarRealismCrashWithOthers(args)")
- [SimVarRecipCarburetorTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipCarburetorTemperature "SimVarRecipCarburetorTemperature(args)")
- [SimVarRecipEngAlternateAirPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAlternateAirPosition "SimVarRecipEngAlternateAirPosition(args)")
- [SimVarRecipEngAntidetonationTankMaxQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankMaxQuantity "SimVarRecipEngAntidetonationTankMaxQuantity(args)")
- [SimVarRecipEngAntidetonationTankQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankQuantity "SimVarRecipEngAntidetonationTankQuantity(args)")
- [SimVarRecipEngAntidetonationTankValve(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankValve "SimVarRecipEngAntidetonationTankValve(args)")
- [SimVarRecipEngBrakePower(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngBrakePower "SimVarRecipEngBrakePower(args)")
- [SimVarRecipEngCoolantReservoirPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCoolantReservoirPercent "SimVarRecipEngCoolantReservoirPercent(args)")
- [SimVarRecipEngCowlFlapPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCowlFlapPosition "SimVarRecipEngCowlFlapPosition(args)")
- [SimVarRecipEngCylinderHeadTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCylinderHeadTemperature "SimVarRecipEngCylinderHeadTemperature(args)")
- [SimVarRecipEngCylinderHealth(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCylinderHealth "SimVarRecipEngCylinderHealth(args)")
- [SimVarRecipEngDetonating(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngDetonating "SimVarRecipEngDetonating(args)")
- [SimVarRecipEngEmergencyBoostActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngEmergencyBoostActive "SimVarRecipEngEmergencyBoostActive(args)")
- [SimVarRecipEngEmergencyBoostElapsedTime(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngEmergencyBoostElapsedTime "SimVarRecipEngEmergencyBoostElapsedTime(args)")
- [SimVarRecipEngFuelAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelAvailable "SimVarRecipEngFuelAvailable(args)")
- [SimVarRecipEngFuelFlow(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelFlow "SimVarRecipEngFuelFlow(args)")
- [SimVarRecipEngFuelNumberTanksUsed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelNumberTanksUsed "SimVarRecipEngFuelNumberTanksUsed(args)")
- [SimVarRecipEngFuelTankSelector(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelTankSelector "SimVarRecipEngFuelTankSelector(args)")
- [SimVarRecipEngFuelTanksUsed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelTanksUsed "SimVarRecipEngFuelTanksUsed(args)")
- [SimVarRecipEngLeftMagneto(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngLeftMagneto "SimVarRecipEngLeftMagneto(args)")
- [SimVarRecipEngManifoldPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngManifoldPressure "SimVarRecipEngManifoldPressure(args)")
- [SimVarRecipEngNitrousTankMaxQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankMaxQuantity "SimVarRecipEngNitrousTankMaxQuantity(args)")
- [SimVarRecipEngNitrousTankQuantity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankQuantity "SimVarRecipEngNitrousTankQuantity(args)")
- [SimVarRecipEngNitrousTankValve(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankValve "SimVarRecipEngNitrousTankValve(args)")
- [SimVarRecipEngNumCylinders(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNumCylinders "SimVarRecipEngNumCylinders(args)")
- [SimVarRecipEngNumCylindersFailed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNumCylindersFailed "SimVarRecipEngNumCylindersFailed(args)")
- [SimVarRecipEngPrimer(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngPrimer "SimVarRecipEngPrimer(args)")
- [SimVarRecipEngRadiatorTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngRadiatorTemperature "SimVarRecipEngRadiatorTemperature(args)")
- [SimVarRecipEngRightMagneto(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngRightMagneto "SimVarRecipEngRightMagneto(args)")
- [SimVarRecipEngStarterTorque(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngStarterTorque "SimVarRecipEngStarterTorque(args)")
- [SimVarRecipEngTurbineInletTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngTurbineInletTemperature "SimVarRecipEngTurbineInletTemperature(args)")
- [SimVarRecipEngTurbochargerFailed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngTurbochargerFailed "SimVarRecipEngTurbochargerFailed(args)")
- [SimVarRecipEngWastegatePosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngWastegatePosition "SimVarRecipEngWastegatePosition(args)")
- [SimVarRecipMixtureRatio(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipMixtureRatio "SimVarRecipMixtureRatio(args)")
- [SimVarRelativeWindVelocityBodyX(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyX "SimVarRelativeWindVelocityBodyX(args)")
- [SimVarRelativeWindVelocityBodyY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyY "SimVarRelativeWindVelocityBodyY(args)")
- [SimVarRelativeWindVelocityBodyZ(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyZ "SimVarRelativeWindVelocityBodyZ(args)")
- [SimVarRetractFloatSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractFloatSwitch "SimVarRetractFloatSwitch(args)")
- [SimVarRetractLeftFloatExtended(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractLeftFloatExtended "SimVarRetractLeftFloatExtended(args)")
- [SimVarRetractRightFloatExtended(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractRightFloatExtended "SimVarRetractRightFloatExtended(args)")
- [SimVarRightWheelRotationAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRightWheelRotationAngle "SimVarRightWheelRotationAngle(args)")
- [SimVarRightWheelRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRightWheelRpm "SimVarRightWheelRpm(args)")
- [SimVarRotationVelocityBodyX(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyX "SimVarRotationVelocityBodyX(args)")
- [SimVarRotationVelocityBodyY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyY "SimVarRotationVelocityBodyY(args)")
- [SimVarRotationVelocityBodyZ(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyZ "SimVarRotationVelocityBodyZ(args)")
- [SimVarRotorBrakeActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeActive "SimVarRotorBrakeActive(args)")
- [SimVarRotorBrakeHandlePos(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeHandlePos "SimVarRotorBrakeHandlePos(args)")
- [SimVarRotorChipDetected(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorChipDetected "SimVarRotorChipDetected(args)")
- [SimVarRotorClutchActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorClutchActive "SimVarRotorClutchActive(args)")
- [SimVarRotorClutchSwitchPos(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorClutchSwitchPos "SimVarRotorClutchSwitchPos(args)")
- [SimVarRotorGovActive(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorGovActive "SimVarRotorGovActive(args)")
- [SimVarRotorGovSwitchPos(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorGovSwitchPos "SimVarRotorGovSwitchPos(args)")
- [SimVarRotorLateralTrimPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorLateralTrimPct "SimVarRotorLateralTrimPct(args)")
- [SimVarRotorRotationAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorRotationAngle "SimVarRotorRotationAngle(args)")
- [SimVarRotorRpmPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorRpmPct "SimVarRotorRpmPct(args)")
- [SimVarRotorTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorTemperature "SimVarRotorTemperature(args)")
- [SimVarRudderDeflection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderDeflection "SimVarRudderDeflection(args)")
- [SimVarRudderDeflectionPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderDeflectionPct "SimVarRudderDeflectionPct(args)")
- [SimVarRudderPedalIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPedalIndicator "SimVarRudderPedalIndicator(args)")
- [SimVarRudderPedalPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPedalPosition "SimVarRudderPedalPosition(args)")
- [SimVarRudderPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPosition "SimVarRudderPosition(args)")
- [SimVarRudderTrim(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderTrim "SimVarRudderTrim(args)")
- [SimVarRudderTrimPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderTrimPct "SimVarRudderTrimPct(args)")
- [SimVarSeaLevelPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSeaLevelPressure "SimVarSeaLevelPressure(args)")
- [SimVarSelectedDme(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSelectedDme "SimVarSelectedDme(args)")
- [SimVarSemibodyLoadfactorY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorY "SimVarSemibodyLoadfactorY(args)")
- [SimVarSemibodyLoadfactorYdot(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorYdot "SimVarSemibodyLoadfactorYdot(args)")
- [SimVarSigmaSqrt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSigmaSqrt "SimVarSigmaSqrt(args)")
- [SimVarSimDisabled(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimDisabled "SimVarSimDisabled(args)")
- [SimVarSimOnGround(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimOnGround "SimVarSimOnGround(args)")
- [SimVarSimulatedRadius(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimulatedRadius "SimVarSimulatedRadius(args)")
- [SimVarSimulationRate(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimulationRate "SimVarSimulationRate(args)")
- [SimVarSlingActivePayloadStation(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingActivePayloadStation "SimVarSlingActivePayloadStation(args)")
- [SimVarSlingCableBroken(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingCableBroken "SimVarSlingCableBroken(args)")
- [SimVarSlingCableExtendedLength(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingCableExtendedLength "SimVarSlingCableExtendedLength(args)")
- [SimVarSlingHoistPercentDeployed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingHoistPercentDeployed "SimVarSlingHoistPercentDeployed(args)")
- [SimVarSlingHookInPickupMode(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingHookInPickupMode "SimVarSlingHookInPickupMode(args)")
- [SimVarSlingObjectAttached(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingObjectAttached "SimVarSlingObjectAttached(args)")
- [SimVarSmokeEnable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSmokeEnable "SimVarSmokeEnable(args)")
- [SimVarSmokesystemAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSmokesystemAvailable "SimVarSmokesystemAvailable(args)")
- [SimVarSpoilerAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilerAvailable "SimVarSpoilerAvailable(args)")
- [SimVarSpoilersArmed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersArmed "SimVarSpoilersArmed(args)")
- [SimVarSpoilersHandlePosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersHandlePosition "SimVarSpoilersHandlePosition(args)")
- [SimVarSpoilersLeftPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersLeftPosition "SimVarSpoilersLeftPosition(args)")
- [SimVarSpoilersRightPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersRightPosition "SimVarSpoilersRightPosition(args)")
- [SimVarStallAlpha(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallAlpha "SimVarStallAlpha(args)")
- [SimVarStallHornAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallHornAvailable "SimVarStallHornAvailable(args)")
- [SimVarStallWarning(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallWarning "SimVarStallWarning(args)")
- [SimVarStandardAtmTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStandardAtmTemperature "SimVarStandardAtmTemperature(args)")
- [SimVarStaticCgToGround(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStaticCgToGround "SimVarStaticCgToGround(args)")
- [SimVarStaticPitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStaticPitch "SimVarStaticPitch(args)")
- [SimVarSteerInputControl(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSteerInputControl "SimVarSteerInputControl(args)")
- [SimVarStrobesAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStrobesAvailable "SimVarStrobesAvailable(args)")
- [SimVarStructAmbientWind(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructAmbientWind "SimVarStructAmbientWind(args)")
- [SimVarStructBodyRotationVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyRotationVelocity "SimVarStructBodyRotationVelocity(args)")
- [SimVarStructBodyVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyVelocity "SimVarStructBodyVelocity(args)")
- [SimVarStructEnginePosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEnginePosition "SimVarStructEnginePosition(args)")
- [SimVarStructEyepointDynamicAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEyepointDynamicAngle "SimVarStructEyepointDynamicAngle(args)")
- [SimVarStructEyepointDynamicOffset(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEyepointDynamicOffset "SimVarStructEyepointDynamicOffset(args)")
- [SimVarStructLatlonalt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructLatlonalt "SimVarStructLatlonalt(args)")
- [SimVarStructLatlonaltpbh(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructLatlonaltpbh "SimVarStructLatlonaltpbh(args)")
- [SimVarStructSurfaceRelativeVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructSurfaceRelativeVelocity "SimVarStructSurfaceRelativeVelocity(args)")
- [SimVarStructWorldAcceleration(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldAcceleration "SimVarStructWorldAcceleration(args)")
- [SimVarStructWorldRotationVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldRotationVelocity "SimVarStructWorldRotationVelocity(args)")
- [SimVarStructWorldvelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldvelocity "SimVarStructWorldvelocity(args)")
- [SimVarStructuralDeiceSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructuralDeiceSwitch "SimVarStructuralDeiceSwitch(args)")
- [SimVarStructuralIcePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructuralIcePct "SimVarStructuralIcePct(args)")
- [SimVarSuctionPressure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSuctionPressure "SimVarSuctionPressure(args)")
- [SimVarSurfaceCondition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceCondition "SimVarSurfaceCondition(args)")
- [SimVarSurfaceInfoValid(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceInfoValid "SimVarSurfaceInfoValid(args)")
- [SimVarSurfaceType(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceType "SimVarSurfaceType(args)")
- [SimVarTailhookPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTailhookPosition "SimVarTailhookPosition(args)")
- [SimVarTailwheelLockOn(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTailwheelLockOn "SimVarTailwheelLockOn(args)")
- [SimVarThrottleLowerLimit(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarThrottleLowerLimit "SimVarThrottleLowerLimit(args)")
- [SimVarTimeOfDay(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTimeOfDay "SimVarTimeOfDay(args)")
- [SimVarTimeZoneOffset(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTimeZoneOffset "SimVarTimeZoneOffset(args)")
- [SimVarTitle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTitle "SimVarTitle(args)")
- [SimVarToeBrakesAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarToeBrakesAvailable "SimVarToeBrakesAvailable(args)")
- [SimVarTotalAirTemperature(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalAirTemperature "SimVarTotalAirTemperature(args)")
- [SimVarTotalVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalVelocity "SimVarTotalVelocity(args)")
- [SimVarTotalWeight(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeight "SimVarTotalWeight(args)")
- [SimVarTotalWeightCrossCoupledMoi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightCrossCoupledMoi "SimVarTotalWeightCrossCoupledMoi(args)")
- [SimVarTotalWeightPitchMoi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightPitchMoi "SimVarTotalWeightPitchMoi(args)")
- [SimVarTotalWeightRollMoi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightRollMoi "SimVarTotalWeightRollMoi(args)")
- [SimVarTotalWeightYawMoi(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightYawMoi "SimVarTotalWeightYawMoi(args)")
- [SimVarTotalWorldVelocity(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWorldVelocity "SimVarTotalWorldVelocity(args)")
- [SimVarTowConnection(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowConnection "SimVarTowConnection(args)")
- [SimVarTowReleaseHandle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowReleaseHandle "SimVarTowReleaseHandle(args)")
- [SimVarTrailingEdgeFlapsLeftAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsLeftAngle "SimVarTrailingEdgeFlapsLeftAngle(args)")
- [SimVarTrailingEdgeFlapsLeftPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsLeftPercent "SimVarTrailingEdgeFlapsLeftPercent(args)")
- [SimVarTrailingEdgeFlapsRightAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsRightAngle "SimVarTrailingEdgeFlapsRightAngle(args)")
- [SimVarTrailingEdgeFlapsRightPercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsRightPercent "SimVarTrailingEdgeFlapsRightPercent(args)")
- [SimVarTransponderAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTransponderAvailable "SimVarTransponderAvailable(args)")
- [SimVarTransponderCode(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTransponderCode "SimVarTransponderCode(args)")
- [SimVarTrueAirspeedSelected(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrueAirspeedSelected "SimVarTrueAirspeedSelected(args)")
- [SimVarTurbEngAfterburner(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngAfterburner "SimVarTurbEngAfterburner(args)")
- [SimVarTurbEngBleedAir(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngBleedAir "SimVarTurbEngBleedAir(args)")
- [SimVarTurbEngCorrectedFf(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedFf "SimVarTurbEngCorrectedFf(args)")
- [SimVarTurbEngCorrectedN1(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedN1 "SimVarTurbEngCorrectedN1(args)")
- [SimVarTurbEngCorrectedN2(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedN2 "SimVarTurbEngCorrectedN2(args)")
- [SimVarTurbEngFuelAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngFuelAvailable "SimVarTurbEngFuelAvailable(args)")
- [SimVarTurbEngFuelFlowPph(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngFuelFlowPph "SimVarTurbEngFuelFlowPph(args)")
- [SimVarTurbEngIgnitionSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngIgnitionSwitch "SimVarTurbEngIgnitionSwitch(args)")
- [SimVarTurbEngItt(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngItt "SimVarTurbEngItt(args)")
- [SimVarTurbEngJetThrust(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngJetThrust "SimVarTurbEngJetThrust(args)")
- [SimVarTurbEngMasterStarterSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngMasterStarterSwitch "SimVarTurbEngMasterStarterSwitch(args)")
- [SimVarTurbEngMaxTorquePercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngMaxTorquePercent "SimVarTurbEngMaxTorquePercent(args)")
- [SimVarTurbEngN1(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngN1 "SimVarTurbEngN1(args)")
- [SimVarTurbEngN2(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngN2 "SimVarTurbEngN2(args)")
- [SimVarTurbEngNumTanksUsed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngNumTanksUsed "SimVarTurbEngNumTanksUsed(args)")
- [SimVarTurbEngPressureRatio(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngPressureRatio "SimVarTurbEngPressureRatio(args)")
- [SimVarTurbEngPrimaryNozzlePercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngPrimaryNozzlePercent "SimVarTurbEngPrimaryNozzlePercent(args)")
- [SimVarTurbEngReverseNozzlePercent(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngReverseNozzlePercent "SimVarTurbEngReverseNozzlePercent(args)")
- [SimVarTurbEngTankSelector(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngTankSelector "SimVarTurbEngTankSelector(args)")
- [SimVarTurbEngTanksUsed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngTanksUsed "SimVarTurbEngTanksUsed(args)")
- [SimVarTurbEngVibration(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngVibration "SimVarTurbEngVibration(args)")
- [SimVarTurnCoordinatorBall(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnCoordinatorBall "SimVarTurnCoordinatorBall(args)")
- [SimVarTurnIndicatorRate(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnIndicatorRate "SimVarTurnIndicatorRate(args)")
- [SimVarTurnIndicatorSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnIndicatorSwitch "SimVarTurnIndicatorSwitch(args)")
- [SimVarTypicalDescentRate(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTypicalDescentRate "SimVarTypicalDescentRate(args)")
- [SimVarUnitOfMeasure(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnitOfMeasure "SimVarUnitOfMeasure(args)")
- [SimVarUnlimitedFuel(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnlimitedFuel "SimVarUnlimitedFuel(args)")
- [SimVarUserInputEnabled(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUserInputEnabled "SimVarUserInputEnabled(args)")
- [SimVarVariometerRate(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVariometerRate "SimVarVariometerRate(args)")
- [SimVarVariometerSwitch(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVariometerSwitch "SimVarVariometerSwitch(args)")
- [SimVarVelocityBodyX(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyX "SimVarVelocityBodyX(args)")
- [SimVarVelocityBodyY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyY "SimVarVelocityBodyY(args)")
- [SimVarVelocityBodyZ(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyZ "SimVarVelocityBodyZ(args)")
- [SimVarVelocityWorldX(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldX "SimVarVelocityWorldX(args)")
- [SimVarVelocityWorldY(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldY "SimVarVelocityWorldY(args)")
- [SimVarVelocityWorldZ(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldZ "SimVarVelocityWorldZ(args)")
- [SimVarVerticalSpeed(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVerticalSpeed "SimVarVerticalSpeed(args)")
- [SimVarVisualModelRadius(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVisualModelRadius "SimVarVisualModelRadius(args)")
- [SimVarWaterBallastValve(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterBallastValve "SimVarWaterBallastValve(args)")
- [SimVarWaterLeftRudderExtended(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderExtended "SimVarWaterLeftRudderExtended(args)")
- [SimVarWaterLeftRudderSteerAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderSteerAngle "SimVarWaterLeftRudderSteerAngle(args)")
- [SimVarWaterLeftRudderSteerAnglePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderSteerAnglePct "SimVarWaterLeftRudderSteerAnglePct(args)")
- [SimVarWaterRightRudderExtended(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderExtended "SimVarWaterRightRudderExtended(args)")
- [SimVarWaterRightRudderSteerAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderSteerAngle "SimVarWaterRightRudderSteerAngle(args)")
- [SimVarWaterRightRudderSteerAnglePct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderSteerAnglePct "SimVarWaterRightRudderSteerAnglePct(args)")
- [SimVarWaterRudderHandlePosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRudderHandlePosition "SimVarWaterRudderHandlePosition(args)")
- [SimVarWheelRotationAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWheelRotationAngle "SimVarWheelRotationAngle(args)")
- [SimVarWheelRpm(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWheelRpm "SimVarWheelRpm(args)")
- [SimVarWindshieldRainEffectAvailable(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWindshieldRainEffectAvailable "SimVarWindshieldRainEffectAvailable(args)")
- [SimVarWingArea(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingArea "SimVarWingArea(args)")
- [SimVarWingFlexPct(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingFlexPct "SimVarWingFlexPct(args)")
- [SimVarWingSpan(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingSpan "SimVarWingSpan(args)")
- [SimVarWiskeyCompassIndicationDegrees(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWiskeyCompassIndicationDegrees "SimVarWiskeyCompassIndicationDegrees(args)")
- [SimVarYawStringAngle(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYawStringAngle "SimVarYawStringAngle(args)")
- [SimVarYawStringPctExtended(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYawStringPctExtended "SimVarYawStringPctExtended(args)")
- [SimVarYokeXIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeXIndicator "SimVarYokeXIndicator(args)")
- [SimVarYokeXPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeXPosition "SimVarYokeXPosition(args)")
- [SimVarYokeYIndicator(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeYIndicator "SimVarYokeYIndicator(args)")
- [SimVarYokeYPosition(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeYPosition "SimVarYokeYPosition(args)")
- [SimVarZeroLiftAlpha(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZeroLiftAlpha "SimVarZeroLiftAlpha(args)")
- [SimVarZuluDayOfMonth(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfMonth "SimVarZuluDayOfMonth(args)")
- [SimVarZuluDayOfWeek(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfWeek "SimVarZuluDayOfWeek(args)")
- [SimVarZuluDayOfYear(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfYear "SimVarZuluDayOfYear(args)")
- [SimVarZuluMonthOfYear(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluMonthOfYear "SimVarZuluMonthOfYear(args)")
- [SimVarZuluTime(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluTime "SimVarZuluTime(args)")
- [SimVarZuluYear(args)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluYear "SimVarZuluYear(args)")
- [(s) GetBool()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetBool "(s) GetBool()")
- [(s) GetData()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetData "(s) GetData()")
- [(s) GetDataLatLonAlt()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataLatLonAlt "(s) GetDataLatLonAlt()")
- [(s) GetDataWaypoint()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataWaypoint "(s) GetDataWaypoint()")
- [(s) GetDataXYZ()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataXYZ "(s) GetDataXYZ()")
- [(s) GetDatumType()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDatumType "(s) GetDatumType()")
- [(s) GetDegrees()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDegrees "(s) GetDegrees()")
- [(s) GetFloat64()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetFloat64 "(s) GetFloat64()")
- [(s) GetInt()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetInt "(s) GetInt()")
- [(s) GetSize()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetSize "(s) GetSize()")
- [(s) GetString()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetString "(s) GetString()")
- [(s) SetFloat64(f)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.SetFloat64 "(s) SetFloat64(f)")
- [type SimVarUnit](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnit "type SimVarUnit")
- [type SyscallSC](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC "type SyscallSC")
- [NewSyscallSC()](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewSyscallSC "NewSyscallSC()")
- [(syscallSC) AICreateEnrouteATCAircraft(hSimConnect, szContainerTitle, szTailNumber, iFlightNumber, szFlightPlanPath, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateEnrouteATCAircraft "(syscallSC) AICreateEnrouteATCAircraft(hSimConnect, szContainerTitle, szTailNumber, iFlightNumber, szFlightPlanPath, ...)")
- [(syscallSC) AICreateNonATCAircraft(hSimConnect, szContainerTitle, szTailNumber, InitPos, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateNonATCAircraft "(syscallSC) AICreateNonATCAircraft(hSimConnect, szContainerTitle, szTailNumber, InitPos, RequestID)")
- [(syscallSC) AICreateParkedATCAircraft(hSimConnect, szContainerTitle, szTailNumber, szAirportID, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateParkedATCAircraft "(syscallSC) AICreateParkedATCAircraft(hSimConnect, szContainerTitle, szTailNumber, szAirportID, RequestID)")
- [(syscallSC) AICreateSimulatedObject(hSimConnect, szContainerTitle, InitPos, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateSimulatedObject "(syscallSC) AICreateSimulatedObject(hSimConnect, szContainerTitle, InitPos, RequestID)")
- [(syscallSC) AIReleaseControl(hSimConnect, ObjectID, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AIReleaseControl "(syscallSC) AIReleaseControl(hSimConnect, ObjectID, RequestID)")
- [(syscallSC) AIRemoveObject(hSimConnect, ObjectID, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AIRemoveObject "(syscallSC) AIRemoveObject(hSimConnect, ObjectID, RequestID)")
- [(syscallSC) AISetAircraftFlightPlan(hSimConnect, ObjectID, szFlightPlanPath, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AISetAircraftFlightPlan "(syscallSC) AISetAircraftFlightPlan(hSimConnect, ObjectID, szFlightPlanPath, RequestID)")
- [(syscallSC) AddClientEventToNotificationGroup(hSimConnect, GroupID, EventID, bMaskable)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddClientEventToNotificationGroup "(syscallSC) AddClientEventToNotificationGroup(hSimConnect, GroupID, EventID, bMaskable)")
- [(syscallSC) AddToClientDataDefinition(hSimConnect, DefineID, dwOffset, dwSizeOrType, fEpsilon, DatumID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddToClientDataDefinition "(syscallSC) AddToClientDataDefinition(hSimConnect, DefineID, dwOffset, dwSizeOrType, fEpsilon, DatumID)")
- [(syscallSC) AddToDataDefinition(hSimConnect, DefineID, DatumName, UnitsName, DatumType, fEpsilon, DatumID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddToDataDefinition "(syscallSC) AddToDataDefinition(hSimConnect, DefineID, DatumName, UnitsName, DatumType, fEpsilon, DatumID)")
- [(syscallSC) CallDispatch(hSimConnect, pfcnDispatch, pContext)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CallDispatch "(syscallSC) CallDispatch(hSimConnect, pfcnDispatch, pContext)")
- [(syscallSC) CameraSetRelative6DOF(hSimConnect, fDeltaX, fDeltaY, fDeltaZ, fPitchDeg, fBankDeg, fHeadingDeg)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CameraSetRelative6DOF "(syscallSC) CameraSetRelative6DOF(hSimConnect, fDeltaX, fDeltaY, fDeltaZ, fPitchDeg, fBankDeg, fHeadingDeg)")
- [(syscallSC) ClearClientDataDefinition(hSimConnect, DefineID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearClientDataDefinition "(syscallSC) ClearClientDataDefinition(hSimConnect, DefineID)")
- [(syscallSC) ClearDataDefinition(hSimConnect, DefineID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearDataDefinition "(syscallSC) ClearDataDefinition(hSimConnect, DefineID)")
- [(syscallSC) ClearInputGroup(hSimConnect, GroupID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearInputGroup "(syscallSC) ClearInputGroup(hSimConnect, GroupID)")
- [(syscallSC) ClearNotificationGroup(hSimConnect, GroupID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearNotificationGroup "(syscallSC) ClearNotificationGroup(hSimConnect, GroupID)")
- [(syscallSC) Close(hSimConnect)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Close "(syscallSC) Close(hSimConnect)")
- [(syscallSC) CompleteCustomMissionAction(hSimConnect, guidInstanceId)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CompleteCustomMissionAction "(syscallSC) CompleteCustomMissionAction(hSimConnect, guidInstanceId)")
- [(syscallSC) CreateClientData(hSimConnect, ClientDataID, dwSize, Flags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CreateClientData "(syscallSC) CreateClientData(hSimConnect, ClientDataID, dwSize, Flags)")
- [(syscallSC) ExecuteMissionAction(hSimConnect, guidInstanceId)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ExecuteMissionAction "(syscallSC) ExecuteMissionAction(hSimConnect, guidInstanceId)")
- [(syscallSC) FlightLoad(hSimConnect, szFileName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightLoad "(syscallSC) FlightLoad(hSimConnect, szFileName)")
- [(syscallSC) FlightPlanLoad(hSimConnect, szFileName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightPlanLoad "(syscallSC) FlightPlanLoad(hSimConnect, szFileName)")
- [(syscallSC) FlightSave(hSimConnect, szFileName, szTitle, szDescription, Flags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightSave "(syscallSC) FlightSave(hSimConnect, szFileName, szTitle, szDescription, Flags)")
- [(syscallSC) GetLastSentPacketID(hSimConnect, pdwError)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.GetLastSentPacketID "(syscallSC) GetLastSentPacketID(hSimConnect, pdwError)")
- [(syscallSC) GetNextDispatch(hSimConnect, ppData, pcbData)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.GetNextDispatch "(syscallSC) GetNextDispatch(hSimConnect, ppData, pcbData)")
- [(syscallSC) InsertString(pDest, cbDest, ppEnd, pcbStringV, pSource)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.InsertString "(syscallSC) InsertString(pDest, cbDest, ppEnd, pcbStringV, pSource)")
- [(syscallSC) MapClientDataNameToID(hSimConnect, szClientDataName, ClientDataID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapClientDataNameToID "(syscallSC) MapClientDataNameToID(hSimConnect, szClientDataName, ClientDataID)")
- [(syscallSC) MapClientEventToSimEvent(hSimConnect, EventID, EventName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapClientEventToSimEvent "(syscallSC) MapClientEventToSimEvent(hSimConnect, EventID, EventName)")
- [(syscallSC) MapInputEventToClientEvent(hSimConnect, GroupID, szInputDefinition, DownEventID, DownValue, UpEventID, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapInputEventToClientEvent "(syscallSC) MapInputEventToClientEvent(hSimConnect, GroupID, szInputDefinition, DownEventID, DownValue, UpEventID, ...)")
- [(syscallSC) MenuAddItem(hSimConnect, szMenuItem, MenuEventID, dwData)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuAddItem "(syscallSC) MenuAddItem(hSimConnect, szMenuItem, MenuEventID, dwData)")
- [(syscallSC) MenuAddSubItem(hSimConnect, MenuEventID, szMenuItem, SubMenuEventID, dwData)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuAddSubItem "(syscallSC) MenuAddSubItem(hSimConnect, MenuEventID, szMenuItem, SubMenuEventID, dwData)")
- [(syscallSC) MenuDeleteItem(hSimConnect, MenuEventID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuDeleteItem "(syscallSC) MenuDeleteItem(hSimConnect, MenuEventID)")
- [(syscallSC) MenuDeleteSubItem(hSimConnect, MenuEventID, SubMenuEventID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuDeleteSubItem "(syscallSC) MenuDeleteSubItem(hSimConnect, MenuEventID, SubMenuEventID)")
- [(syscallSC) Open(phSimConnect, szName, hWnd, UserEventWin, hEventHandle, ConfigIndex)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Open "(syscallSC) Open(phSimConnect, szName, hWnd, UserEventWin, hEventHandle, ConfigIndex)")
- [(syscallSC) RemoveClientEvent(hSimConnect, GroupID, EventID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RemoveClientEvent "(syscallSC) RemoveClientEvent(hSimConnect, GroupID, EventID)")
- [(syscallSC) RemoveInputEvent(hSimConnect, GroupID, szInputDefinition)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RemoveInputEvent "(syscallSC) RemoveInputEvent(hSimConnect, GroupID, szInputDefinition)")
- [(syscallSC) RequestClientData(hSimConnect, ClientDataID, RequestID, DefineID, Period, Flags, origin, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestClientData "(syscallSC) RequestClientData(hSimConnect, ClientDataID, RequestID, DefineID, Period, Flags, origin, ...)")
- [(syscallSC) RequestDataOnSimObject(hSimConnect, RequestID, DefineID, ObjectID, Period, Flags, origin, interval, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestDataOnSimObject "(syscallSC) RequestDataOnSimObject(hSimConnect, RequestID, DefineID, ObjectID, Period, Flags, origin, interval, ...)")
- [(syscallSC) RequestDataOnSimObjectType(hSimConnect, RequestID, DefineID, dwRadiusMeters, t)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestDataOnSimObjectType "(syscallSC) RequestDataOnSimObjectType(hSimConnect, RequestID, DefineID, dwRadiusMeters, t)")
- [(syscallSC) RequestFacilitiesList(hSimConnect, t, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestFacilitiesList "(syscallSC) RequestFacilitiesList(hSimConnect, t, RequestID)")
- [(syscallSC) RequestNotificationGroup(hSimConnect, GroupID, dwReserved, Flags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestNotificationGroup "(syscallSC) RequestNotificationGroup(hSimConnect, GroupID, dwReserved, Flags)")
- [(syscallSC) RequestReservedKey(hSimConnect, EventID, szKeyChoice1, szKeyChoice2, szKeyChoice3)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestReservedKey "(syscallSC) RequestReservedKey(hSimConnect, EventID, szKeyChoice1, szKeyChoice2, szKeyChoice3)")
- [(syscallSC) RequestResponseTimes(hSimConnect, nCount, fElapsedSeconds)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestResponseTimes "(syscallSC) RequestResponseTimes(hSimConnect, nCount, fElapsedSeconds)")
- [(syscallSC) RequestSystemState(hSimConnect, RequestID, szState)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestSystemState "(syscallSC) RequestSystemState(hSimConnect, RequestID, szState)")
- [(syscallSC) RetrieveString(pData, cbData, pStringV, pszString, pcbString)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RetrieveString "(syscallSC) RetrieveString(pData, cbData, pStringV, pszString, pcbString)")
- [(syscallSC) SetClientData(hSimConnect, ClientDataID, DefineID, Flags, dwReserved, cbUnitSize, pDataSet)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetClientData "(syscallSC) SetClientData(hSimConnect, ClientDataID, DefineID, Flags, dwReserved, cbUnitSize, pDataSet)")
- [(syscallSC) SetDataOnSimObject(hSimConnect, DefineID, ObjectID, Flags, ArrayCount, cbUnitSize, pDataSet)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetDataOnSimObject "(syscallSC) SetDataOnSimObject(hSimConnect, DefineID, ObjectID, Flags, ArrayCount, cbUnitSize, pDataSet)")
- [(syscallSC) SetInputGroupPriority(hSimConnect, GroupID, uPriority)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetInputGroupPriority "(syscallSC) SetInputGroupPriority(hSimConnect, GroupID, uPriority)")
- [(syscallSC) SetInputGroupState(hSimConnect, GroupID, dwState)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetInputGroupState "(syscallSC) SetInputGroupState(hSimConnect, GroupID, dwState)")
- [(syscallSC) SetNotificationGroupPriority(hSimConnect, GroupID, uPriority)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetNotificationGroupPriority "(syscallSC) SetNotificationGroupPriority(hSimConnect, GroupID, uPriority)")
- [(syscallSC) SetSystemEventState(hSimConnect, EventID, dwState)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetSystemEventState "(syscallSC) SetSystemEventState(hSimConnect, EventID, dwState)")
- [(syscallSC) SetSystemState(hSimConnect, szState, dwInteger, fFloat, szString)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetSystemState "(syscallSC) SetSystemState(hSimConnect, szState, dwInteger, fFloat, szString)")
- [(syscallSC) SubscribeToFacilities(hSimConnect, t, RequestID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SubscribeToFacilities "(syscallSC) SubscribeToFacilities(hSimConnect, t, RequestID)")
- [(syscallSC) SubscribeToSystemEvent(hSimConnect, EventID, SystemEventName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SubscribeToSystemEvent "(syscallSC) SubscribeToSystemEvent(hSimConnect, EventID, SystemEventName)")
- [(syscallSC) Text(hSimConnect, t, fTimeSeconds, EventID, cbUnitSize, pDataSet)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Text "(syscallSC) Text(hSimConnect, t, fTimeSeconds, EventID, cbUnitSize, pDataSet)")
- [(syscallSC) TransmitClientEvent(hSimConnect, ObjectID, EventID, dwData, GroupID, Flags)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.TransmitClientEvent "(syscallSC) TransmitClientEvent(hSimConnect, ObjectID, EventID, dwData, GroupID, Flags)")
- [(syscallSC) UnsubscribeFromSystemEvent(hSimConnect, EventID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.UnsubscribeFromSystemEvent "(syscallSC) UnsubscribeFromSystemEvent(hSimConnect, EventID)")
- [(syscallSC) UnsubscribeToFacilities(hSimConnect, t)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.UnsubscribeToFacilities "(syscallSC) UnsubscribeToFacilities(hSimConnect, t)")
- [(syscallSC) WeatherCreateStation(hSimConnect, RequestID, szICAO, szName, lat, lon, alt)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherCreateStation "(syscallSC) WeatherCreateStation(hSimConnect, RequestID, szICAO, szName, lat, lon, alt)")
- [(syscallSC) WeatherCreateThermal(hSimConnect, RequestID, lat, lon, alt, radius, height, coreRate, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherCreateThermal "(syscallSC) WeatherCreateThermal(hSimConnect, RequestID, lat, lon, alt, radius, height, coreRate, ...)")
- [(syscallSC) WeatherRemoveStation(hSimConnect, RequestID, szICAO)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRemoveStation "(syscallSC) WeatherRemoveStation(hSimConnect, RequestID, szICAO)")
- [(syscallSC) WeatherRemoveThermal(hSimConnect, ObjectID)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRemoveThermal "(syscallSC) WeatherRemoveThermal(hSimConnect, ObjectID)")
- [(syscallSC) WeatherRequestCloudState(hSimConnect, RequestID, minLat, minLon, minAlt, maxLat, maxLon, maxAlt, ...)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestCloudState "(syscallSC) WeatherRequestCloudState(hSimConnect, RequestID, minLat, minLon, minAlt, maxLat, maxLon, maxAlt, ...)")
- [(syscallSC) WeatherRequestInterpolatedObservation(hSimConnect, RequestID, lat, lon, alt)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestInterpolatedObservation "(syscallSC) WeatherRequestInterpolatedObservation(hSimConnect, RequestID, lat, lon, alt)")
- [(syscallSC) WeatherRequestObservationAtNearestStation(hSimConnect, RequestID, lat, lon)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestObservationAtNearestStation "(syscallSC) WeatherRequestObservationAtNearestStation(hSimConnect, RequestID, lat, lon)")
- [(syscallSC) WeatherRequestObservationAtStation(hSimConnect, RequestID, szICAO)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestObservationAtStation "(syscallSC) WeatherRequestObservationAtStation(hSimConnect, RequestID, szICAO)")
- [(syscallSC) WeatherSetDynamicUpdateRate(hSimConnect, dwRate)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetDynamicUpdateRate "(syscallSC) WeatherSetDynamicUpdateRate(hSimConnect, dwRate)")
- [(syscallSC) WeatherSetModeCustom(hSimConnect)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeCustom "(syscallSC) WeatherSetModeCustom(hSimConnect)")
- [(syscallSC) WeatherSetModeGlobal(hSimConnect)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeGlobal "(syscallSC) WeatherSetModeGlobal(hSimConnect)")
- [(syscallSC) WeatherSetModeServer(hSimConnect, dwPort, dwSeconds)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeServer "(syscallSC) WeatherSetModeServer(hSimConnect, dwPort, dwSeconds)")
- [(syscallSC) WeatherSetModeTheme(hSimConnect, szThemeName)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeTheme "(syscallSC) WeatherSetModeTheme(hSimConnect, szThemeName)")
- [(syscallSC) WeatherSetObservation(hSimConnect, Seconds, szMETAR)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetObservation "(syscallSC) WeatherSetObservation(hSimConnect, Seconds, szMETAR)")
- [type SystemEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SystemEvent "type SystemEvent")
- [Source Files](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#section-sourcefiles)
##  README [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#section-readme "Go to Readme")
### Golang SimConnect binding for FS2020 β
*This library is in developement and I have write little documentation. Please considerate this library as a testing version. It is possible non backwards compatible in the future version. But you can enjoy π₯³ and good fly \!*
For more information on how to use this library, please read [example\_test.go](https://github.com/micmonay/simconnect/raw/master/example_test.go).
With this library you can in simulator:
- Read SimVar. (ex: Altitude, Longitude, Latitude, AP master status, Fuel, Engine...)
- Write SimVar. All the SimVar have not a possibility to be written show SimVar.Settable
- Send SimEvent for change Throttle or other
- Receive system event (ex: When the aircraft crash). *Not all implemented*
- Show text in the screen on the simulator
#### A simple example of how to use this library
```
package main
import (
"fmt"
"log"
"strings"
"time"
sim "github.com/micmonay/simconnect"
)
func main() {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo) // It is better if you the set before connect
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c // Wait connection confirmation
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarPlaneAltitude(),
sim.SimVarPlaneLatitude(sim.UnitDegrees), // You can force the units
sim.SimVarPlaneLongitude(),
sim.SimVarIndicatedAltitude(),
sim.SimVarGeneralEngRpm(1),
sim.SimVarAutopilotMaster(),
)
if err != nil {
panic(err)
}
cSimStatus := sc.ConnectSysEventSim()
//wait sim start
for {
if <-cSimStatus {
break
}
}
crashed := sc.ConnectSysEventCrashed()
for {
select {
case result := <-cSimVar:
for _, simVar := range result {
var f float64
var err error
if strings.Contains(string(simVar.Unit), "String") {
log.Printf("%s : %#v\n", simVar.Name, simVar.GetString())
} else if simVar.Unit == "SIMCONNECT_DATA_LATLONALT" {
data, _ := simVar.GetDataLatLonAlt()
log.Printf("%s : %#v\n", simVar.Name, data)
} else if simVar.Unit == "SIMCONNECT_DATA_XYZ" {
data, _ := simVar.GetDataXYZ()
log.Printf("%s : %#v\n", simVar.Name, data)
} else if simVar.Unit == "SIMCONNECT_DATA_WAYPOINT" {
data, _ := simVar.GetDataWaypoint()
log.Printf("%s : %#v\n", simVar.Name, data)
} else {
f, err = simVar.GetFloat64()
log.Println(simVar.Name, fmt.Sprintf("%f", f))
}
if err != nil {
log.Println("return error :", err)
}
}
case <-crashed:
log.Println("Your are crashed !!")
<-sc.Close() // Wait close confirmation
return // This example close after crash in the sim
}
}
}
```
Expand βΎ
Collapse β΄
##  Documentation [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#section-documentation "Go to Documentation")
### Overview [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-overview "Go to Overview")
Package simconnect is a binding for FS2020 βοΈ in GO. Please see EasySimConnect for best use
Example (GetLatLonAlt) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetLatLonAlt "Go to Example (GetLatLonAlt)")
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarStructLatlonalt(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
latlonalt, err := simVar.GetDataLatLonAlt()
if err != nil {
panic(err)
}
log.Printf("%s : %#v\nIn Feet %#v\n", simVar.Name, latlonalt, latlonalt.GetFeets())
}
}
<-sc.Close() // wait close confirmation
}
```
```
Output:
```
Share
Format
Run
Example (GetSimVar) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetSimVar "Go to Example (GetSimVar)")
ExampleGetSimVar this example show how to get SimVar with Easysim
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarPlaneAltitude(),
sim.SimVarPlaneLatitude(sim.UnitDegrees), // you can force the units
sim.SimVarPlaneLongitude(),
sim.SimVarIndicatedAltitude(),
sim.SimVarAutopilotAltitudeLockVar(),
sim.SimVarAutopilotMaster(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
f, err := simVar.GetFloat64()
if err != nil {
panic(err)
}
log.Printf("%#v\n", f)
}
}
<-sc.Close() // wait close confirmation
}
```
```
Output:
```
Share
Format
Run
Example (GetSimVarWithIndex) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetSimVarWithIndex "Go to Example (GetSimVarWithIndex)")
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarGeneralEngRpm(1),
sim.SimVarTransponderCode(1),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
if simVar.Name == sim.SimVarTransponderCode().Name {
i, err := simVar.GetInt()
if err != nil {
panic(err)
}
log.Printf("%s : %x\n", simVar.Name, i)
} else {
f, err := simVar.GetFloat64()
if err != nil {
panic(err)
}
log.Printf("%s : %f\n", simVar.Name, f)
}
}
}
<-sc.Close() // wait close confirmation
}
```
```
Output:
```
Share
Format
Run
Example (GetString) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetString "Go to Example (GetString)")
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarTitle(),
sim.SimVarCategory(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
str := simVar.GetString()
log.Printf("%s : %#v\n", simVar.Name, str)
}
}
<-sc.Close() // wait close confirmation
}
```
```
Output:
```
Share
Format
Run
Example (GetXYZ) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetXYZ "Go to Example (GetXYZ)")
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarEyepointPosition(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
xyz, err := simVar.GetDataXYZ()
if err != nil {
panic(err)
}
log.Printf("%s : %#v\n", simVar.Name, xyz)
}
}
<-sc.Close() // wait close confirmation
}
```
```
Output:
```
Share
Format
Run
Example (IFaceSetSimVar) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-IFaceSetSimVar "Go to Example (IFaceSetSimVar)")
Example\_iFaceSetSimVar Example how to use interface for assign value in simulator actualy support only float64
```
package main
import (
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
type ExampleSetSimVar struct {
PlaneAltitude float64 `sim:"PLANE ALTITUDE" simUnit:"Feet"`
PlaneLatitude float64 `sim:"PLANE LATITUDE" simUnit:"Degrees"`
PlaneLongitude float64 `sim:"PLANE LONGITUDE" simUnit:"Degrees"`
Speed float64 `sim:"AIRSPEED INDICATED" simUnit:"Knots"`
}
func main() {
sc := connect()
iFace := ExampleSetSimVar{
PlaneLatitude: 46.2730077,
PlaneLongitude: 6.1324663,
PlaneAltitude: 10000.0,
Speed: 150.0,
}
sc.SetSimVarInterfaceInSim(iFace)
<-sc.Close() // wait close confirmation
// NOEXEC Output:
}
```
```
Output:
```
Share
Format
Run
Example (InterfaceSimVar) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-InterfaceSimVar "Go to Example (InterfaceSimVar)")
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
type ExampleInterface struct {
PlaneAltitude float64 `sim:"PLANE ALTITUDE" simUnit:"Feet"`
PlaneLatitude float64 `sim:"PLANE LATITUDE"`
PlaneLongitude float64 `sim:"PLANE LONGITUDE" simUnit:"Degrees"`
IndicatedAltitude float64 `sim:"INDICATED ALTITUDE"`
AutopilotAltitudeLockVar float64 `sim:"AUTOPILOT ALTITUDE LOCK VAR"`
SimVarAutopilotMaster bool `sim:"GENERAL ENG RPM:1"`
PlaneName string `sim:"TITLE"`
}
func main() {
sc := connect()
cInterface, err := sc.ConnectInterfaceToSimVar(ExampleInterface{})
if err != nil {
panic(err)
}
iFace, ok := (<-cInterface).(ExampleInterface)
if ok {
log.Printf("%#v", iFace)
} else {
log.Fatalln("interface error in Example_interfaceSimVar")
}
<-sc.Close()
}
```
```
Output:
```
Share
Format
Run
Example (SetSimVar) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-SetSimVar "Go to Example (SetSimVar)")
```
package main
import (
"time"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
newalt := sim.SimVarPlaneAltitude()
newalt.SetFloat64(6000.0)
sc.SetSimObject(newalt)
time.Sleep(1000 * time.Millisecond)
<-sc.Close() // wait close confirmation
// NOEXEC Output:
}
```
```
Output:
```
Share
Format
Run
Example (ShowText) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-ShowText "Go to Example (ShowText)")
Example\_showText Actually color no effect in the sim
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
ch, err := sc.ShowText("Test", 1, sim.SIMCONNECT_TEXT_TYPE_PRINT_GREEN)
if err != nil {
panic(err)
}
log.Println(<-ch)
<-sc.Close() // wait close confirmation
}
```
```
Output:
```
Share
Format
Run
Example (SimEvent) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-SimEvent "Go to Example (SimEvent)")
Example\_simEvent You can wait chan if you will surre the event has finish with succes. If your app finish before all event probably not effect.
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
aileronsSet := sc.NewSimEvent(sim.KeyAxisAileronsSet)
throttleSet := sc.NewSimEvent(sim.KeyThrottleSet)
altVarInc := sc.NewSimEvent(sim.KeyApAltVarInc)
altVarDec := sc.NewSimEvent(sim.KeyApAltVarDec)
log.Println(<-aileronsSet.RunWithValue(-16383))
log.Println(<-throttleSet.RunWithValue(16383))
for i := 0; i < 10; i++ {
<-altVarInc.Run()
}
for i := 0; i < 10; i++ {
<-altVarDec.Run()
}
<-sc.Close() // wait close confirmation
}
```
```
Output:
```
Share
Format
Run
### Index [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-index "Go to Index")
- [Constants](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-constants)
- [func InterfaceAssignSimVar(listSimVar \[\]SimVar, iFace interface{})](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#InterfaceAssignSimVar)
- [func SimVarAssignInterface(iFace interface{}, listSimVar \[\]SimVar) interface{}](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAssignInterface)
- [type EasySimConnect](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect)
- - [func NewEasySimConnect(ctx context.Context) (\*EasySimConnect, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewEasySimConnect)
- - [func (esc \*EasySimConnect) Close() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.Close)
- [func (esc \*EasySimConnect) Connect(appName string) (\<-chan bool, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.Connect)
- [func (esc \*EasySimConnect) ConnectInterfaceToSimVar(iFace interface{}) (\<-chan interface{}, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectInterfaceToSimVar)
- [func (esc \*EasySimConnect) ConnectSysEventAircraftLoaded() \<-chan string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventAircraftLoaded)
- [func (esc \*EasySimConnect) ConnectSysEventCrashReset() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventCrashReset)
- [func (esc \*EasySimConnect) ConnectSysEventCrashed() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventCrashed)
- [func (esc \*EasySimConnect) ConnectSysEventFlightLoaded() \<-chan string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightLoaded)
- [func (esc \*EasySimConnect) ConnectSysEventFlightPlanActivated() \<-chan string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanActivated)
- [func (esc \*EasySimConnect) ConnectSysEventFlightPlanDeactivated() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanDeactivated)
- [func (esc \*EasySimConnect) ConnectSysEventFlightSaved() \<-chan string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightSaved)
- [func (esc \*EasySimConnect) ConnectSysEventPause() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventPause)
- [func (esc \*EasySimConnect) ConnectSysEventPaused() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventPaused)
- [func (esc \*EasySimConnect) ConnectSysEventSim() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventSim)
- [func (esc \*EasySimConnect) ConnectToSimVar(listSimVar ...SimVar) (\<-chan \[\]SimVar, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectToSimVar)
- [func (esc \*EasySimConnect) ConnectToSimVarObject(listSimVar ...SimVar) \<-chan \[\]SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectToSimVarObject)deprecated
- [func (esc \*EasySimConnect) IsAlive() bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.IsAlive)
- [func (esc \*EasySimConnect) NewSimEvent(simEventStr KeySimEvent) SimEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.NewSimEvent)
- [func (esc \*EasySimConnect) SetDelay(t time.Duration)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetDelay)
- [func (esc \*EasySimConnect) SetLoggerLevel(level EasySimConnectLogLevel)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetLoggerLevel)
- [func (esc \*EasySimConnect) SetSimObject(simVar SimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetSimObject)
- [func (esc \*EasySimConnect) SetSimVarInterfaceInSim(iFace interface{}) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetSimVarInterfaceInSim)
- [func (esc \*EasySimConnect) ShowText(str string, time float32, color PrintColor) (\<-chan int, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ShowText)
- [type EasySimConnectLogLevel](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnectLogLevel)
- [type EventFlag](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EventFlag)
- [type GUID](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#GUID)
- [type GroupPriority](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#GroupPriority)
- [type KeySimEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#KeySimEvent)
- [type PrintColor](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#PrintColor)
- [type SIMCONNECT\_DATA\_FACILITY\_AIRPORT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_AIRPORT)
- [type SIMCONNECT\_DATA\_FACILITY\_NDB](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_NDB)
- [type SIMCONNECT\_DATA\_FACILITY\_VOR](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_VOR)
- [type SIMCONNECT\_DATA\_FACILITY\_WAYPOINT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_WAYPOINT)
- [type SIMCONNECT\_DATA\_INITPOSITION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_INITPOSITION)
- [type SIMCONNECT\_DATA\_LATLONALT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_LATLONALT)
- - [func (s SIMCONNECT\_DATA\_LATLONALT) GetFeets() int](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_LATLONALT.GetFeets)
- [type SIMCONNECT\_DATA\_MARKERSTATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_MARKERSTATE)
- [type SIMCONNECT\_DATA\_RACE\_RESULT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_RACE_RESULT)
- [type SIMCONNECT\_DATA\_WAYPOINT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_WAYPOINT)
- [type SIMCONNECT\_DATA\_XYZ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_XYZ)
- [type SIMCONNECT\_RECV](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV)
- [type SIMCONNECT\_RECV\_AIRPORT\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_AIRPORT_LIST)
- [type SIMCONNECT\_RECV\_ASSIGNED\_OBJECT\_ID](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_ASSIGNED_OBJECT_ID)
- [type SIMCONNECT\_RECV\_CLIENT\_DATA](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CLIENT_DATA)
- [type SIMCONNECT\_RECV\_CLOUD\_STATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CLOUD_STATE)
- [type SIMCONNECT\_RECV\_CUSTOM\_ACTION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CUSTOM_ACTION)
- [type SIMCONNECT\_RECV\_EVENT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT)
- [type SIMCONNECT\_RECV\_EVENT\_FILENAME](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_FILENAME)
- [type SIMCONNECT\_RECV\_EVENT\_FRAME](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_FRAME)
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_CLIENT\_STARTED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED)
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_SERVER\_STARTED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED)
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_SESSION\_ENDED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED)
- [type SIMCONNECT\_RECV\_EVENT\_OBJECT\_ADDREMOVE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE)
- [type SIMCONNECT\_RECV\_EVENT\_RACE\_END](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_RACE_END)
- [type SIMCONNECT\_RECV\_EVENT\_RACE\_LAP](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_RACE_LAP)
- [type SIMCONNECT\_RECV\_EVENT\_WEATHER\_MODE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_WEATHER_MODE)
- [type SIMCONNECT\_RECV\_EXCEPTION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EXCEPTION)
- [type SIMCONNECT\_RECV\_FACILITIES\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_FACILITIES_LIST)
- [type SIMCONNECT\_RECV\_NDB\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_NDB_LIST)
- [type SIMCONNECT\_RECV\_OPEN](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_OPEN)
- [type SIMCONNECT\_RECV\_QUIT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_QUIT)
- [type SIMCONNECT\_RECV\_RESERVED\_KEY](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_RESERVED_KEY)
- [type SIMCONNECT\_RECV\_SIMOBJECT\_DATA](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SIMOBJECT_DATA)
- [type SIMCONNECT\_RECV\_SIMOBJECT\_DATA\_BYTYPE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE)
- [type SIMCONNECT\_RECV\_SYSTEM\_STATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SYSTEM_STATE)
- [type SIMCONNECT\_RECV\_VOR\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_VOR_LIST)
- [type SIMCONNECT\_RECV\_WAYPOINT\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_WAYPOINT_LIST)
- [type SIMCONNECT\_RECV\_WEATHER\_OBSERVATION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_WEATHER_OBSERVATION)
- [type ScrollColor](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#ScrollColor)
- [type SimConnect](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect)
- - [func NewSimConnect() (\*SimConnect, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewSimConnect)
- - [func (sc \*SimConnect) AICreateEnrouteATCAircraft(szContainerTitle string, szTailNumber string, iFlightNumber int, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateEnrouteATCAircraft)
- [func (sc \*SimConnect) AICreateNonATCAircraft(szContainerTitle string, szTailNumber string, InitPos uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateNonATCAircraft)
- [func (sc \*SimConnect) AICreateParkedATCAircraft(szContainerTitle string, szTailNumber string, szAirportID string, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateParkedATCAircraft)
- [func (sc \*SimConnect) AICreateSimulatedObject(szContainerTitle string, InitPos uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateSimulatedObject)
- [func (sc \*SimConnect) AIReleaseControl(ObjectID uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AIReleaseControl)
- [func (sc \*SimConnect) AIRemoveObject(ObjectID uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AIRemoveObject)
- [func (sc \*SimConnect) AISetAircraftFlightPlan(ObjectID uint32, szFlightPlanPath string, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AISetAircraftFlightPlan)
- [func (sc \*SimConnect) AddClientEventToNotificationGroup(GroupID uint32, EventID uint32, bMaskable bool) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddClientEventToNotificationGroup)
- [func (sc \*SimConnect) AddToClientDataDefinition(DefineID uint32, dwOffset uint32, dwSizeOrType uint32, fEpsilon float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddToClientDataDefinition)
- [func (sc \*SimConnect) AddToDataDefinition(DefineID uint32, DatumName string, UnitsName string, DatumType uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddToDataDefinition)
- [func (sc \*SimConnect) CameraSetRelative6DOF(fDeltaX float32, fDeltaY float32, fDeltaZ float32, fPitchDeg float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CameraSetRelative6DOF)
- [func (sc \*SimConnect) ClearClientDataDefinition(DefineID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearClientDataDefinition)
- [func (sc \*SimConnect) ClearDataDefinition(DefineID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearDataDefinition)
- [func (sc \*SimConnect) ClearInputGroup(GroupID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearInputGroup)
- [func (sc \*SimConnect) ClearNotificationGroup(GroupID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearNotificationGroup)
- [func (sc \*SimConnect) Close() (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Close)
- [func (sc \*SimConnect) CompleteCustomMissionAction(guidInstanceID GUID) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CompleteCustomMissionAction)
- [func (sc \*SimConnect) CreateClientData(ClientDataID uint32, dwSize uint32, Flags uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CreateClientData)
- [func (sc \*SimConnect) ExecuteMissionAction(guidInstanceID GUID) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ExecuteMissionAction)
- [func (sc \*SimConnect) FlightLoad(szFileName string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightLoad)
- [func (sc \*SimConnect) FlightPlanLoad(szFileName string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightPlanLoad)
- [func (sc \*SimConnect) FlightSave(szFileName string, szTitle string, szDescription string, Flags uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightSave)
- [func (sc \*SimConnect) GetLastSentPacketID(pdwError \*uint32) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.GetLastSentPacketID)
- [func (sc \*SimConnect) GetNextDispatch(ppData \*unsafe.Pointer, pcbData \*uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.GetNextDispatch)
- [func (sc \*SimConnect) InsertString(pDest string, cbDest uint32, ppEnd \*uint32, pcbStringV \*uint32, pSource string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.InsertString)
- [func (sc \*SimConnect) MapClientDataNameToID(szClientDataName string, ClientDataID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapClientDataNameToID)
- [func (sc \*SimConnect) MapClientEventToSimEvent(EventID uint32, EventName string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapClientEventToSimEvent)
- [func (sc \*SimConnect) MapInputEventToClientEvent(GroupID uint32, szInputDefinition string, DownEventID uint32, DownValue uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapInputEventToClientEvent)
- [func (sc \*SimConnect) MenuAddItem(szMenuItem string, MenuEventID uint32, dwData uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuAddItem)
- [func (sc \*SimConnect) MenuAddSubItem(MenuEventID uint32, szMenuItem string, SubMenuEventID uint32, dwData uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuAddSubItem)
- [func (sc \*SimConnect) MenuDeleteItem(MenuEventID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuDeleteItem)
- [func (sc \*SimConnect) MenuDeleteSubItem(MenuEventID uint32, constSubMenuEventID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuDeleteSubItem)
- [func (sc \*SimConnect) Open(appTitle string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Open)
- [func (sc \*SimConnect) RemoveClientEvent(GroupID uint32, EventID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RemoveClientEvent)
- [func (sc \*SimConnect) RemoveInputEvent(GroupID uint32, szInputDefinition string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RemoveInputEvent)
- [func (sc \*SimConnect) RequestClientData(ClientDataID uint32, RequestID uint32, DefineID uint32, Period uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestClientData)
- [func (sc \*SimConnect) RequestDataOnSimObject(RequestID uint32, DefineID uint32, ObjectID uint32, Period uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestDataOnSimObject)
- [func (sc \*SimConnect) RequestDataOnSimObjectType(RequestID uint32, DefineID uint32, dwRadiusMeters uint32, t uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestDataOnSimObjectType)
- [func (sc \*SimConnect) RequestFacilitiesList(t uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestFacilitiesList)
- [func (sc \*SimConnect) RequestNotificationGroup(GroupID uint32, dwReserved uint32, Flags uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestNotificationGroup)
- [func (sc \*SimConnect) RequestReservedKey(EventID uint32, szKeyChoice1 string, szKeyChoice2 string, szKeyChoice3 string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestReservedKey)
- [func (sc \*SimConnect) RequestResponseTimes(nCount uint32, fElapsedSeconds \*float32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestResponseTimes)
- [func (sc \*SimConnect) RequestSystemState(RequestID uint32, szState string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestSystemState)
- [func (sc \*SimConnect) RetrieveString(pData \*uint32, cbData uint32, pStringV string, pszString \*\*string, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RetrieveString)
- [func (sc \*SimConnect) SetClientData(ClientDataID uint32, DefineID uint32, Flags uint32, dwReserved uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetClientData)
- [func (sc \*SimConnect) SetDataOnSimObject(DefineID uint32, ObjectID uint32, Flags uint32, ArrayCount uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetDataOnSimObject)
- [func (sc \*SimConnect) SetInputGroupPriority(GroupID uint32, uPriority uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetInputGroupPriority)
- [func (sc \*SimConnect) SetInputGroupState(GroupID uint32, dwState SimConnectStat) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetInputGroupState)
- [func (sc \*SimConnect) SetNotificationGroupPriority(GroupID uint32, uPriority GroupPriority) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetNotificationGroupPriority)
- [func (sc \*SimConnect) SetSystemEventState(EventID uint32, dwState uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetSystemEventState)
- [func (sc \*SimConnect) SetSystemState(szState string, dwInteger uint32, fFloat float32, szString string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetSystemState)
- [func (sc \*SimConnect) SubscribeToFacilities(t uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SubscribeToFacilities)
- [func (sc \*SimConnect) SubscribeToSystemEvent(EventID uint32, SystemEventName SystemEvent) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SubscribeToSystemEvent)
- [func (sc \*SimConnect) Text(t uint32, fTimeSeconds float32, EventID uint32, pDataSet string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Text)
- [func (sc \*SimConnect) TransmitClientEvent(ObjectID uint32, EventID uint32, dwData int, GroupID GroupPriority, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.TransmitClientEvent)
- [func (sc \*SimConnect) UnsubscribeFromSystemEvent(EventID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.UnsubscribeFromSystemEvent)
- [func (sc \*SimConnect) UnsubscribeToFacilities(t uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.UnsubscribeToFacilities)
- [func (sc \*SimConnect) WeatherCreateStation(RequestID uint32, szICAO string, szName string, lat float32, lon float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherCreateStation)
- [func (sc \*SimConnect) WeatherCreateThermal(RequestID uint32, lat float32, lon float32, alt float32, radius float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherCreateThermal)
- [func (sc \*SimConnect) WeatherRemoveStation(RequestID uint32, szICAO string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRemoveStation)
- [func (sc \*SimConnect) WeatherRemoveThermal(ObjectID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRemoveThermal)
- [func (sc \*SimConnect) WeatherRequestCloudState(RequestID uint32, minLat float32, minLon float32, minAlt float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestCloudState)
- [func (sc \*SimConnect) WeatherRequestInterpolatedObservation(RequestID uint32, lat float32, lon float32, alt float32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestInterpolatedObservation)
- [func (sc \*SimConnect) WeatherRequestObservationAtNearestStation(RequestID uint32, lat float32, lon float32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestObservationAtNearestStation)
- [func (sc \*SimConnect) WeatherRequestObservationAtStation(RequestID uint32, szICAO string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestObservationAtStation)
- [func (sc \*SimConnect) WeatherSetDynamicUpdateRate(dwRate uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetDynamicUpdateRate)
- [func (sc \*SimConnect) WeatherSetModeCustom() (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeCustom)
- [func (sc \*SimConnect) WeatherSetModeGlobal() (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeGlobal)
- [func (sc \*SimConnect) WeatherSetModeServer(dwPort uint32, dwSeconds uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeServer)
- [func (sc \*SimConnect) WeatherSetModeTheme(szThemeName string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeTheme)
- [func (sc \*SimConnect) WeatherSetObservation(Seconds uint32, szMETAR string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetObservation)
- [type SimConnectStat](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnectStat)
- [type SimEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent)
- - [func (s SimEvent) Run() \<-chan int32](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent.Run)
- [func (s SimEvent) RunWithValue(value int) \<-chan int32](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent.RunWithValue)
- [type SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar)
- - [func SimVarAbsoluteTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAbsoluteTime)
- [func SimVarAccelerationBodyX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyX)
- [func SimVarAccelerationBodyY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyY)
- [func SimVarAccelerationBodyZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyZ)
- [func SimVarAccelerationWorldX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldX)
- [func SimVarAccelerationWorldY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldY)
- [func SimVarAccelerationWorldZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldZ)
- [func SimVarAdfActiveFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfActiveFrequency)
- [func SimVarAdfAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfAvailable)
- [func SimVarAdfCard(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfCard)
- [func SimVarAdfExtFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfExtFrequency)
- [func SimVarAdfFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfFrequency)
- [func SimVarAdfIdent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfIdent)
- [func SimVarAdfLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfLatlonalt)
- [func SimVarAdfName(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfName)
- [func SimVarAdfRadial(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfRadial)
- [func SimVarAdfSignal(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfSignal)
- [func SimVarAdfSound(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfSound)
- [func SimVarAdfStandbyFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfStandbyFrequency)
- [func SimVarAiCurrentWaypoint(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiCurrentWaypoint)
- [func SimVarAiDesiredHeading(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiDesiredHeading)
- [func SimVarAiDesiredSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiDesiredSpeed)
- [func SimVarAiGroundcruisespeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundcruisespeed)
- [func SimVarAiGroundturnspeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundturnspeed)
- [func SimVarAiGroundturntime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundturntime)
- [func SimVarAiTrafficAssignedParking(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficAssignedParking)
- [func SimVarAiTrafficAssignedRunway(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficAssignedRunway)
- [func SimVarAiTrafficCurrentAirport(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficCurrentAirport)
- [func SimVarAiTrafficEta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficEta)
- [func SimVarAiTrafficEtd(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficEtd)
- [func SimVarAiTrafficFromairport(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficFromairport)
- [func SimVarAiTrafficIsifr(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficIsifr)
- [func SimVarAiTrafficState(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficState)
- [func SimVarAiTrafficToairport(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficToairport)
- [func SimVarAiWaypointList(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiWaypointList)
- [func SimVarAileronAverageDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronAverageDeflection)
- [func SimVarAileronLeftDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronLeftDeflection)
- [func SimVarAileronLeftDeflectionPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronLeftDeflectionPct)
- [func SimVarAileronPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronPosition)
- [func SimVarAileronRightDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronRightDeflection)
- [func SimVarAileronRightDeflectionPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronRightDeflectionPct)
- [func SimVarAileronTrim(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronTrim)
- [func SimVarAileronTrimPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronTrimPct)
- [func SimVarAircraftWindX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindX)
- [func SimVarAircraftWindY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindY)
- [func SimVarAircraftWindZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindZ)
- [func SimVarAirspeedBarberPole(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedBarberPole)
- [func SimVarAirspeedIndicated(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedIndicated)
- [func SimVarAirspeedMach(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedMach)
- [func SimVarAirspeedSelectIndicatedOrTrue(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedSelectIndicatedOrTrue)
- [func SimVarAirspeedTrue(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedTrue)
- [func SimVarAirspeedTrueCalibrate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedTrueCalibrate)
- [func SimVarAlternateStaticSourceOpen(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAlternateStaticSourceOpen)
- [func SimVarAmbientDensity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientDensity)
- [func SimVarAmbientInCloud(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientInCloud)
- [func SimVarAmbientPrecipState(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientPrecipState)
- [func SimVarAmbientPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientPressure)
- [func SimVarAmbientTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientTemperature)
- [func SimVarAmbientVisibility(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientVisibility)
- [func SimVarAmbientWindDirection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindDirection)
- [func SimVarAmbientWindVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindVelocity)
- [func SimVarAmbientWindX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindX)
- [func SimVarAmbientWindY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindY)
- [func SimVarAmbientWindZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindZ)
- [func SimVarAnemometerPctRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAnemometerPctRpm)
- [func SimVarAngleOfAttackIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAngleOfAttackIndicator)
- [func SimVarAntiskidBrakesActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAntiskidBrakesActive)
- [func SimVarApplyHeatToSystems(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApplyHeatToSystems)
- [func SimVarApuGeneratorActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuGeneratorActive)
- [func SimVarApuGeneratorSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuGeneratorSwitch)
- [func SimVarApuOnFireDetected(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuOnFireDetected)
- [func SimVarApuPctRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuPctRpm)
- [func SimVarApuPctStarter(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuPctStarter)
- [func SimVarApuVolts(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuVolts)
- [func SimVarArtificialGroundElevation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarArtificialGroundElevation)
- [func SimVarAtcAirline(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcAirline)
- [func SimVarAtcFlightNumber(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcFlightNumber)
- [func SimVarAtcHeavy(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcHeavy)
- [func SimVarAtcId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcId)
- [func SimVarAtcModel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcModel)
- [func SimVarAtcSuggestedMinRwyLanding(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyLanding)
- [func SimVarAtcSuggestedMinRwyTakeoff(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyTakeoff)
- [func SimVarAtcType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcType)
- [func SimVarAttitudeBarsPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeBarsPosition)
- [func SimVarAttitudeCage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeCage)
- [func SimVarAttitudeIndicatorBankDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeIndicatorBankDegrees)
- [func SimVarAttitudeIndicatorPitchDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeIndicatorPitchDegrees)
- [func SimVarAutoBrakeSwitchCb(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutoBrakeSwitchCb)
- [func SimVarAutoCoordination(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutoCoordination)
- [func SimVarAutopilotAirspeedHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAirspeedHold)
- [func SimVarAutopilotAirspeedHoldVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAirspeedHoldVar)
- [func SimVarAutopilotAltitudeLock(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAltitudeLock)
- [func SimVarAutopilotAltitudeLockVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAltitudeLockVar)
- [func SimVarAutopilotApproachHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotApproachHold)
- [func SimVarAutopilotAttitudeHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAttitudeHold)
- [func SimVarAutopilotAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAvailable)
- [func SimVarAutopilotBackcourseHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotBackcourseHold)
- [func SimVarAutopilotFlightDirectorActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorActive)
- [func SimVarAutopilotFlightDirectorBank(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorBank)
- [func SimVarAutopilotFlightDirectorPitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorPitch)
- [func SimVarAutopilotGlideslopeHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotGlideslopeHold)
- [func SimVarAutopilotHeadingLock(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotHeadingLock)
- [func SimVarAutopilotHeadingLockDir(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotHeadingLockDir)
- [func SimVarAutopilotMachHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMachHold)
- [func SimVarAutopilotMachHoldVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMachHoldVar)
- [func SimVarAutopilotMaster(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMaster)
- [func SimVarAutopilotMaxBank(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMaxBank)
- [func SimVarAutopilotNav1Lock(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotNav1Lock)
- [func SimVarAutopilotNavSelected(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotNavSelected)
- [func SimVarAutopilotPitchHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotPitchHold)
- [func SimVarAutopilotPitchHoldRef(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotPitchHoldRef)
- [func SimVarAutopilotRpmHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotRpmHold)
- [func SimVarAutopilotRpmHoldVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotRpmHoldVar)
- [func SimVarAutopilotTakeoffPowerActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotTakeoffPowerActive)
- [func SimVarAutopilotThrottleArm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotThrottleArm)
- [func SimVarAutopilotVerticalHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotVerticalHold)
- [func SimVarAutopilotVerticalHoldVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotVerticalHoldVar)
- [func SimVarAutopilotWingLeveler(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotWingLeveler)
- [func SimVarAutopilotYawDamper(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotYawDamper)
- [func SimVarAutothrottleActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutothrottleActive)
- [func SimVarAuxWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAuxWheelRotationAngle)
- [func SimVarAuxWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAuxWheelRpm)
- [func SimVarAvionicsMasterSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAvionicsMasterSwitch)
- [func SimVarBarberPoleMach(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBarberPoleMach)
- [func SimVarBarometerPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBarometerPressure)
- [func SimVarBetaDot(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBetaDot)
- [func SimVarBlastShieldPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBlastShieldPosition)
- [func SimVarBleedAirSourceControl(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBleedAirSourceControl)
- [func SimVarBrakeDependentHydraulicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeDependentHydraulicPressure)
- [func SimVarBrakeIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeIndicator)
- [func SimVarBrakeLeftPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeLeftPosition)
- [func SimVarBrakeParkingIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeParkingIndicator)
- [func SimVarBrakeParkingPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeParkingPosition)
- [func SimVarBrakeRightPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeRightPosition)
- [func SimVarCabinNoSmokingAlertSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCabinNoSmokingAlertSwitch)
- [func SimVarCabinSeatbeltsAlertSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCabinSeatbeltsAlertSwitch)
- [func SimVarCanopyOpen(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCanopyOpen)
- [func SimVarCarbHeatAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCarbHeatAvailable)
- [func SimVarCategory(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCategory)
- [func SimVarCenterWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCenterWheelRotationAngle)
- [func SimVarCenterWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCenterWheelRpm)
- [func SimVarCgAftLimit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgAftLimit)
- [func SimVarCgFwdLimit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgFwdLimit)
- [func SimVarCgMaxMach(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgMaxMach)
- [func SimVarCgMinMach(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgMinMach)
- [func SimVarCgPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgPercent)
- [func SimVarCgPercentLateral(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgPercentLateral)
- [func SimVarCircuitAutoBrakesOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutoBrakesOn)
- [func SimVarCircuitAutoFeatherOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutoFeatherOn)
- [func SimVarCircuitAutopilotOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutopilotOn)
- [func SimVarCircuitAvionicsOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAvionicsOn)
- [func SimVarCircuitFlapMotorOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitFlapMotorOn)
- [func SimVarCircuitGearMotorOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGearMotorOn)
- [func SimVarCircuitGearWarningOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGearWarningOn)
- [func SimVarCircuitGeneralPanelOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGeneralPanelOn)
- [func SimVarCircuitHydraulicPumpOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitHydraulicPumpOn)
- [func SimVarCircuitMarkerBeaconOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitMarkerBeaconOn)
- [func SimVarCircuitPitotHeatOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitPitotHeatOn)
- [func SimVarCircuitPropSyncOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitPropSyncOn)
- [func SimVarCircuitStandyVacuumOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitStandyVacuumOn)
- [func SimVarComActiveFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComActiveFrequency)
- [func SimVarComAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComAvailable)
- [func SimVarComReceiveAll(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComReceiveAll)
- [func SimVarComRecieveAll(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComRecieveAll)
- [func SimVarComStandbyFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStandbyFrequency)
- [func SimVarComStatus(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStatus)
- [func SimVarComTest(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComTest)
- [func SimVarComTransmit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComTransmit)
- [func SimVarConcordeNoseAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeNoseAngle)
- [func SimVarConcordeVisorNoseHandle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorNoseHandle)
- [func SimVarConcordeVisorPositionPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorPositionPercent)
- [func SimVarCrashFlag(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCrashFlag)
- [func SimVarCrashSequence(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCrashSequence)
- [func SimVarDecisionAltitudeMsl(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDecisionAltitudeMsl)
- [func SimVarDecisionHeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDecisionHeight)
- [func SimVarDeltaHeadingRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDeltaHeadingRate)
- [func SimVarDesignSpeedVc(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVc)
- [func SimVarDesignSpeedVs0(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVs0)
- [func SimVarDesignSpeedVs1(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVs1)
- [func SimVarDiskBankAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskBankAngle)
- [func SimVarDiskBankPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskBankPct)
- [func SimVarDiskConingPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskConingPct)
- [func SimVarDiskPitchAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskPitchAngle)
- [func SimVarDiskPitchPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskPitchPct)
- [func SimVarDmeSound(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDmeSound)
- [func SimVarDroppableObjectsCount(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsCount)
- [func SimVarDroppableObjectsType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsType)
- [func SimVarDroppableObjectsUiName(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsUiName)
- [func SimVarDynamicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDynamicPressure)
- [func SimVarElectricalAvionicsBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalAvionicsBusAmps)
- [func SimVarElectricalAvionicsBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalAvionicsBusVoltage)
- [func SimVarElectricalBatteryBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryBusAmps)
- [func SimVarElectricalBatteryBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryBusVoltage)
- [func SimVarElectricalBatteryLoad(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryLoad)
- [func SimVarElectricalBatteryVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryVoltage)
- [func SimVarElectricalGenaltBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalGenaltBusAmps)
- [func SimVarElectricalGenaltBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalGenaltBusVoltage)
- [func SimVarElectricalHotBatteryBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalHotBatteryBusAmps)
- [func SimVarElectricalHotBatteryBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalHotBatteryBusVoltage)
- [func SimVarElectricalMainBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusAmps)
- [func SimVarElectricalMainBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusVoltage)
- [func SimVarElectricalMasterBattery(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMasterBattery)
- [func SimVarElectricalOldChargingAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalOldChargingAmps)
- [func SimVarElectricalTotalLoadAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalTotalLoadAmps)
- [func SimVarElevatorDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorDeflection)
- [func SimVarElevatorDeflectionPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorDeflectionPct)
- [func SimVarElevatorPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorPosition)
- [func SimVarElevatorTrimIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimIndicator)
- [func SimVarElevatorTrimPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimPct)
- [func SimVarElevatorTrimPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimPosition)
- [func SimVarElevonDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevonDeflection)
- [func SimVarEmptyWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeight)
- [func SimVarEmptyWeightCrossCoupledMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightCrossCoupledMoi)
- [func SimVarEmptyWeightPitchMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightPitchMoi)
- [func SimVarEmptyWeightRollMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightRollMoi)
- [func SimVarEmptyWeightYawMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightYawMoi)
- [func SimVarEngAntiIce(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngAntiIce)
- [func SimVarEngCombustion(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngCombustion)
- [func SimVarEngCylinderHeadTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngCylinderHeadTemperature)
- [func SimVarEngElectricalLoad(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngElectricalLoad)
- [func SimVarEngExhaustGasTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngExhaustGasTemperature)
- [func SimVarEngExhaustGasTemperatureGes(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngExhaustGasTemperatureGes)
- [func SimVarEngFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFailed)
- [func SimVarEngFuelFlowBugPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelFlowBugPosition)
- [func SimVarEngFuelFlowPph(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelFlowPph)
- [func SimVarEngFuelPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelPressure)
- [func SimVarEngHydraulicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngHydraulicPressure)
- [func SimVarEngHydraulicQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngHydraulicQuantity)
- [func SimVarEngManifoldPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngManifoldPressure)
- [func SimVarEngMaxRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngMaxRpm)
- [func SimVarEngN1Rpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngN1Rpm)
- [func SimVarEngN2Rpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngN2Rpm)
- [func SimVarEngOilPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilPressure)
- [func SimVarEngOilQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilQuantity)
- [func SimVarEngOilTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilTemperature)
- [func SimVarEngOnFire(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOnFire)
- [func SimVarEngPressureRatio(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngPressureRatio)
- [func SimVarEngRotorRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRotorRpm)
- [func SimVarEngRpmAnimationPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRpmAnimationPercent)
- [func SimVarEngRpmScaler(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRpmScaler)
- [func SimVarEngTorque(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTorque)
- [func SimVarEngTorquePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTorquePercent)
- [func SimVarEngTransmissionPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTransmissionPressure)
- [func SimVarEngTransmissionTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTransmissionTemperature)
- [func SimVarEngTurbineTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTurbineTemperature)
- [func SimVarEngVibration(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngVibration)
- [func SimVarEngineControlSelect(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineControlSelect)
- [func SimVarEngineMixureAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineMixureAvailable)
- [func SimVarEngineType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineType)
- [func SimVarEstimatedCruiseSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEstimatedCruiseSpeed)
- [func SimVarEstimatedFuelFlow(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEstimatedFuelFlow)
- [func SimVarExitOpen(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitOpen)
- [func SimVarExitPosx(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosx)
- [func SimVarExitPosy(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosy)
- [func SimVarExitPosz(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosz)
- [func SimVarExitType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitType)
- [func SimVarEyepointPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEyepointPosition)
- [func SimVarFireBottleDischarged(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFireBottleDischarged)
- [func SimVarFireBottleSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFireBottleSwitch)
- [func SimVarFlapDamageBySpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapDamageBySpeed)
- [func SimVarFlapSpeedExceeded(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapSpeedExceeded)
- [func SimVarFlapsAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsAvailable)
- [func SimVarFlapsHandleIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandleIndex)
- [func SimVarFlapsHandlePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandlePercent)
- [func SimVarFlapsNumHandlePositions(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsNumHandlePositions)
- [func SimVarFlyByWireElacFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireElacFailed)
- [func SimVarFlyByWireElacSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireElacSwitch)
- [func SimVarFlyByWireFacFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireFacFailed)
- [func SimVarFlyByWireFacSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireFacSwitch)
- [func SimVarFlyByWireSecFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireSecFailed)
- [func SimVarFlyByWireSecSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireSecSwitch)
- [func SimVarFoldingWingLeftPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFoldingWingLeftPercent)
- [func SimVarFoldingWingRightPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFoldingWingRightPercent)
- [func SimVarFuelCrossFeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelCrossFeed)
- [func SimVarFuelLeftCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelLeftCapacity)
- [func SimVarFuelLeftQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelLeftQuantity)
- [func SimVarFuelRightCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelRightCapacity)
- [func SimVarFuelRightQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelRightQuantity)
- [func SimVarFuelSelectedQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedQuantity)
- [func SimVarFuelSelectedQuantityPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedQuantityPercent)
- [func SimVarFuelSelectedTransferMode(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedTransferMode)
- [func SimVarFuelTankCenter2Capacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Capacity)
- [func SimVarFuelTankCenter2Level(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Level)
- [func SimVarFuelTankCenter2Quantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Quantity)
- [func SimVarFuelTankCenter3Capacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Capacity)
- [func SimVarFuelTankCenter3Level(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Level)
- [func SimVarFuelTankCenter3Quantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Quantity)
- [func SimVarFuelTankCenterCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterCapacity)
- [func SimVarFuelTankCenterLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterLevel)
- [func SimVarFuelTankCenterQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterQuantity)
- [func SimVarFuelTankExternal1Capacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Capacity)
- [func SimVarFuelTankExternal1Level(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Level)
- [func SimVarFuelTankExternal1Quantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Quantity)
- [func SimVarFuelTankExternal2Capacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Capacity)
- [func SimVarFuelTankExternal2Level(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Level)
- [func SimVarFuelTankExternal2Quantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Quantity)
- [func SimVarFuelTankLeftAuxCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxCapacity)
- [func SimVarFuelTankLeftAuxLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxLevel)
- [func SimVarFuelTankLeftAuxQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxQuantity)
- [func SimVarFuelTankLeftMainCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainCapacity)
- [func SimVarFuelTankLeftMainLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainLevel)
- [func SimVarFuelTankLeftMainQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainQuantity)
- [func SimVarFuelTankLeftTipCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipCapacity)
- [func SimVarFuelTankLeftTipLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipLevel)
- [func SimVarFuelTankLeftTipQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipQuantity)
- [func SimVarFuelTankRightAuxCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxCapacity)
- [func SimVarFuelTankRightAuxLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxLevel)
- [func SimVarFuelTankRightAuxQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxQuantity)
- [func SimVarFuelTankRightMainCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainCapacity)
- [func SimVarFuelTankRightMainLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainLevel)
- [func SimVarFuelTankRightMainQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainQuantity)
- [func SimVarFuelTankRightTipCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipCapacity)
- [func SimVarFuelTankRightTipLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipLevel)
- [func SimVarFuelTankRightTipQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipQuantity)
- [func SimVarFuelTankSelector(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankSelector)
- [func SimVarFuelTotalCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalCapacity)
- [func SimVarFuelTotalQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalQuantity)
- [func SimVarFuelTotalQuantityWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalQuantityWeight)
- [func SimVarFuelWeightPerGallon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelWeightPerGallon)
- [func SimVarFullThrottleThrustToWeightRatio(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFullThrottleThrustToWeightRatio)
- [func SimVarGForce(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGForce)
- [func SimVarGearAnimationPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAnimationPosition)
- [func SimVarGearAuxPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxPosition)
- [func SimVarGearAuxSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxSteerAngle)
- [func SimVarGearAuxSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxSteerAnglePct)
- [func SimVarGearCenterPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterPosition)
- [func SimVarGearCenterSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterSteerAngle)
- [func SimVarGearCenterSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterSteerAnglePct)
- [func SimVarGearDamageBySpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearDamageBySpeed)
- [func SimVarGearEmergencyHandlePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearEmergencyHandlePosition)
- [func SimVarGearHandlePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHandlePosition)
- [func SimVarGearHydraulicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHydraulicPressure)
- [func SimVarGearLeftPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftPosition)
- [func SimVarGearLeftSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftSteerAngle)
- [func SimVarGearLeftSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftSteerAnglePct)
- [func SimVarGearPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearPosition)
- [func SimVarGearRightPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightPosition)
- [func SimVarGearRightSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightSteerAngle)
- [func SimVarGearRightSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightSteerAnglePct)
- [func SimVarGearSpeedExceeded(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSpeedExceeded)
- [func SimVarGearSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSteerAngle)
- [func SimVarGearSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSteerAnglePct)
- [func SimVarGearTailPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearTailPosition)
- [func SimVarGearTotalPctExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearTotalPctExtended)
- [func SimVarGearWarning(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearWarning)
- [func SimVarGeneralEngAntiIcePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngAntiIcePosition)
- [func SimVarGeneralEngCombustion(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngCombustion)
- [func SimVarGeneralEngCombustionSoundPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngCombustionSoundPercent)
- [func SimVarGeneralEngDamagePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngDamagePercent)
- [func SimVarGeneralEngElapsedTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngElapsedTime)
- [func SimVarGeneralEngExhaustGasTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngExhaustGasTemperature)
- [func SimVarGeneralEngFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFailed)
- [func SimVarGeneralEngFuelPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPressure)
- [func SimVarGeneralEngFuelPumpOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPumpOn)
- [func SimVarGeneralEngFuelPumpSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPumpSwitch)
- [func SimVarGeneralEngFuelUsedSinceStart(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelUsedSinceStart)
- [func SimVarGeneralEngFuelValve(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelValve)
- [func SimVarGeneralEngGeneratorActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngGeneratorActive)
- [func SimVarGeneralEngGeneratorSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngGeneratorSwitch)
- [func SimVarGeneralEngMasterAlternator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMasterAlternator)
- [func SimVarGeneralEngMaxReachedRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMaxReachedRpm)
- [func SimVarGeneralEngMixtureLeverPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMixtureLeverPosition)
- [func SimVarGeneralEngOilLeakedPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilLeakedPercent)
- [func SimVarGeneralEngOilPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilPressure)
- [func SimVarGeneralEngOilTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilTemperature)
- [func SimVarGeneralEngPctMaxRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngPctMaxRpm)
- [func SimVarGeneralEngPropellerLeverPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngPropellerLeverPosition)
- [func SimVarGeneralEngRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngRpm)
- [func SimVarGeneralEngStarter(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngStarter)
- [func SimVarGeneralEngStarterActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngStarterActive)
- [func SimVarGeneralEngThrottleLeverPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngThrottleLeverPosition)
- [func SimVarGenerator(iFace interface{}) (\[\]SimVar, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGenerator)
- [func SimVarGpsApproachAirportId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachAirportId)
- [func SimVarGpsApproachApproachId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachId)
- [func SimVarGpsApproachApproachIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachIndex)
- [func SimVarGpsApproachApproachType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachType)
- [func SimVarGpsApproachIsFinal(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsFinal)
- [func SimVarGpsApproachIsMissed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsMissed)
- [func SimVarGpsApproachIsWpRunway(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsWpRunway)
- [func SimVarGpsApproachMode(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachMode)
- [func SimVarGpsApproachSegmentType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachSegmentType)
- [func SimVarGpsApproachTimezoneDeviation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTimezoneDeviation)
- [func SimVarGpsApproachTransitionId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTransitionId)
- [func SimVarGpsApproachTransitionIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTransitionIndex)
- [func SimVarGpsApproachWpCount(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpCount)
- [func SimVarGpsApproachWpIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpIndex)
- [func SimVarGpsApproachWpType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpType)
- [func SimVarGpsCourseToSteer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsCourseToSteer)
- [func SimVarGpsDrivesNav1(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsDrivesNav1)
- [func SimVarGpsEta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsEta)
- [func SimVarGpsEte(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsEte)
- [func SimVarGpsFlightPlanWpCount(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsFlightPlanWpCount)
- [func SimVarGpsFlightPlanWpIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsFlightPlanWpIndex)
- [func SimVarGpsGroundMagneticTrack(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundMagneticTrack)
- [func SimVarGpsGroundSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundSpeed)
- [func SimVarGpsGroundTrueHeading(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundTrueHeading)
- [func SimVarGpsGroundTrueTrack(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundTrueTrack)
- [func SimVarGpsIsActiveFlightPlan(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveFlightPlan)
- [func SimVarGpsIsActiveWayPoint(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveWayPoint)
- [func SimVarGpsIsActiveWpLocked(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveWpLocked)
- [func SimVarGpsIsApproachActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsApproachActive)
- [func SimVarGpsIsApproachLoaded(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsApproachLoaded)
- [func SimVarGpsIsArrived(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsArrived)
- [func SimVarGpsIsDirecttoFlightplan(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsDirecttoFlightplan)
- [func SimVarGpsMagvar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsMagvar)
- [func SimVarGpsPositionAlt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionAlt)
- [func SimVarGpsPositionLat(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionLat)
- [func SimVarGpsPositionLon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionLon)
- [func SimVarGpsTargetAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsTargetAltitude)
- [func SimVarGpsTargetDistance(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsTargetDistance)
- [func SimVarGpsWpBearing(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpBearing)
- [func SimVarGpsWpCrossTrk(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpCrossTrk)
- [func SimVarGpsWpDesiredTrack(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpDesiredTrack)
- [func SimVarGpsWpDistance(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpDistance)
- [func SimVarGpsWpEta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpEta)
- [func SimVarGpsWpEte(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpEte)
- [func SimVarGpsWpNextAlt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextAlt)
- [func SimVarGpsWpNextId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextId)
- [func SimVarGpsWpNextLat(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextLat)
- [func SimVarGpsWpNextLon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextLon)
- [func SimVarGpsWpPrevAlt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevAlt)
- [func SimVarGpsWpPrevId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevId)
- [func SimVarGpsWpPrevLat(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevLat)
- [func SimVarGpsWpPrevLon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevLon)
- [func SimVarGpsWpPrevValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevValid)
- [func SimVarGpsWpTrackAngleError(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrackAngleError)
- [func SimVarGpsWpTrueBearing(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrueBearing)
- [func SimVarGpsWpTrueReqHdg(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrueReqHdg)
- [func SimVarGpsWpVerticalSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpVerticalSpeed)
- [func SimVarGpwsSystemActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpwsSystemActive)
- [func SimVarGpwsWarning(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpwsWarning)
- [func SimVarGroundAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGroundAltitude)
- [func SimVarGroundVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGroundVelocity)
- [func SimVarGyroDriftError(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGyroDriftError)
- [func SimVarHeadingIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHeadingIndicator)
- [func SimVarHoldbackBarInstalled(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHoldbackBarInstalled)
- [func SimVarHsiBearing(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiBearing)
- [func SimVarHsiBearingValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiBearingValid)
- [func SimVarHsiCdiNeedle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiCdiNeedle)
- [func SimVarHsiCdiNeedleValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiCdiNeedleValid)
- [func SimVarHsiDistance(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiDistance)
- [func SimVarHsiGsiNeedle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiGsiNeedle)
- [func SimVarHsiGsiNeedleValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiGsiNeedleValid)
- [func SimVarHsiHasLocalizer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiHasLocalizer)
- [func SimVarHsiSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiSpeed)
- [func SimVarHsiStationIdent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiStationIdent)
- [func SimVarHsiTfFlags(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiTfFlags)
- [func SimVarHydraulicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicPressure)
- [func SimVarHydraulicReservoirPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicReservoirPercent)
- [func SimVarHydraulicSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicSwitch)
- [func SimVarHydraulicSystemIntegrity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicSystemIntegrity)
- [func SimVarIncidenceAlpha(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIncidenceAlpha)
- [func SimVarIncidenceBeta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIncidenceBeta)
- [func SimVarIndicatedAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIndicatedAltitude)
- [func SimVarInductorCompassHeadingRef(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInductorCompassHeadingRef)
- [func SimVarInductorCompassPercentDeviation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInductorCompassPercentDeviation)
- [func SimVarInnerMarker(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInnerMarker)
- [func SimVarInnerMarkerLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInnerMarkerLatlonalt)
- [func SimVarIsAltitudeFreezeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAltitudeFreezeOn)
- [func SimVarIsAttachedToSling(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAttachedToSling)
- [func SimVarIsAttitudeFreezeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAttitudeFreezeOn)
- [func SimVarIsGearFloats(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearFloats)
- [func SimVarIsGearRetractable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearRetractable)
- [func SimVarIsGearSkids(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearSkids)
- [func SimVarIsGearSkis(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearSkis)
- [func SimVarIsGearWheels(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearWheels)
- [func SimVarIsLatitudeLongitudeFreezeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsLatitudeLongitudeFreezeOn)
- [func SimVarIsSlewActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsSlewActive)
- [func SimVarIsSlewAllowed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsSlewAllowed)
- [func SimVarIsTailDragger(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsTailDragger)
- [func SimVarIsUserSim(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsUserSim)
- [func SimVarKohlsmanSettingHg(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarKohlsmanSettingHg)
- [func SimVarKohlsmanSettingMb(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarKohlsmanSettingMb)
- [func SimVarLandingLightPbh(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLandingLightPbh)
- [func SimVarLaunchbarPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLaunchbarPosition)
- [func SimVarLeadingEdgeFlapsLeftAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsLeftAngle)
- [func SimVarLeadingEdgeFlapsLeftPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsLeftPercent)
- [func SimVarLeadingEdgeFlapsRightAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsRightAngle)
- [func SimVarLeadingEdgeFlapsRightPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsRightPercent)
- [func SimVarLeftWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeftWheelRotationAngle)
- [func SimVarLeftWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeftWheelRpm)
- [func SimVarLightBeacon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBeacon)
- [func SimVarLightBeaconOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBeaconOn)
- [func SimVarLightBrakeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBrakeOn)
- [func SimVarLightCabin(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightCabin)
- [func SimVarLightCabinOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightCabinOn)
- [func SimVarLightHeadOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightHeadOn)
- [func SimVarLightLanding(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLanding)
- [func SimVarLightLandingOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLandingOn)
- [func SimVarLightLogo(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLogo)
- [func SimVarLightLogoOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLogoOn)
- [func SimVarLightNav(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightNav)
- [func SimVarLightNavOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightNavOn)
- [func SimVarLightOnStates(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightOnStates)
- [func SimVarLightPanel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightPanel)
- [func SimVarLightPanelOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightPanelOn)
- [func SimVarLightRecognition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightRecognition)
- [func SimVarLightRecognitionOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightRecognitionOn)
- [func SimVarLightStates(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStates)
- [func SimVarLightStrobe(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStrobe)
- [func SimVarLightStrobeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStrobeOn)
- [func SimVarLightTaxi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightTaxi)
- [func SimVarLightTaxiOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightTaxiOn)
- [func SimVarLightWing(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightWing)
- [func SimVarLightWingOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightWingOn)
- [func SimVarLinearClAlpha(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLinearClAlpha)
- [func SimVarLocalDayOfMonth(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfMonth)
- [func SimVarLocalDayOfWeek(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfWeek)
- [func SimVarLocalDayOfYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfYear)
- [func SimVarLocalMonthOfYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalMonthOfYear)
- [func SimVarLocalTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalTime)
- [func SimVarLocalYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalYear)
- [func SimVarMachMaxOperate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMachMaxOperate)
- [func SimVarMagneticCompass(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMagneticCompass)
- [func SimVarMagvar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMagvar)
- [func SimVarManualFuelPumpHandle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualFuelPumpHandle)
- [func SimVarManualInstrumentLights(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualInstrumentLights)
- [func SimVarMarkerBeaconState(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMarkerBeaconState)
- [func SimVarMarkerSound(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMarkerSound)
- [func SimVarMasterIgnitionSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMasterIgnitionSwitch)
- [func SimVarMaxGForce(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxGForce)
- [func SimVarMaxGrossWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxGrossWeight)
- [func SimVarMaxRatedEngineRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxRatedEngineRpm)
- [func SimVarMiddleMarker(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMiddleMarker)
- [func SimVarMiddleMarkerLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMiddleMarkerLatlonalt)
- [func SimVarMinDragVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMinDragVelocity)
- [func SimVarMinGForce(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMinGForce)
- [func SimVarNavActiveFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavActiveFrequency)
- [func SimVarNavAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavAvailable)
- [func SimVarNavBackCourseFlags(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavBackCourseFlags)
- [func SimVarNavCdi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavCdi)
- [func SimVarNavCodes(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavCodes)
- [func SimVarNavDme(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDme)
- [func SimVarNavDmeLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDmeLatlonalt)
- [func SimVarNavDmespeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDmespeed)
- [func SimVarNavGlideSlope(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGlideSlope)
- [func SimVarNavGlideSlopeError(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGlideSlopeError)
- [func SimVarNavGsFlag(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsFlag)
- [func SimVarNavGsLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsLatlonalt)
- [func SimVarNavGsLlaf64(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsLlaf64)
- [func SimVarNavGsi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsi)
- [func SimVarNavHasDme(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasDme)
- [func SimVarNavHasGlideSlope(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasGlideSlope)
- [func SimVarNavHasLocalizer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasLocalizer)
- [func SimVarNavHasNav(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasNav)
- [func SimVarNavIdent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavIdent)
- [func SimVarNavLocalizer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavLocalizer)
- [func SimVarNavMagvar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavMagvar)
- [func SimVarNavName(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavName)
- [func SimVarNavObs(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavObs)
- [func SimVarNavRadial(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRadial)
- [func SimVarNavRadialError(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRadialError)
- [func SimVarNavRawGlideSlope(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRawGlideSlope)
- [func SimVarNavRelativeBearingToStation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRelativeBearingToStation)
- [func SimVarNavSignal(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavSignal)
- [func SimVarNavSound(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavSound)
- [func SimVarNavStandbyFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavStandbyFrequency)
- [func SimVarNavTofrom(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavTofrom)
- [func SimVarNavVorLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavVorLatlonalt)
- [func SimVarNavVorLlaf64(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavVorLlaf64)
- [func SimVarNumFuelSelectors(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumFuelSelectors)
- [func SimVarNumberOfCatapults(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumberOfCatapults)
- [func SimVarNumberOfEngines(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumberOfEngines)
- [func SimVarOuterMarker(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOuterMarker)
- [func SimVarOuterMarkerLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOuterMarkerLatlonalt)
- [func SimVarOverspeedWarning(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOverspeedWarning)
- [func SimVarPanelAntiIceSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPanelAntiIceSwitch)
- [func SimVarPanelAutoFeatherSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPanelAutoFeatherSwitch)
- [func SimVarPartialPanelAdf(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAdf)
- [func SimVarPartialPanelAirspeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAirspeed)
- [func SimVarPartialPanelAltimeter(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAltimeter)
- [func SimVarPartialPanelAttitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAttitude)
- [func SimVarPartialPanelAvionics(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAvionics)
- [func SimVarPartialPanelComm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelComm)
- [func SimVarPartialPanelCompass(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelCompass)
- [func SimVarPartialPanelElectrical(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelElectrical)
- [func SimVarPartialPanelEngine(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelEngine)
- [func SimVarPartialPanelFuelIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelFuelIndicator)
- [func SimVarPartialPanelHeading(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelHeading)
- [func SimVarPartialPanelNav(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelNav)
- [func SimVarPartialPanelPitot(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelPitot)
- [func SimVarPartialPanelTransponder(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelTransponder)
- [func SimVarPartialPanelTurnCoordinator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelTurnCoordinator)
- [func SimVarPartialPanelVacuum(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelVacuum)
- [func SimVarPartialPanelVerticalVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelVerticalVelocity)
- [func SimVarPayloadStationCount(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationCount)
- [func SimVarPayloadStationName(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationName)
- [func SimVarPayloadStationNumSimobjects(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationNumSimobjects)
- [func SimVarPayloadStationObject(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationObject)
- [func SimVarPayloadStationWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationWeight)
- [func SimVarPitotHeat(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPitotHeat)
- [func SimVarPitotIcePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPitotIcePct)
- [func SimVarPlaneAltAboveGround(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneAltAboveGround)
- [func SimVarPlaneAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneAltitude)
- [func SimVarPlaneBankDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneBankDegrees)
- [func SimVarPlaneHeadingDegreesGyro(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesGyro)
- [func SimVarPlaneHeadingDegreesMagnetic(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesMagnetic)
- [func SimVarPlaneHeadingDegreesTrue(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesTrue)
- [func SimVarPlaneLatitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneLatitude)
- [func SimVarPlaneLongitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneLongitude)
- [func SimVarPlanePitchDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlanePitchDegrees)
- [func SimVarPressureAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressureAltitude)
- [func SimVarPressurizationCabinAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitude)
- [func SimVarPressurizationCabinAltitudeGoal(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitudeGoal)
- [func SimVarPressurizationCabinAltitudeRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitudeRate)
- [func SimVarPressurizationDumpSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationDumpSwitch)
- [func SimVarPressurizationPressureDifferential(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationPressureDifferential)
- [func SimVarPropAutoCruiseActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropAutoCruiseActive)
- [func SimVarPropAutoFeatherArmed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropAutoFeatherArmed)
- [func SimVarPropBeta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBeta)
- [func SimVarPropBetaMax(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMax)
- [func SimVarPropBetaMin(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMin)
- [func SimVarPropBetaMinReverse(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMinReverse)
- [func SimVarPropDeiceSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropDeiceSwitch)
- [func SimVarPropFeatherSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeatherSwitch)
- [func SimVarPropFeathered(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeathered)
- [func SimVarPropFeatheringInhibit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeatheringInhibit)
- [func SimVarPropMaxRpmPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropMaxRpmPercent)
- [func SimVarPropRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropRotationAngle)
- [func SimVarPropRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropRpm)
- [func SimVarPropSyncActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropSyncActive)
- [func SimVarPropSyncDeltaLever(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropSyncDeltaLever)
- [func SimVarPropThrust(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropThrust)
- [func SimVarPushbackAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackAngle)
- [func SimVarPushbackContactx(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContactx)
- [func SimVarPushbackContacty(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContacty)
- [func SimVarPushbackContactz(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContactz)
- [func SimVarPushbackState(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackState)
- [func SimVarPushbackWait(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackWait)
- [func SimVarRadInsSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRadInsSwitch)
- [func SimVarRadioHeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRadioHeight)
- [func SimVarRealism(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealism)
- [func SimVarRealismCrashDetection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealismCrashDetection)
- [func SimVarRealismCrashWithOthers(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealismCrashWithOthers)
- [func SimVarRecipCarburetorTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipCarburetorTemperature)
- [func SimVarRecipEngAlternateAirPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAlternateAirPosition)
- [func SimVarRecipEngAntidetonationTankMaxQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankMaxQuantity)
- [func SimVarRecipEngAntidetonationTankQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankQuantity)
- [func SimVarRecipEngAntidetonationTankValve(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankValve)
- [func SimVarRecipEngBrakePower(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngBrakePower)
- [func SimVarRecipEngCoolantReservoirPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCoolantReservoirPercent)
- [func SimVarRecipEngCowlFlapPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCowlFlapPosition)
- [func SimVarRecipEngCylinderHeadTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCylinderHeadTemperature)
- [func SimVarRecipEngCylinderHealth(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCylinderHealth)
- [func SimVarRecipEngDetonating(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngDetonating)
- [func SimVarRecipEngEmergencyBoostActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngEmergencyBoostActive)
- [func SimVarRecipEngEmergencyBoostElapsedTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngEmergencyBoostElapsedTime)
- [func SimVarRecipEngFuelAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelAvailable)
- [func SimVarRecipEngFuelFlow(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelFlow)
- [func SimVarRecipEngFuelNumberTanksUsed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelNumberTanksUsed)
- [func SimVarRecipEngFuelTankSelector(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelTankSelector)
- [func SimVarRecipEngFuelTanksUsed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelTanksUsed)
- [func SimVarRecipEngLeftMagneto(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngLeftMagneto)
- [func SimVarRecipEngManifoldPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngManifoldPressure)
- [func SimVarRecipEngNitrousTankMaxQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankMaxQuantity)
- [func SimVarRecipEngNitrousTankQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankQuantity)
- [func SimVarRecipEngNitrousTankValve(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankValve)
- [func SimVarRecipEngNumCylinders(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNumCylinders)
- [func SimVarRecipEngNumCylindersFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNumCylindersFailed)
- [func SimVarRecipEngPrimer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngPrimer)
- [func SimVarRecipEngRadiatorTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngRadiatorTemperature)
- [func SimVarRecipEngRightMagneto(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngRightMagneto)
- [func SimVarRecipEngStarterTorque(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngStarterTorque)
- [func SimVarRecipEngTurbineInletTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngTurbineInletTemperature)
- [func SimVarRecipEngTurbochargerFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngTurbochargerFailed)
- [func SimVarRecipEngWastegatePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngWastegatePosition)
- [func SimVarRecipMixtureRatio(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipMixtureRatio)
- [func SimVarRelativeWindVelocityBodyX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyX)
- [func SimVarRelativeWindVelocityBodyY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyY)
- [func SimVarRelativeWindVelocityBodyZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyZ)
- [func SimVarRetractFloatSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractFloatSwitch)
- [func SimVarRetractLeftFloatExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractLeftFloatExtended)
- [func SimVarRetractRightFloatExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractRightFloatExtended)
- [func SimVarRightWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRightWheelRotationAngle)
- [func SimVarRightWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRightWheelRpm)
- [func SimVarRotationVelocityBodyX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyX)
- [func SimVarRotationVelocityBodyY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyY)
- [func SimVarRotationVelocityBodyZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyZ)
- [func SimVarRotorBrakeActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeActive)
- [func SimVarRotorBrakeHandlePos(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeHandlePos)
- [func SimVarRotorChipDetected(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorChipDetected)
- [func SimVarRotorClutchActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorClutchActive)
- [func SimVarRotorClutchSwitchPos(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorClutchSwitchPos)
- [func SimVarRotorGovActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorGovActive)
- [func SimVarRotorGovSwitchPos(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorGovSwitchPos)
- [func SimVarRotorLateralTrimPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorLateralTrimPct)
- [func SimVarRotorRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorRotationAngle)
- [func SimVarRotorRpmPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorRpmPct)
- [func SimVarRotorTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorTemperature)
- [func SimVarRudderDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderDeflection)
- [func SimVarRudderDeflectionPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderDeflectionPct)
- [func SimVarRudderPedalIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPedalIndicator)
- [func SimVarRudderPedalPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPedalPosition)
- [func SimVarRudderPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPosition)
- [func SimVarRudderTrim(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderTrim)
- [func SimVarRudderTrimPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderTrimPct)
- [func SimVarSeaLevelPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSeaLevelPressure)
- [func SimVarSelectedDme(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSelectedDme)
- [func SimVarSemibodyLoadfactorY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorY)
- [func SimVarSemibodyLoadfactorYdot(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorYdot)
- [func SimVarSigmaSqrt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSigmaSqrt)
- [func SimVarSimDisabled(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimDisabled)
- [func SimVarSimOnGround(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimOnGround)
- [func SimVarSimulatedRadius(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimulatedRadius)
- [func SimVarSimulationRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimulationRate)
- [func SimVarSlingActivePayloadStation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingActivePayloadStation)
- [func SimVarSlingCableBroken(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingCableBroken)
- [func SimVarSlingCableExtendedLength(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingCableExtendedLength)
- [func SimVarSlingHoistPercentDeployed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingHoistPercentDeployed)
- [func SimVarSlingHookInPickupMode(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingHookInPickupMode)
- [func SimVarSlingObjectAttached(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingObjectAttached)
- [func SimVarSmokeEnable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSmokeEnable)
- [func SimVarSmokesystemAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSmokesystemAvailable)
- [func SimVarSpoilerAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilerAvailable)
- [func SimVarSpoilersArmed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersArmed)
- [func SimVarSpoilersHandlePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersHandlePosition)
- [func SimVarSpoilersLeftPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersLeftPosition)
- [func SimVarSpoilersRightPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersRightPosition)
- [func SimVarStallAlpha(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallAlpha)
- [func SimVarStallHornAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallHornAvailable)
- [func SimVarStallWarning(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallWarning)
- [func SimVarStandardAtmTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStandardAtmTemperature)
- [func SimVarStaticCgToGround(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStaticCgToGround)
- [func SimVarStaticPitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStaticPitch)
- [func SimVarSteerInputControl(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSteerInputControl)
- [func SimVarStrobesAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStrobesAvailable)
- [func SimVarStructAmbientWind(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructAmbientWind)
- [func SimVarStructBodyRotationVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyRotationVelocity)
- [func SimVarStructBodyVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyVelocity)
- [func SimVarStructEnginePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEnginePosition)
- [func SimVarStructEyepointDynamicAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEyepointDynamicAngle)
- [func SimVarStructEyepointDynamicOffset(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEyepointDynamicOffset)
- [func SimVarStructLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructLatlonalt)
- [func SimVarStructLatlonaltpbh(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructLatlonaltpbh)
- [func SimVarStructSurfaceRelativeVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructSurfaceRelativeVelocity)
- [func SimVarStructWorldAcceleration(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldAcceleration)
- [func SimVarStructWorldRotationVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldRotationVelocity)
- [func SimVarStructWorldvelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldvelocity)
- [func SimVarStructuralDeiceSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructuralDeiceSwitch)
- [func SimVarStructuralIcePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructuralIcePct)
- [func SimVarSuctionPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSuctionPressure)
- [func SimVarSurfaceCondition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceCondition)
- [func SimVarSurfaceInfoValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceInfoValid)
- [func SimVarSurfaceType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceType)
- [func SimVarTailhookPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTailhookPosition)
- [func SimVarTailwheelLockOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTailwheelLockOn)
- [func SimVarThrottleLowerLimit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarThrottleLowerLimit)
- [func SimVarTimeOfDay(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTimeOfDay)
- [func SimVarTimeZoneOffset(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTimeZoneOffset)
- [func SimVarTitle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTitle)
- [func SimVarToeBrakesAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarToeBrakesAvailable)
- [func SimVarTotalAirTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalAirTemperature)
- [func SimVarTotalVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalVelocity)
- [func SimVarTotalWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeight)
- [func SimVarTotalWeightCrossCoupledMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightCrossCoupledMoi)
- [func SimVarTotalWeightPitchMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightPitchMoi)
- [func SimVarTotalWeightRollMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightRollMoi)
- [func SimVarTotalWeightYawMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightYawMoi)
- [func SimVarTotalWorldVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWorldVelocity)
- [func SimVarTowConnection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowConnection)
- [func SimVarTowReleaseHandle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowReleaseHandle)
- [func SimVarTrailingEdgeFlapsLeftAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsLeftAngle)
- [func SimVarTrailingEdgeFlapsLeftPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsLeftPercent)
- [func SimVarTrailingEdgeFlapsRightAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsRightAngle)
- [func SimVarTrailingEdgeFlapsRightPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsRightPercent)
- [func SimVarTransponderAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTransponderAvailable)
- [func SimVarTransponderCode(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTransponderCode)
- [func SimVarTrueAirspeedSelected(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrueAirspeedSelected)
- [func SimVarTurbEngAfterburner(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngAfterburner)
- [func SimVarTurbEngBleedAir(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngBleedAir)
- [func SimVarTurbEngCorrectedFf(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedFf)
- [func SimVarTurbEngCorrectedN1(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedN1)
- [func SimVarTurbEngCorrectedN2(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedN2)
- [func SimVarTurbEngFuelAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngFuelAvailable)
- [func SimVarTurbEngFuelFlowPph(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngFuelFlowPph)
- [func SimVarTurbEngIgnitionSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngIgnitionSwitch)
- [func SimVarTurbEngItt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngItt)
- [func SimVarTurbEngJetThrust(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngJetThrust)
- [func SimVarTurbEngMasterStarterSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngMasterStarterSwitch)
- [func SimVarTurbEngMaxTorquePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngMaxTorquePercent)
- [func SimVarTurbEngN1(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngN1)
- [func SimVarTurbEngN2(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngN2)
- [func SimVarTurbEngNumTanksUsed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngNumTanksUsed)
- [func SimVarTurbEngPressureRatio(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngPressureRatio)
- [func SimVarTurbEngPrimaryNozzlePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngPrimaryNozzlePercent)
- [func SimVarTurbEngReverseNozzlePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngReverseNozzlePercent)
- [func SimVarTurbEngTankSelector(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngTankSelector)
- [func SimVarTurbEngTanksUsed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngTanksUsed)
- [func SimVarTurbEngVibration(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngVibration)
- [func SimVarTurnCoordinatorBall(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnCoordinatorBall)
- [func SimVarTurnIndicatorRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnIndicatorRate)
- [func SimVarTurnIndicatorSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnIndicatorSwitch)
- [func SimVarTypicalDescentRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTypicalDescentRate)
- [func SimVarUnitOfMeasure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnitOfMeasure)
- [func SimVarUnlimitedFuel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnlimitedFuel)
- [func SimVarUserInputEnabled(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUserInputEnabled)
- [func SimVarVariometerRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVariometerRate)
- [func SimVarVariometerSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVariometerSwitch)
- [func SimVarVelocityBodyX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyX)
- [func SimVarVelocityBodyY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyY)
- [func SimVarVelocityBodyZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyZ)
- [func SimVarVelocityWorldX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldX)
- [func SimVarVelocityWorldY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldY)
- [func SimVarVelocityWorldZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldZ)
- [func SimVarVerticalSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVerticalSpeed)
- [func SimVarVisualModelRadius(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVisualModelRadius)
- [func SimVarWaterBallastValve(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterBallastValve)
- [func SimVarWaterLeftRudderExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderExtended)
- [func SimVarWaterLeftRudderSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderSteerAngle)
- [func SimVarWaterLeftRudderSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderSteerAnglePct)
- [func SimVarWaterRightRudderExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderExtended)
- [func SimVarWaterRightRudderSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderSteerAngle)
- [func SimVarWaterRightRudderSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderSteerAnglePct)
- [func SimVarWaterRudderHandlePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRudderHandlePosition)
- [func SimVarWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWheelRotationAngle)
- [func SimVarWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWheelRpm)
- [func SimVarWindshieldRainEffectAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWindshieldRainEffectAvailable)
- [func SimVarWingArea(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingArea)
- [func SimVarWingFlexPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingFlexPct)
- [func SimVarWingSpan(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingSpan)
- [func SimVarWiskeyCompassIndicationDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWiskeyCompassIndicationDegrees)
- [func SimVarYawStringAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYawStringAngle)
- [func SimVarYawStringPctExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYawStringPctExtended)
- [func SimVarYokeXIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeXIndicator)
- [func SimVarYokeXPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeXPosition)
- [func SimVarYokeYIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeYIndicator)
- [func SimVarYokeYPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeYPosition)
- [func SimVarZeroLiftAlpha(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZeroLiftAlpha)
- [func SimVarZuluDayOfMonth(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfMonth)
- [func SimVarZuluDayOfWeek(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfWeek)
- [func SimVarZuluDayOfYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfYear)
- [func SimVarZuluMonthOfYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluMonthOfYear)
- [func SimVarZuluTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluTime)
- [func SimVarZuluYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluYear)
- - [func (s \*SimVar) GetBool() (bool, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetBool)
- [func (s \*SimVar) GetData() \[\]byte](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetData)
- [func (s \*SimVar) GetDataLatLonAlt() (\*SIMCONNECT\_DATA\_LATLONALT, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataLatLonAlt)
- [func (s \*SimVar) GetDataWaypoint() (\*SIMCONNECT\_DATA\_WAYPOINT, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataWaypoint)
- [func (s \*SimVar) GetDataXYZ() (\*SIMCONNECT\_DATA\_XYZ, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataXYZ)
- [func (s \*SimVar) GetDatumType() uint32](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDatumType)
- [func (s \*SimVar) GetDegrees() (float64, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDegrees)
- [func (s \*SimVar) GetFloat64() (float64, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetFloat64)
- [func (s \*SimVar) GetInt() (int, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetInt)
- [func (s \*SimVar) GetSize() int](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetSize)
- [func (s \*SimVar) GetString() string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetString)
- [func (s \*SimVar) SetFloat64(f float64)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.SetFloat64)
- [type SimVarUnit](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnit)
- [type SyscallSC](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC)
- - [func NewSyscallSC() (\*SyscallSC, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewSyscallSC)
- - [func (syscallSC \*SyscallSC) AICreateEnrouteATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateEnrouteATCAircraft)
- [func (syscallSC \*SyscallSC) AICreateNonATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateNonATCAircraft)
- [func (syscallSC \*SyscallSC) AICreateParkedATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateParkedATCAircraft)
- [func (syscallSC \*SyscallSC) AICreateSimulatedObject(hSimConnect uintptr, szContainerTitle uintptr, InitPos uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateSimulatedObject)
- [func (syscallSC \*SyscallSC) AIReleaseControl(hSimConnect uintptr, ObjectID uintptr, RequestID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AIReleaseControl)
- [func (syscallSC \*SyscallSC) AIRemoveObject(hSimConnect uintptr, ObjectID uintptr, RequestID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AIRemoveObject)
- [func (syscallSC \*SyscallSC) AISetAircraftFlightPlan(hSimConnect uintptr, ObjectID uintptr, szFlightPlanPath uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AISetAircraftFlightPlan)
- [func (syscallSC \*SyscallSC) AddClientEventToNotificationGroup(hSimConnect uintptr, GroupID uintptr, EventID uintptr, bMaskable uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddClientEventToNotificationGroup)
- [func (syscallSC \*SyscallSC) AddToClientDataDefinition(hSimConnect uintptr, DefineID uintptr, dwOffset uintptr, dwSizeOrType uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddToClientDataDefinition)
- [func (syscallSC \*SyscallSC) AddToDataDefinition(hSimConnect uintptr, DefineID uintptr, DatumName uintptr, UnitsName uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddToDataDefinition)
- [func (syscallSC \*SyscallSC) CallDispatch(hSimConnect uintptr, pfcnDispatch uintptr, pContext uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CallDispatch)
- [func (syscallSC \*SyscallSC) CameraSetRelative6DOF(hSimConnect uintptr, fDeltaX uintptr, fDeltaY uintptr, fDeltaZ uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CameraSetRelative6DOF)
- [func (syscallSC \*SyscallSC) ClearClientDataDefinition(hSimConnect uintptr, DefineID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearClientDataDefinition)
- [func (syscallSC \*SyscallSC) ClearDataDefinition(hSimConnect uintptr, DefineID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearDataDefinition)
- [func (syscallSC \*SyscallSC) ClearInputGroup(hSimConnect uintptr, GroupID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearInputGroup)
- [func (syscallSC \*SyscallSC) ClearNotificationGroup(hSimConnect uintptr, GroupID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearNotificationGroup)
- [func (syscallSC \*SyscallSC) Close(hSimConnect uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Close)
- [func (syscallSC \*SyscallSC) CompleteCustomMissionAction(hSimConnect uintptr, guidInstanceId uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CompleteCustomMissionAction)
- [func (syscallSC \*SyscallSC) CreateClientData(hSimConnect uintptr, ClientDataID uintptr, dwSize uintptr, Flags uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CreateClientData)
- [func (syscallSC \*SyscallSC) ExecuteMissionAction(hSimConnect uintptr, guidInstanceId uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ExecuteMissionAction)
- [func (syscallSC \*SyscallSC) FlightLoad(hSimConnect uintptr, szFileName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightLoad)
- [func (syscallSC \*SyscallSC) FlightPlanLoad(hSimConnect uintptr, szFileName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightPlanLoad)
- [func (syscallSC \*SyscallSC) FlightSave(hSimConnect uintptr, szFileName uintptr, szTitle uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightSave)
- [func (syscallSC \*SyscallSC) GetLastSentPacketID(hSimConnect uintptr, pdwError uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.GetLastSentPacketID)
- [func (syscallSC \*SyscallSC) GetNextDispatch(hSimConnect uintptr, ppData uintptr, pcbData uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.GetNextDispatch)
- [func (syscallSC \*SyscallSC) InsertString(pDest uintptr, cbDest uintptr, ppEnd uintptr, pcbStringV uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.InsertString)
- [func (syscallSC \*SyscallSC) MapClientDataNameToID(hSimConnect uintptr, szClientDataName uintptr, ClientDataID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapClientDataNameToID)
- [func (syscallSC \*SyscallSC) MapClientEventToSimEvent(hSimConnect uintptr, EventID uintptr, EventName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapClientEventToSimEvent)
- [func (syscallSC \*SyscallSC) MapInputEventToClientEvent(hSimConnect uintptr, GroupID uintptr, szInputDefinition uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapInputEventToClientEvent)
- [func (syscallSC \*SyscallSC) MenuAddItem(hSimConnect uintptr, szMenuItem uintptr, MenuEventID uintptr, dwData uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuAddItem)
- [func (syscallSC \*SyscallSC) MenuAddSubItem(hSimConnect uintptr, MenuEventID uintptr, szMenuItem uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuAddSubItem)
- [func (syscallSC \*SyscallSC) MenuDeleteItem(hSimConnect uintptr, MenuEventID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuDeleteItem)
- [func (syscallSC \*SyscallSC) MenuDeleteSubItem(hSimConnect uintptr, MenuEventID uintptr, SubMenuEventID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuDeleteSubItem)
- [func (syscallSC \*SyscallSC) Open(phSimConnect uintptr, szName uintptr, hWnd uintptr, UserEventWin uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Open)
- [func (syscallSC \*SyscallSC) RemoveClientEvent(hSimConnect uintptr, GroupID uintptr, EventID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RemoveClientEvent)
- [func (syscallSC \*SyscallSC) RemoveInputEvent(hSimConnect uintptr, GroupID uintptr, szInputDefinition uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RemoveInputEvent)
- [func (syscallSC \*SyscallSC) RequestClientData(hSimConnect uintptr, ClientDataID uintptr, RequestID uintptr, DefineID uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestClientData)
- [func (syscallSC \*SyscallSC) RequestDataOnSimObject(hSimConnect uintptr, RequestID uintptr, DefineID uintptr, ObjectID uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestDataOnSimObject)
- [func (syscallSC \*SyscallSC) RequestDataOnSimObjectType(hSimConnect uintptr, RequestID uintptr, DefineID uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestDataOnSimObjectType)
- [func (syscallSC \*SyscallSC) RequestFacilitiesList(hSimConnect uintptr, t uintptr, RequestID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestFacilitiesList)
- [func (syscallSC \*SyscallSC) RequestNotificationGroup(hSimConnect uintptr, GroupID uintptr, dwReserved uintptr, Flags uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestNotificationGroup)
- [func (syscallSC \*SyscallSC) RequestReservedKey(hSimConnect uintptr, EventID uintptr, szKeyChoice1 uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestReservedKey)
- [func (syscallSC \*SyscallSC) RequestResponseTimes(hSimConnect uintptr, nCount uintptr, fElapsedSeconds uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestResponseTimes)
- [func (syscallSC \*SyscallSC) RequestSystemState(hSimConnect uintptr, RequestID uintptr, szState uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestSystemState)
- [func (syscallSC \*SyscallSC) RetrieveString(pData uintptr, cbData uintptr, pStringV uintptr, pszString uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RetrieveString)
- [func (syscallSC \*SyscallSC) SetClientData(hSimConnect uintptr, ClientDataID uintptr, DefineID uintptr, Flags uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetClientData)
- [func (syscallSC \*SyscallSC) SetDataOnSimObject(hSimConnect uintptr, DefineID uintptr, ObjectID uintptr, Flags uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetDataOnSimObject)
- [func (syscallSC \*SyscallSC) SetInputGroupPriority(hSimConnect uintptr, GroupID uintptr, uPriority uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetInputGroupPriority)
- [func (syscallSC \*SyscallSC) SetInputGroupState(hSimConnect uintptr, GroupID uintptr, dwState uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetInputGroupState)
- [func (syscallSC \*SyscallSC) SetNotificationGroupPriority(hSimConnect uintptr, GroupID uintptr, uPriority uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetNotificationGroupPriority)
- [func (syscallSC \*SyscallSC) SetSystemEventState(hSimConnect uintptr, EventID uintptr, dwState uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetSystemEventState)
- [func (syscallSC \*SyscallSC) SetSystemState(hSimConnect uintptr, szState uintptr, dwInteger uintptr, fFloat uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetSystemState)
- [func (syscallSC \*SyscallSC) SubscribeToFacilities(hSimConnect uintptr, t uintptr, RequestID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SubscribeToFacilities)
- [func (syscallSC \*SyscallSC) SubscribeToSystemEvent(hSimConnect uintptr, EventID uintptr, SystemEventName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SubscribeToSystemEvent)
- [func (syscallSC \*SyscallSC) Text(hSimConnect uintptr, t uintptr, fTimeSeconds uintptr, EventID uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Text)
- [func (syscallSC \*SyscallSC) TransmitClientEvent(hSimConnect uintptr, ObjectID uintptr, EventID uintptr, dwData uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.TransmitClientEvent)
- [func (syscallSC \*SyscallSC) UnsubscribeFromSystemEvent(hSimConnect uintptr, EventID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.UnsubscribeFromSystemEvent)
- [func (syscallSC \*SyscallSC) UnsubscribeToFacilities(hSimConnect uintptr, t uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.UnsubscribeToFacilities)
- [func (syscallSC \*SyscallSC) WeatherCreateStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr, szName uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherCreateStation)
- [func (syscallSC \*SyscallSC) WeatherCreateThermal(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherCreateThermal)
- [func (syscallSC \*SyscallSC) WeatherRemoveStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRemoveStation)
- [func (syscallSC \*SyscallSC) WeatherRemoveThermal(hSimConnect uintptr, ObjectID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRemoveThermal)
- [func (syscallSC \*SyscallSC) WeatherRequestCloudState(hSimConnect uintptr, RequestID uintptr, minLat uintptr, minLon uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestCloudState)
- [func (syscallSC \*SyscallSC) WeatherRequestInterpolatedObservation(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestInterpolatedObservation)
- [func (syscallSC \*SyscallSC) WeatherRequestObservationAtNearestStation(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestObservationAtNearestStation)
- [func (syscallSC \*SyscallSC) WeatherRequestObservationAtStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestObservationAtStation)
- [func (syscallSC \*SyscallSC) WeatherSetDynamicUpdateRate(hSimConnect uintptr, dwRate uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetDynamicUpdateRate)
- [func (syscallSC \*SyscallSC) WeatherSetModeCustom(hSimConnect uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeCustom)
- [func (syscallSC \*SyscallSC) WeatherSetModeGlobal(hSimConnect uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeGlobal)
- [func (syscallSC \*SyscallSC) WeatherSetModeServer(hSimConnect uintptr, dwPort uintptr, dwSeconds uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeServer)
- [func (syscallSC \*SyscallSC) WeatherSetModeTheme(hSimConnect uintptr, szThemeName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeTheme)
- [func (syscallSC \*SyscallSC) WeatherSetObservation(hSimConnect uintptr, Seconds uintptr, szMETAR uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetObservation)
- [type SystemEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SystemEvent)
### Examples [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-examples "Go to Examples")
- [Package (GetLatLonAlt)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetLatLonAlt)
- [Package (GetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetSimVar)
- [Package (GetSimVarWithIndex)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetSimVarWithIndex)
- [Package (GetString)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetString)
- [Package (GetXYZ)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetXYZ)
- [Package (IFaceSetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-IFaceSetSimVar)
- [Package (InterfaceSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-InterfaceSimVar)
- [Package (SetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-SetSimVar)
- [Package (ShowText)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-ShowText)
- [Package (SimEvent)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-SimEvent)
### Constants [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-constants "Go to Constants")
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L6)
```
const (
MAX_PATH = 260
SIMCONNECT_UNUSED = 0xFFFFFFFF // special value to indicate unused event, ID
SIMCONNECT_OBJECT_ID_USER = 0 // proxy value for User vehicle ObjectID
SIMCONNECT_CAMERA_IGNORE_FIELD = 3.402823466e38 //Used to tell the Camera API to NOT modify the value in this part of the argument.
SIMCONNECT_CLIENTDATA_MAX_SIZE = 8192 // maximum value for SimConnect_CreateClientData dwSize parameter
// Notification Group priority values
SIMCONNECT_GROUP_PRIORITY_HIGHEST GroupPriority = 1 // highest priority
SIMCONNECT_GROUP_PRIORITY_HIGHEST_MASKABLE GroupPriority = 10000000 // highest priority that allows events to be masked
SIMCONNECT_GROUP_PRIORITY_STANDARD GroupPriority = 1900000000 // standard priority
SIMCONNECT_GROUP_PRIORITY_DEFAULT GroupPriority = 2000000000 // default priority
SIMCONNECT_GROUP_PRIORITY_LOWEST GroupPriority = 4000000000 // priorities lower than this will be ignored
//Weather observations Metar strings
MAX_METAR_LENGTH = 2000
// Maximum thermal size is 100 km.
MAX_THERMAL_SIZE = 100000
MAX_THERMAL_RATE = 1000
// SIMCONNECT_DATA_INITPOSITION.Airspeed
INITPOSITION_AIRSPEED_CRUISE = -1 // aircraft's cruise airspeed
INITPOSITION_AIRSPEED_KEEP = -2 // keep current airspeed
// AddToClientDataDefinition dwSizeOrType parameter type values
SIMCONNECT_CLIENTDATATYPE_INT8 = -1 // 8-bit integer number
SIMCONNECT_CLIENTDATATYPE_INT16 = -2 // 16-bit integer number
SIMCONNECT_CLIENTDATATYPE_INT32 = -3 // 32-bit integer number
SIMCONNECT_CLIENTDATATYPE_INT64 = -4 // 64-bit integer number
SIMCONNECT_CLIENTDATATYPE_FLOAT32 = -5 // 32-bit floating-point number (float)
SIMCONNECT_CLIENTDATATYPE_FLOAT64 = -6 // 64-bit floating-point number (double)
// AddToClientDataDefinition dwOffset parameter special values
SIMCONNECT_CLIENTDATAOFFSET_AUTO = -1 // automatically compute offset of the ClientData variable
// Open ConfigIndex parameter special value
SIMCONNECT_OPEN_CONFIGINDEX_LOCAL = -1 // ignore SimConnect.cfg settings, and force local connection
)
```
Divers
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L49)
```
const (
SIMCONNECT_RECV_ID_NULL = iota
SIMCONNECT_RECV_ID_EXCEPTION
SIMCONNECT_RECV_ID_OPEN
SIMCONNECT_RECV_ID_QUIT
SIMCONNECT_RECV_ID_EVENT
SIMCONNECT_RECV_ID_EVENT_OBJECT_ADDREMOVE
SIMCONNECT_RECV_ID_EVENT_FILENAME
SIMCONNECT_RECV_ID_EVENT_FRAME
SIMCONNECT_RECV_ID_SIMOBJECT_DATA
SIMCONNECT_RECV_ID_SIMOBJECT_DATA_BYTYPE
SIMCONNECT_RECV_ID_WEATHER_OBSERVATION
SIMCONNECT_RECV_ID_CLOUD_STATE
SIMCONNECT_RECV_ID_ASSIGNED_OBJECT_ID
SIMCONNECT_RECV_ID_RESERVED_KEY
SIMCONNECT_RECV_ID_CUSTOM_ACTION
SIMCONNECT_RECV_ID_SYSTEM_STATE
SIMCONNECT_RECV_ID_CLIENT_DATA
SIMCONNECT_RECV_ID_EVENT_WEATHER_MODE
SIMCONNECT_RECV_ID_AIRPORT_LIST
SIMCONNECT_RECV_ID_VOR_LIST
SIMCONNECT_RECV_ID_NDB_LIST
SIMCONNECT_RECV_ID_WAYPOINT_LIST
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_SERVER_STARTED
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_CLIENT_STARTED
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_SESSION_ENDED
SIMCONNECT_RECV_ID_EVENT_RACE_END
SIMCONNECT_RECV_ID_EVENT_RACE_LAP
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L79)
```
const (
SIMCONNECT_DATATYPE_INVALID = iota
SIMCONNECT_DATATYPE_INT32
SIMCONNECT_DATATYPE_INT64
SIMCONNECT_DATATYPE_FLOAT32
SIMCONNECT_DATATYPE_FLOAT64
SIMCONNECT_DATATYPE_STRING8
SIMCONNECT_DATATYPE_STRING32
SIMCONNECT_DATATYPE_STRING64
SIMCONNECT_DATATYPE_STRING128
SIMCONNECT_DATATYPE_STRING256
SIMCONNECT_DATATYPE_STRING260
SIMCONNECT_DATATYPE_STRINGV
SIMCONNECT_DATATYPE_INITPOSITION
SIMCONNECT_DATATYPE_MARKERSTATE
SIMCONNECT_DATATYPE_WAYPOINT
SIMCONNECT_DATATYPE_LATLONALT
SIMCONNECT_DATATYPE_XYZ
SIMCONNECT_DATATYPE_MAX = iota
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L100)
```
const (
SIMCONNECT_EXCEPTION_NONE = iota
SIMCONNECT_EXCEPTION_ERROR = iota
SIMCONNECT_EXCEPTION_SIZE_MISMATCH
SIMCONNECT_EXCEPTION_UNRECOGNIZED_ID
SIMCONNECT_EXCEPTION_UNOPENED
SIMCONNECT_EXCEPTION_VERSION_MISMATCH
SIMCONNECT_EXCEPTION_TOO_MANY_GROUPS
SIMCONNECT_EXCEPTION_NAME_UNRECOGNIZED
SIMCONNECT_EXCEPTION_TOO_MANY_EVENT_NAMES
SIMCONNECT_EXCEPTION_EVENT_ID_DUPLICATE
SIMCONNECT_EXCEPTION_TOO_MANY_MAPS
SIMCONNECT_EXCEPTION_TOO_MANY_OBJECTS
SIMCONNECT_EXCEPTION_TOO_MANY_REQUESTS
SIMCONNECT_EXCEPTION_WEATHER_INVALID_PORT
SIMCONNECT_EXCEPTION_WEATHER_INVALID_METAR
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_GET_OBSERVATION
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_CREATE_STATION
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_REMOVE_STATION
SIMCONNECT_EXCEPTION_INVALID_DATA_TYPE
SIMCONNECT_EXCEPTION_INVALID_DATA_SIZE
SIMCONNECT_EXCEPTION_DATA_ERROR
SIMCONNECT_EXCEPTION_INVALID_ARRAY
SIMCONNECT_EXCEPTION_CREATE_OBJECT_FAILED
SIMCONNECT_EXCEPTION_LOAD_FLIGHTPLAN_FAILED
SIMCONNECT_EXCEPTION_OPERATION_INVALID_FOR_OBJECT_TYPE
SIMCONNECT_EXCEPTION_ILLEGAL_OPERATION
SIMCONNECT_EXCEPTION_ALREADY_SUBSCRIBED
SIMCONNECT_EXCEPTION_INVALID_ENUM
SIMCONNECT_EXCEPTION_DEFINITION_ERROR
SIMCONNECT_EXCEPTION_DUPLICATE_ID
SIMCONNECT_EXCEPTION_DATUM_ID
SIMCONNECT_EXCEPTION_OUT_OF_BOUNDS
SIMCONNECT_EXCEPTION_ALREADY_CREATED
SIMCONNECT_EXCEPTION_OBJECT_OUTSIDE_REALITY_BUBBLE
SIMCONNECT_EXCEPTION_OBJECT_CONTAINER
SIMCONNECT_EXCEPTION_OBJECT_AI
SIMCONNECT_EXCEPTION_OBJECT_ATC
SIMCONNECT_EXCEPTION_OBJECT_SCHEDULE
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L142)
```
const (
SIMCONNECT_SIMOBJECT_TYPE_USER = iota
SIMCONNECT_SIMOBJECT_TYPE_ALL
SIMCONNECT_SIMOBJECT_TYPE_AIRCRAFT
SIMCONNECT_SIMOBJECT_TYPE_HELICOPTER
SIMCONNECT_SIMOBJECT_TYPE_BOAT
SIMCONNECT_SIMOBJECT_TYPE_GROUND
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L158)
```
const (
SIMCONNECT_PERIOD_NEVER = iota
SIMCONNECT_PERIOD_ONCE
SIMCONNECT_PERIOD_VISUAL_FRAME
SIMCONNECT_PERIOD_SIM_FRAME
SIMCONNECT_PERIOD_SECOND
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L166)
```
const (
SIMCONNECT_MISSION_FAILED = iota
SIMCONNECT_MISSION_CRASHED
SIMCONNECT_MISSION_SUCCEEDED
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L172)
```
const (
SIMCONNECT_CLIENT_DATA_PERIOD_NEVER = iota
SIMCONNECT_CLIENT_DATA_PERIOD_ONCE
SIMCONNECT_CLIENT_DATA_PERIOD_VISUAL_FRAME
SIMCONNECT_CLIENT_DATA_PERIOD_ON_SET
SIMCONNECT_CLIENT_DATA_PERIOD_SECOND
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L183)
```
const (
SIMCONNECT_TEXT_TYPE_SCROLL_BLACK ScrollColor = iota
SIMCONNECT_TEXT_TYPE_SCROLL_WHITE
SIMCONNECT_TEXT_TYPE_SCROLL_RED
SIMCONNECT_TEXT_TYPE_SCROLL_GREEN
SIMCONNECT_TEXT_TYPE_SCROLL_BLUE
SIMCONNECT_TEXT_TYPE_SCROLL_YELLOW
SIMCONNECT_TEXT_TYPE_SCROLL_MAGENTA
SIMCONNECT_TEXT_TYPE_SCROLL_CYAN
SIMCONNECT_TEXT_TYPE_PRINT_BLACK PrintColor = 0x0100
SIMCONNECT_TEXT_TYPE_PRINT_WHITE PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_BLACK + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_RED PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_WHITE + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_GREEN PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_RED + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_BLUE PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_GREEN + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_YELLOW PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_BLUE + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_MAGENTA PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_YELLOW + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_CYAN PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_MAGENTA + 0x1
SIMCONNECT_TEXT_TYPE_MENU = 0x0200
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L203)
```
const (
SIMCONNECT_TEXT_RESULT_MENU_SELECT_1 = iota
SIMCONNECT_TEXT_RESULT_MENU_SELECT_2
SIMCONNECT_TEXT_RESULT_MENU_SELECT_3
SIMCONNECT_TEXT_RESULT_MENU_SELECT_4
SIMCONNECT_TEXT_RESULT_MENU_SELECT_5
SIMCONNECT_TEXT_RESULT_MENU_SELECT_6
SIMCONNECT_TEXT_RESULT_MENU_SELECT_7
SIMCONNECT_TEXT_RESULT_MENU_SELECT_8
SIMCONNECT_TEXT_RESULT_MENU_SELECT_9
SIMCONNECT_TEXT_RESULT_MENU_SELECT_10
SIMCONNECT_TEXT_RESULT_DISPLAYED = 0x00010000
SIMCONNECT_TEXT_RESULT_QUEUED = SIMCONNECT_TEXT_RESULT_DISPLAYED + 0x1
SIMCONNECT_TEXT_RESULT_REMOVED = SIMCONNECT_TEXT_RESULT_QUEUED + 0x1
SIMCONNECT_TEXT_RESULT_REPLACED = SIMCONNECT_TEXT_RESULT_REMOVED + 0x1
SIMCONNECT_TEXT_RESULT_TIMEOUT = SIMCONNECT_TEXT_RESULT_REPLACED + 0x1
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L221)
```
const (
SIMCONNECT_WEATHER_MODE_THEME = iota
SIMCONNECT_WEATHER_MODE_RWW
SIMCONNECT_WEATHER_MODE_CUSTOM
SIMCONNECT_WEATHER_MODE_GLOBAL
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L228)
```
const (
SIMCONNECT_FACILITY_LIST_TYPE_AIRPORT = iota
SIMCONNECT_FACILITY_LIST_TYPE_WAYPOINT
SIMCONNECT_FACILITY_LIST_TYPE_NDB
SIMCONNECT_FACILITY_LIST_TYPE_VOR
SIMCONNECT_FACILITY_LIST_TYPE_COUNT // invalid
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L237)
```
const (
SIMCONNECT_RECV_ID_VOR_LIST_HAS_NAV_SIGNAL = 0x00000001 // Has Nav signal
SIMCONNECT_RECV_ID_VOR_LIST_HAS_LOCALIZER = 0x00000002 // Has localizer
SIMCONNECT_RECV_ID_VOR_LIST_HAS_GLIDE_SLOPE = 0x00000004 // Has Nav signal
SIMCONNECT_RECV_ID_VOR_LIST_HAS_DME = 0x00000008 // Station has DME
)
```
SIMCONNECT\_VOR\_FLAGS flags for SIMCONNECT\_RECV\_ID\_VOR\_LIST
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L245)
```
const (
SIMCONNECT_WAYPOINT_NONE = 0x00
SIMCONNECT_WAYPOINT_SPEED_REQUESTED = 0x04 // requested speed at waypoint is valid
SIMCONNECT_WAYPOINT_THROTTLE_REQUESTED = 0x08 // request a specific throttle percentage
SIMCONNECT_WAYPOINT_COMPUTE_VERTICAL_SPEED = 0x10 // compute vertical to speed to reach waypoint altitude when crossing the waypoint
SIMCONNECT_WAYPOINT_ALTITUDE_IS_AGL = 0x20 // AltitudeIsAGL
SIMCONNECT_WAYPOINT_ON_GROUND = 0x00100000 // place this waypoint on the ground
SIMCONNECT_WAYPOINT_REVERSE = 0x00200000 // Back up to this waypoint. Only valid on first waypoint
SIMCONNECT_WAYPOINT_WRAP_TO_FIRST = 0x00400000 // Wrap around back to first waypoint. Only valid on last waypoint.
)
```
SIMCONNECT\_WAYPOINT\_FLAGS bits for the Waypoint Flags field: may be combined
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L267)
```
const (
SIMCONNECT_DATA_REQUEST_FLAG_DEFAULT = iota
SIMCONNECT_DATA_REQUEST_FLAG_CHANGED // send requested data when value(s) change
SIMCONNECT_DATA_REQUEST_FLAG_TAGGED // send requested data in tagged format
)
```
SIMCONNECT\_DATA\_REQUEST\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L274)
```
const (
SIMCONNECT_DATA_SET_FLAG_DEFAULT = iota
SIMCONNECT_DATA_SET_FLAG_TAGGED // data is in tagged format
)
```
SIMCONNECT\_DATA\_SET\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L280)
```
const (
SIMCONNECT_CREATE_CLIENT_DATA_FLAG_DEFAULT = iota
SIMCONNECT_CREATE_CLIENT_DATA_FLAG_READ_ONLY // permit only ClientData creator to write into ClientData
)
```
SIMCONNECT\_CREATE\_CLIENT\_DATA\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L286)
```
const (
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_DEFAULT = iota
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_CHANGED // send requested ClientData when value(s) change
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_TAGGED // send requested ClientData in tagged format
)
```
SIMCONNECT\_CLIENT\_DATA\_REQUEST\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L293)
```
const (
SIMCONNECT_CLIENT_DATA_SET_FLAG_DEFAULT = iota
SIMCONNECT_CLIENT_DATA_SET_FLAG_TAGGED // data is in tagged format
)
```
SIMCONNECT\_CLIENT\_DATA\_SET\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L299)
```
const (
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_COCKPIT_2D = 0x00000001 // 2D Panels in cockpit view
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_COCKPIT_VIRTUAL = 0x00000002 // Virtual (3D) panels in cockpit view
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_ORTHOGONAL = 0x00000004 // Orthogonal (Map) view
)
```
SIMCONNECT\_VIEW\_SYSTEM\_EVENT\_DATA dwData contains these flags for the "View" System Event
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L130)
```
const (
SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH = 64
SIMCONNECT_CLOUD_STATE_ARRAY_SIZE = SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH * SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L306)
```
const (
SIMCONNECT_SOUND_SYSTEM_EVENT_DATA_MASTER = 0x00000001 // Sound Master
)
```
SIMCONNECT\_SOUND\_SYSTEM\_EVENT\_DATA dwData contains these flags for the "Sound" System Event
### Variables [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-variables "Go to Variables")
This section is empty.
### Functions [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-functions "Go to Functions")
#### func [InterfaceAssignSimVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/tools.go#L102) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#InterfaceAssignSimVar "Go to InterfaceAssignSimVar")
```
func InterfaceAssignSimVar(listSimVar []SimVar, iFace interface{})
```
#### func [SimVarAssignInterface](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/tools.go#L112) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAssignInterface "Go to SimVarAssignInterface")
```
func SimVarAssignInterface(iFace interface{}, listSimVar []SimVar) interface{}
```
### Types [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-types "Go to Types")
#### type [EasySimConnect](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L25) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect "Go to EasySimConnect")
```
type EasySimConnect struct {
// contains filtered or unexported fields
}
```
EasySimConnect for easy use of SimConnect in golang Please show example\_test.go for use case
#### func [NewEasySimConnect](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L41) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewEasySimConnect "Go to NewEasySimConnect")
```
func NewEasySimConnect(ctx context.Context) (*EasySimConnect, error)
```
NewEasySimConnect create instance of EasySimConnect
#### func (\*EasySimConnect) [Close](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L69) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.Close "Go to EasySimConnect.Close")
```
func (esc *EasySimConnect) Close() <-chan bool
```
Close Finishing EasySimConnect, All object created with this EasySimConnect's instance is perished after call this function
#### func (\*EasySimConnect) [Connect](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L88) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.Connect "Go to EasySimConnect.Connect")
```
func (esc *EasySimConnect) Connect(appName string) (<-chan bool, error)
```
Connect to sim and run dispatch or return error
#### func (\*EasySimConnect) [ConnectInterfaceToSimVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L260) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectInterfaceToSimVar "Go to EasySimConnect.ConnectInterfaceToSimVar")
```
func (esc *EasySimConnect) ConnectInterfaceToSimVar(iFace interface{}) (<-chan interface{}, error)
```
ConnectInterfaceToSimVar return a chan. This chan return interface when updating
#### func (\*EasySimConnect) [ConnectSysEventAircraftLoaded](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L376) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventAircraftLoaded "Go to EasySimConnect.ConnectSysEventAircraftLoaded")
```
func (esc *EasySimConnect) ConnectSysEventAircraftLoaded() <-chan string
```
ConnectSysEventAircraftLoaded Request a notification when the aircraft flight dynamics file is changed. These files have a .AIR extension. The filename is returned in a string.
#### func (\*EasySimConnect) [ConnectSysEventCrashReset](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L329) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventCrashReset "Go to EasySimConnect.ConnectSysEventCrashReset")
```
func (esc *EasySimConnect) ConnectSysEventCrashReset() <-chan bool
```
ConnectSysEventCrashReset Request a notification when the crash cut-scene has completed.
#### func (\*EasySimConnect) [ConnectSysEventCrashed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L320) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventCrashed "Go to EasySimConnect.ConnectSysEventCrashed")
```
func (esc *EasySimConnect) ConnectSysEventCrashed() <-chan bool
```
ConnectSysEventCrashed Request a notification if the user aircraft crashes.
#### func (\*EasySimConnect) [ConnectSysEventFlightLoaded](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L386) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightLoaded "Go to EasySimConnect.ConnectSysEventFlightLoaded")
```
func (esc *EasySimConnect) ConnectSysEventFlightLoaded() <-chan string
```
ConnectSysEventFlightLoaded Request a notification when a flight is loaded. Note that when a flight is ended, a default flight is typically loaded, so these events will occur when flights and missions are started and finished. The filename of the flight loaded is returned in a string
#### func (\*EasySimConnect) [ConnectSysEventFlightPlanActivated](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L406) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanActivated "Go to EasySimConnect.ConnectSysEventFlightPlanActivated")
```
func (esc *EasySimConnect) ConnectSysEventFlightPlanActivated() <-chan string
```
ConnectSysEventFlightPlanActivated Request a notification when a new flight plan is activated. The filename of the activated flight plan is returned in a string.
#### func (\*EasySimConnect) [ConnectSysEventFlightPlanDeactivated](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L367) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanDeactivated "Go to EasySimConnect.ConnectSysEventFlightPlanDeactivated")
```
func (esc *EasySimConnect) ConnectSysEventFlightPlanDeactivated() <-chan bool
```
ConnectSysEventFlightPlanDeactivated Request a notification when the active flight plan is de-activated.
#### func (\*EasySimConnect) [ConnectSysEventFlightSaved](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L396) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightSaved "Go to EasySimConnect.ConnectSysEventFlightSaved")
```
func (esc *EasySimConnect) ConnectSysEventFlightSaved() <-chan string
```
ConnectSysEventFlightSaved Request a notification when a flight is saved correctly. The filename of the flight saved is returned in a string
#### func (\*EasySimConnect) [ConnectSysEventPause](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L338) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventPause "Go to EasySimConnect.ConnectSysEventPause")
```
func (esc *EasySimConnect) ConnectSysEventPause() <-chan bool
```
ConnectSysEventPause Request notifications when the flight is paused or unpaused, and also immediately returns the current pause state (1 = paused or 0 = unpaused). The state is returned in the dwData parameter.
#### func (\*EasySimConnect) [ConnectSysEventPaused](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L348) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventPaused "Go to EasySimConnect.ConnectSysEventPaused")
```
func (esc *EasySimConnect) ConnectSysEventPaused() <-chan bool
```
ConnectSysEventPaused Request a notification when the flight is paused.
#### func (\*EasySimConnect) [ConnectSysEventSim](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L357) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventSim "Go to EasySimConnect.ConnectSysEventSim")
```
func (esc *EasySimConnect) ConnectSysEventSim() <-chan bool
```
ConnectSysEventSim Request a notification when Sim start and stop.
#### func (\*EasySimConnect) [ConnectToSimVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L211) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectToSimVar "Go to EasySimConnect.ConnectToSimVar")
```
func (esc *EasySimConnect) ConnectToSimVar(listSimVar ...SimVar) (<-chan []SimVar, error)
```
ConnectToSimVar return a chan. This chan return an array when updating they SimVars in order of argument of this function
#### func (\*EasySimConnect) [ConnectToSimVarObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L250) deprecated
```
func (esc *EasySimConnect) ConnectToSimVarObject(listSimVar ...SimVar) <-chan []SimVar
```
ConnectToSimVarObject return a chan. This chan return an array when updating they SimVars in order of argument of this function
Deprecated: Use ConnectToSimVar instead.
#### func (\*EasySimConnect) [IsAlive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L78) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.IsAlive "Go to EasySimConnect.IsAlive")
```
func (esc *EasySimConnect) IsAlive() bool
```
IsAlive return true if connected
#### func (\*EasySimConnect) [NewSimEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L432) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.NewSimEvent "Go to EasySimConnect.NewSimEvent")
```
func (esc *EasySimConnect) NewSimEvent(simEventStr KeySimEvent) SimEvent
```
NewSimEvent return new instance of SimEvent and you can run SimEvent.Run()
#### func (\*EasySimConnect) [SetDelay](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L83) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetDelay "Go to EasySimConnect.SetDelay")
```
func (esc *EasySimConnect) SetDelay(t time.Duration)
```
SetDelay Select delay update SimVar and
#### func (\*EasySimConnect) [SetLoggerLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L64) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetLoggerLevel "Go to EasySimConnect.SetLoggerLevel")
```
func (esc *EasySimConnect) SetLoggerLevel(level EasySimConnectLogLevel)
```
SetLoggerLevel you can set log level in EasySimConnect
#### func (\*EasySimConnect) [SetSimObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L291) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetSimObject "Go to EasySimConnect.SetSimObject")
```
func (esc *EasySimConnect) SetSimObject(simVar SimVar)
```
SetSimObject edit the SimVar in the simulator
#### func (\*EasySimConnect) [SetSimVarInterfaceInSim](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L278) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetSimVarInterfaceInSim "Go to EasySimConnect.SetSimVarInterfaceInSim")
```
func (esc *EasySimConnect) SetSimVarInterfaceInSim(iFace interface{}) error
```
#### func (\*EasySimConnect) [ShowText](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L418) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ShowText "Go to EasySimConnect.ShowText")
```
func (esc *EasySimConnect) ShowText(str string, time float32, color PrintColor) (<-chan int, error)
```
ShowText display a text on the screen in the simulator.
ime is in second and return chan a confirmation for the simulator
#### type [EasySimConnectLogLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L13) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnectLogLevel "Go to EasySimConnectLogLevel")
```
type EasySimConnectLogLevel int
```
EasySimConnectLogLevel is a type of Log level
```
const (
LogNo EasySimConnectLogLevel = iota
LogError
LogWarn
LogInfo
)
```
Log Level
#### type [EventFlag](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L256) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EventFlag "Go to EventFlag")
```
type EventFlag int
```
```
const (
SIMCONNECT_EVENT_FLAG_DEFAULT EventFlag = iota
SIMCONNECT_EVENT_FLAG_FAST_REPEAT_TIMER // set event repeat timer to simulate fast repeat
SIMCONNECT_EVENT_FLAG_SLOW_REPEAT_TIMER // set event repeat timer to simulate slow repeat
SIMCONNECT_EVENT_FLAG_GROUPID_IS_PRIORITY EventFlag = 0x00000010 // interpret GroupID parameter as priority value
)
```
SIMCONNECT\_EVENT\_FLAG
#### type [GUID](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L73) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#GUID "Go to GUID")
```
type GUID struct {
Data1 uint64
Data2 uint16
Data3 uint16
Data4 [8]byte
}
```
#### type [GroupPriority](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L3) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#GroupPriority "Go to GroupPriority")
```
type GroupPriority int
```
#### type [KeySimEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simevent.go#L4) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#KeySimEvent "Go to KeySimEvent")
```
type KeySimEvent string
```
KeySimEvent is a string
```
const (
//KeySlingPickupRelease Toggle between pickup and release mode. Hold mode is automatic and cannot be selected. Refer to the document Notes on Aircraft Systems.
KeySlingPickupRelease KeySimEvent = "SLING_PICKUP_RELEASE"
//KeyHoistSwitchExtend The rate at which a hoist cable extends is set in the Aircraft Configuration File.
KeyHoistSwitchExtend KeySimEvent = "HOIST_SWITCH_EXTEND"
//KeyHoistSwitchRetract The rate at which a hoist cable retracts is set in the Aircraft Configuration File.
KeyHoistSwitchRetract KeySimEvent = "HOIST_SWITCH_RETRACT"
//KeyHoistSwitchSet The data value should be set to one of: <0 up =0 off >0 down
KeyHoistSwitchSet KeySimEvent = "HOIST_SWITCH_SET"
//KeyHoistDeployToggle Toggles the hoist arm switch, extend or retract.
KeyHoistDeployToggle KeySimEvent = "HOIST_DEPLOY_TOGGLE"
//KeyHoistDeploySet The data value should be set to: 0 - set hoist switch to retract the arm 1 - set hoist switch to extend the arm
KeyHoistDeploySet KeySimEvent = "HOIST_DEPLOY_SET"
//KeyToggleAntidetonationTankValve Toggle the antidetonation valve. Pass a value to determine which tank, if there are multiple tanks, to use. Tanks are indexed from 1. Refer to the document Notes on Aircraft Systems.
KeyToggleAntidetonationTankValve KeySimEvent = "ANTIDETONATION_TANK_VALVE_TOGGLE"
//KeyToggleNitrousTankValve Toggle the nitrous valve. Pass a value to determine which tank, if there are multiple tanks, to use. Tanks are indexed from 1.
KeyToggleNitrousTankValve KeySimEvent = "NITROUS_TANK_VALVE_TOGGLE"
//KeyToggleRaceresultsWindow Show or hide multiplayer race results. Disabled
KeyToggleRaceresultsWindow KeySimEvent = "TOGGLE_RACERESULTS_WINDOW"
//KeyTakeoffAssistArmToggle Deploy or remove the assist arm. Refer to the document Notes on Aircraft Systems.
KeyTakeoffAssistArmToggle KeySimEvent = "TAKEOFF_ASSIST_ARM_TOGGLE"
//KeyTakeoffAssistArmSet Value: TRUE request set FALSE request unset
KeyTakeoffAssistArmSet KeySimEvent = "TAKEOFF_ASSIST_ARM_SET"
//KeyTakeoffAssistFire If everything is set up correctly. Launch from the catapult.
KeyTakeoffAssistFire KeySimEvent = "TAKEOFF_ASSIST_FIRE"
//KeyToggleLaunchBarSwitch Toggle the request for the launch bar to be installed or removed.
KeyToggleLaunchBarSwitch KeySimEvent = "TOGGLE_LAUNCH_BAR_SWITCH"
//KeySetLaunchbarSwitch Value: TRUE request set FALSE request unset
KeySetLaunchbarSwitch KeySimEvent = "SET_LAUNCH_BAR_SWITCH"
//KeyRepairAndRefuel Fully repair and refuel the user aircraft. Ignored if flight realism is enforced.
KeyRepairAndRefuel KeySimEvent = "REPAIR_AND_REFUEL"
//KeyDmeSelect Selects one of the two DME systems (1,2).
KeyDmeSelect KeySimEvent = "DME_SELECT"
//KeyFuelDumpToggle Turns on or off the fuel dump switch.
KeyFuelDumpToggle KeySimEvent = "FUEL_DUMP_TOGGLE"
//KeyViewCockpitForward Switch immediately to the forward view, in 2D mode.
KeyViewCockpitForward KeySimEvent = "VIEW_COCKPIT_FORWARD"
//KeyViewVirtualCockpitForward Switch immediately to the forward view, in virtual cockpit mode.
KeyViewVirtualCockpitForward KeySimEvent = "VIEW_VIRTUAL_COCKPIT_FORWARD"
//KeyTowPlaneRelease Release a towed aircraft, usually a glider.
KeyTowPlaneRelease KeySimEvent = "TOW_PLANE_RELEASE"
//KeyRequestTowPlane Request a tow plane. The user aircraft must be tow-able, stationary, on the ground and not already attached for this to succeed.
KeyRequestTowPlane KeySimEvent = "TOW_PLANE_REQUEST"
//KeyRequestFuel Request a fuel truck. The aircraft must be in a parking spot for this to be successful. Fuel Selection Keys
KeyRequestFuel KeySimEvent = "REQUEST_FUEL_KEY"
//KeyReleaseDroppableObjects Release one droppable object. Multiple key events will release multiple objects.
KeyReleaseDroppableObjects KeySimEvent = "RELEASE_DROPPABLE_OBJECTS"
//KeyViewPanelAlphaSet Sets the alpha-blending value for the panel. Takes a parameter in the range 0 to 255. The alpha-blending can be changed from the keyboard using Ctrl-Shift-T, and the plus and minus keys.
KeyViewPanelAlphaSet KeySimEvent = "VIEW_PANEL_ALPHA_SET"
//KeyViewPanelAlphaSelect Sets the mode to change the alpha-blending, so the keys KEY_PLUS and KEY_MINUS increment and decrement the value.
KeyViewPanelAlphaSelect KeySimEvent = "VIEW_PANEL_ALPHA_SELECT"
//KeyViewPanelAlphaInc Increment alpha-blending for the panel.
KeyViewPanelAlphaInc KeySimEvent = "VIEW_PANEL_ALPHA_INC"
//KeyViewPanelAlphaDec Decrement alpha-blending for the panel.
KeyViewPanelAlphaDec KeySimEvent = "VIEW_PANEL_ALPHA_DEC"
//KeyViewLinkingSet Links all the views from one camera together, so that panning the view will change the view of all the linked cameras.
KeyViewLinkingSet KeySimEvent = "VIEW_LINKING_SET"
//KeyViewLinkingToggle Turns view linking on or off.
KeyViewLinkingToggle KeySimEvent = "VIEW_LINKING_TOGGLE"
//KeyRadioSelectedDmeIdentEnable Turns on the identification sound for the selected DME.
KeyRadioSelectedDmeIdentEnable KeySimEvent = "RADIO_SELECTED_DME_IDENT_ENABLE"
//KeyRadioSelectedDmeIdentDisable Turns off the identification sound for the selected DME.
KeyRadioSelectedDmeIdentDisable KeySimEvent = "RADIO_SELECTED_DME_IDENT_DISABLE"
//KeyRadioSelectedDmeIdentSet Sets the DME identification sound to the given filename.
KeyRadioSelectedDmeIdentSet KeySimEvent = "RADIO_SELECTED_DME_IDENT_SET"
//KeyRadioSelectedDmeIdentToggle Turns on or off the identification sound for the selected DME.
KeyRadioSelectedDmeIdentToggle KeySimEvent = "RADIO_SELECTED_DME_IDENT_TOGGLE"
//KeyGaugeKeystroke Enables a keystroke to be sent to a gauge that is in focus. The keystrokes can only be in the range 0 to 9, A to Z, and the four keys: plus, minus, comma and period. This is typically used to allow some keyboard entry to a complex device such as a GPS to enter such things as ICAO codes using the keyboard, rather than turning dials.
KeyGaugeKeystroke KeySimEvent = "GAUGE_KEYSTROKE"
KeySimuiWindowHideshow KeySimEvent = "SIMUI_WINDOW_HIDESHOW"
//KeyToggleVariometerSwitch Turn the variometer on or off.
KeyToggleVariometerSwitch KeySimEvent = "TOGGLE_VARIOMETER_SWITCH"
//KeyToggleTurnIndicatorSwitch Turn the turn indicator on or off.
KeyToggleTurnIndicatorSwitch KeySimEvent = "TOGGLE_TURN_INDICATOR_SWITCH"
//KeyWindowTitlesToggle Turn window titles on or off.
KeyWindowTitlesToggle KeySimEvent = "VIEW_WINDOW_TITLES_TOGGLE"
//KeyAxisPanPitch Sets the pitch of the axis. Requires an angle.
KeyAxisPanPitch KeySimEvent = "AXIS_PAN_PITCH"
//KeyAxisPanHeading Sets the heading of the axis. Requires an angle.
KeyAxisPanHeading KeySimEvent = "AXIS_PAN_HEADING"
//KeyAxisPanTilt Sets the tilt of the axis. Requires an angle.
KeyAxisPanTilt KeySimEvent = "AXIS_PAN_TILT"
//KeyAxisIndicatorCycle Step through the view axes.
KeyAxisIndicatorCycle KeySimEvent = "VIEW_AXIS_INDICATOR_CYCLE"
//KeyMapOrientationCycle Step through the map orientations.
KeyMapOrientationCycle KeySimEvent = "VIEW_MAP_ORIENTATION_CYCLE"
//KeyToggleJetway Requests a jetway, which will only be answered if the aircraft is at a parking spot.
KeyToggleJetway KeySimEvent = "TOGGLE_JETWAY"
//KeyRetractFloatSwitchDec If the plane has retractable floats, moves the retract position from Extend to Neutral, or Neutral to Retract.
KeyRetractFloatSwitchDec KeySimEvent = "RETRACT_FLOAT_SWITCH_DEC"
//KeyRetractFloatSwitchInc If the plane has retractable floats, moves the retract position from Retract to Neutral, or Neutral to Extend.
KeyRetractFloatSwitchInc KeySimEvent = "RETRACT_FLOAT_SWITCH_INC"
//KeyToggleWaterBallastValve Turn the water ballast valve on or off.
KeyToggleWaterBallastValve KeySimEvent = "TOGGLE_WATER_BALLAST_VALVE"
//KeyViewChaseDistanceAdd Increments the distance of the view camera from the chase object (such as in Spot Plane view, or viewing an AI controlled aircraft).
KeyViewChaseDistanceAdd KeySimEvent = "VIEW_CHASE_DISTANCE_ADD"
//KeyViewChaseDistanceSub Decrements the distance of the view camera from the chase object.
KeyViewChaseDistanceSub KeySimEvent = "VIEW_CHASE_DISTANCE_SUB"
//KeyApuStarter Start up the auxiliary power unit (APU).
KeyApuStarter KeySimEvent = "APU_STARTER"
//KeyApuOffSwitch Turn the APU off.
KeyApuOffSwitch KeySimEvent = "APU_OFF_SWITCH"
//KeyApuGeneratorSwitchToggle Turn the auxiliary generator on or off.
KeyApuGeneratorSwitchToggle KeySimEvent = "APU_GENERATOR_SWITCH_TOGGLE"
//KeyApuGeneratorSwitchSet Set the auxiliary generator switch (0,1).
KeyApuGeneratorSwitchSet KeySimEvent = "APU_GENERATOR_SWITCH_SET"
//KeyExtinguishEngineFire Takes a two digit argument. The first digit represents the fire extinguisher index, and the second represents the engine index. For example, 11 would represent using bottle 1 on engine 1. 21 would represent using bottle 2 on engine 1. Typical entries for a twin engine aircraft would be 11 and 22.
KeyExtinguishEngineFire KeySimEvent = "EXTINGUISH_ENGINE_FIRE"
//KeyApMaxBankInc Autopilot max bank angle increment.
KeyApMaxBankInc KeySimEvent = "AP_MAX_BANK_INC"
//KeyApMaxBankDec Autopilot max bank angle decrement.
KeyApMaxBankDec KeySimEvent = "AP_MAX_BANK_DEC"
//KeyApN1Hold Autopilot, hold the N1 percentage at its current level.
KeyApN1Hold KeySimEvent = "AP_N1_HOLD"
//KeyApN1RefInc Increment the autopilot N1 reference.
KeyApN1RefInc KeySimEvent = "AP_N1_REF_INC"
//KeyApN1RefDec Decrement the autopilot N1 reference.
KeyApN1RefDec KeySimEvent = "AP_N1_REF_DEC"
//KeyApN1RefSet Sets the autopilot N1 reference.
KeyApN1RefSet KeySimEvent = "AP_N1_REF_SET"
//KeyHydraulicSwitchToggle Turn the hydraulic switch on or off.
KeyHydraulicSwitchToggle KeySimEvent = "HYDRAULIC_SWITCH_TOGGLE"
//KeyBleedAirSourceControlInc Increases the bleed air source control.
KeyBleedAirSourceControlInc KeySimEvent = "BLEED_AIR_SOURCE_CONTROL_INC"
//KeyBleedAirSourceControlDec Decreases the bleed air source control.
KeyBleedAirSourceControlDec KeySimEvent = "BLEED_AIR_SOURCE_CONTROL_DEC"
//KeyTurbineIgnitionSwitchToggle Toggles the turbine ignition switch between OFF and AUTO.
KeyTurbineIgnitionSwitchToggle KeySimEvent = "TURBINE_IGNITION_SWITCH_TOGGLE"
//KeyCabinNoSmokingAlertSwitchToggle Turn the "No smoking" alert on or off.
KeyCabinNoSmokingAlertSwitchToggle KeySimEvent = "CABIN_NO_SMOKING_ALERT_SWITCH_TOGGLE"
//KeyCabinSeatbeltsAlertSwitchToggle Turn the "Fasten seatbelts" alert on or off.
KeyCabinSeatbeltsAlertSwitchToggle KeySimEvent = "CABIN_SEATBELTS_ALERT_SWITCH_TOGGLE"
//KeyAntiskidBrakesToggle Turn the anti-skid braking system on or off.
KeyAntiskidBrakesToggle KeySimEvent = "ANTISKID_BRAKES_TOGGLE"
//KeyGpwsSwitchToggle Turn the g round proximity warning system (GPWS) on or off.
KeyGpwsSwitchToggle KeySimEvent = "GPWS_SWITCH_TOGGLE"
//KeyVideoRecordToggle Turn on or off the video recording feature. This records uncompressed AVI format files to: %USERPROFILE%\Documents\My Videos
KeyVideoRecordToggle KeySimEvent = "VIDEO_RECORD_TOGGLE"
//KeyToggleAirportNameDisplay Turn on or off the airport name.
KeyToggleAirportNameDisplay KeySimEvent = "TOGGLE_AIRPORT_NAME_DISPLAY"
//KeyCaptureScreenshot Capture the current view as a screenshot. Which will be saved to a bmp file in: %USERPROFILE%\Documents\My Pictures
KeyCaptureScreenshot KeySimEvent = "CAPTURE_SCREENSHOT"
//KeyMouseLookToggle Switch Mouse Look mode on or off. Mouse Look mode enables a user to control their view using the mouse, and holding down the space bar.
KeyMouseLookToggle KeySimEvent = "MOUSE_LOOK_TOGGLE"
//KeyYaxisInvertToggle Switch inversion of Y axis controls on or off.
KeyYaxisInvertToggle KeySimEvent = "YAXIS_INVERT_TOGGLE"
//KeyAutocoordToggle Turn the automatic rudder control feature on or off. Freezing position
KeyAutocoordToggle KeySimEvent = "AUTORUDDER_TOGGLE"
//KeyFlyByWireElacToggle Turn on or off the fly by wire Elevators and Ailerons computer.
KeyFlyByWireElacToggle KeySimEvent = "FLY_BY_WIRE_ELAC_TOGGLE"
//KeyFlyByWireFacToggle Turn on or off the fly by wire Flight Augmentation computer.
KeyFlyByWireFacToggle KeySimEvent = "FLY_BY_WIRE_FAC_TOGGLE"
//KeyFlyByWireSecToggle Turn on or off the fly by wire Spoilers and Elevators computer. G1000 Keys (Primary Flight Display)
KeyFlyByWireSecToggle KeySimEvent = "FLY_BY_WIRE_SEC_TOGGLE"
//KeyManualFuelPressurePump Activate the manual fuel pressure pump. Nose wheel steering
KeyManualFuelPressurePump KeySimEvent = "MANUAL_FUEL_PRESSURE_PUMP"
//KeySteeringInc Increments the nose wheel steering position by 5 percent.
KeySteeringInc KeySimEvent = "STEERING_INC"
//KeySteeringDec Decrements the nose wheel steering position by 5 percent.
KeySteeringDec KeySimEvent = "STEERING_DEC"
//KeySteeringSet Sets the value of the nose wheel steering position. Zero is straight ahead (-16383, far left +16383, far right). Cabin pressurization
KeySteeringSet KeySimEvent = "STEERING_SET"
//KeyFreezeLatitudeLongitudeToggle Turns the freezing of the lat/lon position of the aircraft (either user or AI controlled) on or off. If this key event is set, it means that the latitude and longitude of the aircraft are not being controlled by Prepar3D, so enabling, for example, a SimConnect client to control the position of the aircraft. This can also apply to altitude and attitude. Refer to the simulation variables: IS LATITUDE LONGITUDE FREEZE ON, IS ALTITUDE FREEZE ON, and IS ATTITUDE FREEZE ON Refer also to the SimConnect_AIReleaseControl function.
KeyFreezeLatitudeLongitudeToggle KeySimEvent = "FREEZE_LATITUDE_LONGITUDE_TOGGLE"
//KeyFreezeLatitudeLongitudeSet Freezes the lat/lon position of the aircraft.
KeyFreezeLatitudeLongitudeSet KeySimEvent = "FREEZE_LATITUDE_LONGITUDE_SET"
//KeyFreezeAltitudeToggle Turns the freezing of the altitude of the aircraft on or off.
KeyFreezeAltitudeToggle KeySimEvent = "FREEZE_ALTITUDE_TOGGLE"
//KeyFreezeAltitudeSet Freezes the altitude of the aircraft..
KeyFreezeAltitudeSet KeySimEvent = "FREEZE_ALTITUDE_SET"
//KeyFreezeAttitudeToggle Turns the freezing of the attitude (pitch, bank and heading) of the aircraft on or off.
KeyFreezeAttitudeToggle KeySimEvent = "FREEZE_ATTITUDE_TOGGLE"
//KeyFreezeAttitudeSet Freezes the attitude (pitch, bank and heading) of the aircraft.
KeyFreezeAttitudeSet KeySimEvent = "FREEZE_ATTITUDE_SET"
//KeyPressurizationPressureAltInc Increases the altitude that the cabin is pressurized to.
KeyPressurizationPressureAltInc KeySimEvent = "PRESSURIZATION_PRESSURE_ALT_INC"
//KeyPressurizationPressureAltDec Decreases the altitude that the cabin is pressurized to.
KeyPressurizationPressureAltDec KeySimEvent = "PRESSURIZATION_PRESSURE_ALT_DEC"
//KeyPressurizationClimbRateInc Sets the rate at which cabin pressurization is increased.
KeyPressurizationClimbRateInc KeySimEvent = "PRESSURIZATION_CLIMB_RATE_INC"
//KeyPressurizationClimbRateDec Sets the rate at which cabin pressurization is decreased.
KeyPressurizationClimbRateDec KeySimEvent = "PRESSURIZATION_CLIMB_RATE_DEC"
//KeyPressurizationPressureDumpSwtich Sets the cabin pressure to the outside air pressure. Catapult launches
KeyPressurizationPressureDumpSwtich KeySimEvent = "PRESSURIZATION_PRESSURE_DUMP_SWTICH"
//KeyFuelSelectorLeftMain Sets the fuel selector. Fuel will be taken in the order left tip, left aux, then main fuel tanks.
KeyFuelSelectorLeftMain KeySimEvent = "FUEL_SELECTOR_LEFT_MAIN"
//KeyFuelSelector2LeftMain Sets the fuel selector for engine 2.
KeyFuelSelector2LeftMain KeySimEvent = "FUEL_SELECTOR_2_LEFT_MAIN"
//KeyFuelSelector3LeftMain Sets the fuel selector for engine 3.
KeyFuelSelector3LeftMain KeySimEvent = "FUEL_SELECTOR_3_LEFT_MAIN"
//KeyFuelSelector4LeftMain Sets the fuel selector for engine 4.
KeyFuelSelector4LeftMain KeySimEvent = "FUEL_SELECTOR_4_LEFT_MAIN"
//KeyFuelSelectorRightMain Sets the fuel selector. Fuel will be taken in the order right tip, right aux, then main fuel tanks.
KeyFuelSelectorRightMain KeySimEvent = "FUEL_SELECTOR_RIGHT_MAIN"
//KeyFuelSelector2RightMain Sets the fuel selector for engine 2.
KeyFuelSelector2RightMain KeySimEvent = "FUEL_SELECTOR_2_RIGHT_MAIN"
//KeyFuelSelector3RightMain Sets the fuel selector for engine 3.
KeyFuelSelector3RightMain KeySimEvent = "FUEL_SELECTOR_3_RIGHT_MAIN"
//KeyFuelSelector4RightMain Sets the fuel selector for engine 4.
KeyFuelSelector4RightMain KeySimEvent = "FUEL_SELECTOR_4_RIGHT_MAIN"
//KeyPointOfInterestTogglePointer Turn the point-of-interest indicator (often a light beam) on or off. Refer to the SimDirector documentation.
KeyPointOfInterestTogglePointer KeySimEvent = "POINT_OF_INTEREST_TOGGLE_POINTER"
//KeyPointOfInterestCyclePrevious Change the current point-of-interest to the previous point-of-interest.
KeyPointOfInterestCyclePrevious KeySimEvent = "POINT_OF_INTEREST_CYCLE_PREVIOUS"
//KeyPointOfInterestCycleNext Change the current point-of-interest to the next point-of-interest.
KeyPointOfInterestCycleNext KeySimEvent = "POINT_OF_INTEREST_CYCLE_NEXT"
//KeyG1000PfdFlightplanButton The primary flight display (PFD) should display its current flight plan.
KeyG1000PfdFlightplanButton KeySimEvent = "G1000_PFD_FLIGHTPLAN_BUTTON"
//KeyG1000PfdProcedureButton Turn to the Procedure page.
KeyG1000PfdProcedureButton KeySimEvent = "G1000_PFD_PROCEDURE_BUTTON"
//KeyG1000PfdZoominButton Zoom in on the current map.
KeyG1000PfdZoominButton KeySimEvent = "G1000_PFD_ZOOMIN_BUTTON"
//KeyG1000PfdZoomoutButton Zoom out on the current map.
KeyG1000PfdZoomoutButton KeySimEvent = "G1000_PFD_ZOOMOUT_BUTTON"
//KeyG1000PfdDirecttoButton Turn to the Direct To page.
KeyG1000PfdDirecttoButton KeySimEvent = "G1000_PFD_DIRECTTO_BUTTON"
//KeyG1000PfdMenuButton If a segmented flight plan is highlighted, activates the associated menu.
KeyG1000PfdMenuButton KeySimEvent = "G1000_PFD_MENU_BUTTON"
//KeyG1000PfdClearButton Clears the current input.
KeyG1000PfdClearButton KeySimEvent = "G1000_PFD_CLEAR_BUTTON"
//KeyG1000PfdEnterButton Enters the current input.
KeyG1000PfdEnterButton KeySimEvent = "G1000_PFD_ENTER_BUTTON"
//KeyG1000PfdCursorButton Turns on or off a screen cursor.
KeyG1000PfdCursorButton KeySimEvent = "G1000_PFD_CURSOR_BUTTON"
//KeyG1000PfdGroupKnobInc Step up through the page groups.
KeyG1000PfdGroupKnobInc KeySimEvent = "G1000_PFD_GROUP_KNOB_INC"
//KeyG1000PfdGroupKnobDec Step down through the page groups.
KeyG1000PfdGroupKnobDec KeySimEvent = "G1000_PFD_GROUP_KNOB_DEC"
//KeyG1000PfdPageKnobInc Step up through the individual pages.
KeyG1000PfdPageKnobInc KeySimEvent = "G1000_PFD_PAGE_KNOB_INC"
//KeyG1000PfdPageKnobDec Step down through the individual pages.
KeyG1000PfdPageKnobDec KeySimEvent = "G1000_PFD_PAGE_KNOB_DEC"
//KeyG1000PfdSoftkey1 Initiate the action for the icon displayed in the softkey position. G1000 (Multi-function Display)
KeyG1000PfdSoftkey1 KeySimEvent = "G1000_PFD_SOFTKEY1"
KeyG1000PfdSoftkey2 KeySimEvent = "G1000_PFD_SOFTKEY2"
KeyG1000PfdSoftkey3 KeySimEvent = "G1000_PFD_SOFTKEY3"
KeyG1000PfdSoftkey4 KeySimEvent = "G1000_PFD_SOFTKEY4"
KeyG1000PfdSoftkey5 KeySimEvent = "G1000_PFD_SOFTKEY5"
KeyG1000PfdSoftkey6 KeySimEvent = "G1000_PFD_SOFTKEY6"
KeyG1000PfdSoftkey7 KeySimEvent = "G1000_PFD_SOFTKEY7"
KeyG1000PfdSoftkey8 KeySimEvent = "G1000_PFD_SOFTKEY8"
KeyG1000PfdSoftkey9 KeySimEvent = "G1000_PFD_SOFTKEY9"
KeyG1000PfdSoftkey10 KeySimEvent = "G1000_PFD_SOFTKEY10"
KeyG1000PfdSoftkey11 KeySimEvent = "G1000_PFD_SOFTKEY11"
KeyG1000PfdSoftkey12 KeySimEvent = "G1000_PFD_SOFTKEY12"
//KeyG1000MfdFlightplanButton The multifunction display (MFD) should display its current flight plan.
KeyG1000MfdFlightplanButton KeySimEvent = "G1000_MFD_FLIGHTPLAN_BUTTON"
//KeyG1000MfdProcedureButton Turn to the Procedure page.
KeyG1000MfdProcedureButton KeySimEvent = "G1000_MFD_PROCEDURE_BUTTON"
//KeyG1000MfdZoominButton Zoom in on the current map.
KeyG1000MfdZoominButton KeySimEvent = "G1000_MFD_ZOOMIN_BUTTON"
//KeyG1000MfdZoomoutButton Zoom out on the current map.
KeyG1000MfdZoomoutButton KeySimEvent = "G1000_MFD_ZOOMOUT_BUTTON"
//KeyG1000MfdDirecttoButton Turn to the Direct To page.
KeyG1000MfdDirecttoButton KeySimEvent = "G1000_MFD_DIRECTTO_BUTTON"
//KeyG1000MfdMenuButton If a segmented flight plan is highlighted, activates the associated menu.
KeyG1000MfdMenuButton KeySimEvent = "G1000_MFD_MENU_BUTTON"
//KeyG1000MfdClearButton Clears the current input.
KeyG1000MfdClearButton KeySimEvent = "G1000_MFD_CLEAR_BUTTON"
//KeyG1000MfdEnterButton Enters the current input.
KeyG1000MfdEnterButton KeySimEvent = "G1000_MFD_ENTER_BUTTON"
//KeyG1000MfdCursorButton Turns on or off a screen cursor.
KeyG1000MfdCursorButton KeySimEvent = "G1000_MFD_CURSOR_BUTTON"
//KeyG1000MfdGroupKnobInc Step up through the page groups.
KeyG1000MfdGroupKnobInc KeySimEvent = "G1000_MFD_GROUP_KNOB_INC"
//KeyG1000MfdGroupKnobDec Step down through the page groups.
KeyG1000MfdGroupKnobDec KeySimEvent = "G1000_MFD_GROUP_KNOB_DEC"
//KeyG1000MfdPageKnobInc Step up through the individual pages.
KeyG1000MfdPageKnobInc KeySimEvent = "G1000_MFD_PAGE_KNOB_INC"
//KeyG1000MfdPageKnobDec Step down through the individual pages.
KeyG1000MfdPageKnobDec KeySimEvent = "G1000_MFD_PAGE_KNOB_DEC"
//KeyG1000MfdSoftkey1 Initiate the action for the icon displayed in the softkey position.
KeyG1000MfdSoftkey1 KeySimEvent = "G1000_MFD_SOFTKEY1"
KeyG1000MfdSoftkey2 KeySimEvent = "G1000_MFD_SOFTKEY2"
KeyG1000MfdSoftkey3 KeySimEvent = "G1000_MFD_SOFTKEY3"
KeyG1000MfdSoftkey4 KeySimEvent = "G1000_MFD_SOFTKEY4"
KeyG1000MfdSoftkey5 KeySimEvent = "G1000_MFD_SOFTKEY5"
KeyG1000MfdSoftkey6 KeySimEvent = "G1000_MFD_SOFTKEY6"
KeyG1000MfdSoftkey7 KeySimEvent = "G1000_MFD_SOFTKEY7"
KeyG1000MfdSoftkey8 KeySimEvent = "G1000_MFD_SOFTKEY8"
KeyG1000MfdSoftkey9 KeySimEvent = "G1000_MFD_SOFTKEY9"
KeyG1000MfdSoftkey10 KeySimEvent = "G1000_MFD_SOFTKEY10"
KeyG1000MfdSoftkey11 KeySimEvent = "G1000_MFD_SOFTKEY11"
KeyG1000MfdSoftkey12 KeySimEvent = "G1000_MFD_SOFTKEY12"
//KeyThrottleFull Set throttles max
KeyThrottleFull KeySimEvent = "THROTTLE_FULL"
//KeyThrottleIncr Increment throttles
KeyThrottleIncr KeySimEvent = "THROTTLE_INCR"
//KeyThrottleIncrSmall Increment throttles small
KeyThrottleIncrSmall KeySimEvent = "THROTTLE_INCR_SMALL"
//KeyThrottleDecr Decrement throttles
KeyThrottleDecr KeySimEvent = "THROTTLE_DECR"
//KeyThrottleDecrSmall Decrease throttles small
KeyThrottleDecrSmall KeySimEvent = "THROTTLE_DECR_SMALL"
//KeyThrottleCut Set throttles to idle
KeyThrottleCut KeySimEvent = "THROTTLE_CUT"
//KeyIncreaseThrottle Increment throttles
KeyIncreaseThrottle KeySimEvent = "INCREASE_THROTTLE"
//KeyDecreaseThrottle Decrement throttles
KeyDecreaseThrottle KeySimEvent = "DECREASE_THROTTLE"
//KeyThrottleSet Set throttles exactly (0- 16383)
KeyThrottleSet KeySimEvent = "THROTTLE_SET"
//KeyAxisThrottleSet Set throttles (0- 16383) (Pilot only, transmitted to Co-pilot if in a helicopter, not-transmitted otherwise).
KeyAxisThrottleSet KeySimEvent = "AXIS_THROTTLE_SET"
//KeyThrottle1Set Set throttle 1 exactly (0 to 16383)
KeyThrottle1Set KeySimEvent = "THROTTLE1_SET"
//KeyThrottle2Set Set throttle 2 exactly (0 to 16383)
KeyThrottle2Set KeySimEvent = "THROTTLE2_SET"
//KeyThrottle3Set Set throttle 3 exactly (0 to 16383)
KeyThrottle3Set KeySimEvent = "THROTTLE3_SET"
//KeyThrottle4Set Set throttle 4 exactly (0 to 16383)
KeyThrottle4Set KeySimEvent = "THROTTLE4_SET"
//KeyThrottle1Full Set throttle 1 max
KeyThrottle1Full KeySimEvent = "THROTTLE1_FULL"
//KeyThrottle1Incr Increment throttle 1
KeyThrottle1Incr KeySimEvent = "THROTTLE1_INCR"
//KeyThrottle1IncrSmall Increment throttle 1 small
KeyThrottle1IncrSmall KeySimEvent = "THROTTLE1_INCR_SMALL"
//KeyThrottle1Decr Decrement throttle 1
KeyThrottle1Decr KeySimEvent = "THROTTLE1_DECR"
//KeyThrottle1Cut Set throttle 1 to idle
KeyThrottle1Cut KeySimEvent = "THROTTLE1_CUT"
//KeyThrottle2Full Set throttle 2 max
KeyThrottle2Full KeySimEvent = "THROTTLE2_FULL"
//KeyThrottle2Incr Increment throttle 2
KeyThrottle2Incr KeySimEvent = "THROTTLE2_INCR"
//KeyThrottle2IncrSmall Increment throttle 2 small
KeyThrottle2IncrSmall KeySimEvent = "THROTTLE2_INCR_SMALL"
//KeyThrottle2Decr Decrement throttle 2
KeyThrottle2Decr KeySimEvent = "THROTTLE2_DECR"
//KeyThrottle2Cut Set throttle 2 to idle
KeyThrottle2Cut KeySimEvent = "THROTTLE2_CUT"
//KeyThrottle3Full Set throttle 3 max
KeyThrottle3Full KeySimEvent = "THROTTLE3_FULL"
//KeyThrottle3Incr Increment throttle 3
KeyThrottle3Incr KeySimEvent = "THROTTLE3_INCR"
//KeyThrottle3IncrSmall Increment throttle 3 small
KeyThrottle3IncrSmall KeySimEvent = "THROTTLE3_INCR_SMALL"
//KeyThrottle3Decr Decrement throttle 3
KeyThrottle3Decr KeySimEvent = "THROTTLE3_DECR"
//KeyThrottle3Cut Set throttle 3 to idle
KeyThrottle3Cut KeySimEvent = "THROTTLE3_CUT"
//KeyThrottle4Full Set throttle 1 max
KeyThrottle4Full KeySimEvent = "THROTTLE4_FULL"
//KeyThrottle4Incr Increment throttle 4
KeyThrottle4Incr KeySimEvent = "THROTTLE4_INCR"
//KeyThrottle4IncrSmall Increment throttle 4 small
KeyThrottle4IncrSmall KeySimEvent = "THROTTLE4_INCR_SMALL"
//KeyThrottle4Decr Decrement throttle 4
KeyThrottle4Decr KeySimEvent = "THROTTLE4_DECR"
//KeyThrottle4Cut Set throttle 4 to idle
KeyThrottle4Cut KeySimEvent = "THROTTLE4_CUT"
//KeyThrottle10 Set throttles to 10%
KeyThrottle10 KeySimEvent = "THROTTLE_10"
//KeyThrottle20 Set throttles to 20%
KeyThrottle20 KeySimEvent = "THROTTLE_20"
//KeyThrottle30 Set throttles to 30%
KeyThrottle30 KeySimEvent = "THROTTLE_30"
//KeyThrottle40 Set throttles to 40%
KeyThrottle40 KeySimEvent = "THROTTLE_40"
//KeyThrottle50 Set throttles to 50%
KeyThrottle50 KeySimEvent = "THROTTLE_50"
//KeyThrottle60 Set throttles to 60%
KeyThrottle60 KeySimEvent = "THROTTLE_60"
//KeyThrottle70 Set throttles to 70%
KeyThrottle70 KeySimEvent = "THROTTLE_70"
//KeyThrottle80 Set throttles to 80%
KeyThrottle80 KeySimEvent = "THROTTLE_80"
//KeyThrottle90 Set throttles to 90%
KeyThrottle90 KeySimEvent = "THROTTLE_90"
//KeyAxisThrottle1Set Set throttle 1 exactly (-16383 - +16383)
KeyAxisThrottle1Set KeySimEvent = "AXIS_THROTTLE1_SET"
//KeyAxisThrottle2Set Set throttle 2 exactly (-16383 - +16383)
KeyAxisThrottle2Set KeySimEvent = "AXIS_THROTTLE2_SET"
//KeyAxisThrottle3Set Set throttle 3 exactly (-16383 - +16383)
KeyAxisThrottle3Set KeySimEvent = "AXIS_THROTTLE3_SET"
//KeyAxisThrottle4Set Set throttle 4 exactly (-16383 - +16383)
KeyAxisThrottle4Set KeySimEvent = "AXIS_THROTTLE4_SET"
//KeyThrottle1DecrSmall Decrease throttle 1 small
KeyThrottle1DecrSmall KeySimEvent = "THROTTLE1_DECR_SMALL"
//KeyThrottle2DecrSmall Decrease throttle 2 small
KeyThrottle2DecrSmall KeySimEvent = "THROTTLE2_DECR_SMALL"
//KeyThrottle3DecrSmall Decrease throttle 3 small
KeyThrottle3DecrSmall KeySimEvent = "THROTTLE3_DECR_SMALL"
//KeyThrottle4DecrSmall Decrease throttle 4 small
KeyThrottle4DecrSmall KeySimEvent = "THROTTLE4_DECR_SMALL"
//KeyPropPitchDecrSmall Decrease prop levers small
KeyPropPitchDecrSmall KeySimEvent = "PROP_PITCH_DECR_SMALL"
//KeyPropPitch1DecrSmall Decrease prop lever 1 small
KeyPropPitch1DecrSmall KeySimEvent = "PROP_PITCH1_DECR_SMALL"
//KeyPropPitch2DecrSmall Decrease prop lever 2 small
KeyPropPitch2DecrSmall KeySimEvent = "PROP_PITCH2_DECR_SMALL"
//KeyPropPitch3DecrSmall Decrease prop lever 3 small
KeyPropPitch3DecrSmall KeySimEvent = "PROP_PITCH3_DECR_SMALL"
//KeyPropPitch4DecrSmall Decrease prop lever 4 small
KeyPropPitch4DecrSmall KeySimEvent = "PROP_PITCH4_DECR_SMALL"
//KeyMixture1Rich Set mixture lever 1 to max rich
KeyMixture1Rich KeySimEvent = "MIXTURE1_RICH"
//KeyMixture1Incr Increment mixture lever 1
KeyMixture1Incr KeySimEvent = "MIXTURE1_INCR"
//KeyMixture1IncrSmall Increment mixture lever 1 small
KeyMixture1IncrSmall KeySimEvent = "MIXTURE1_INCR_SMALL"
//KeyMixture1Decr Decrement mixture lever 1
KeyMixture1Decr KeySimEvent = "MIXTURE1_DECR"
//KeyMixture1Lean Set mixture lever 1 to max lean
KeyMixture1Lean KeySimEvent = "MIXTURE1_LEAN"
//KeyMixture2Rich Set mixture lever 2 to max rich
KeyMixture2Rich KeySimEvent = "MIXTURE2_RICH"
//KeyMixture2Incr Increment mixture lever 2
KeyMixture2Incr KeySimEvent = "MIXTURE2_INCR"
//KeyMixture2IncrSmall Increment mixture lever 2 small
KeyMixture2IncrSmall KeySimEvent = "MIXTURE2_INCR_SMALL"
//KeyMixture2Decr Decrement mixture lever 2
KeyMixture2Decr KeySimEvent = "MIXTURE2_DECR"
//KeyMixture2Lean Set mixture lever 2 to max lean
KeyMixture2Lean KeySimEvent = "MIXTURE2_LEAN"
//KeyMixture3Rich Set mixture lever 3 to max rich
KeyMixture3Rich KeySimEvent = "MIXTURE3_RICH"
//KeyMixture3Incr Increment mixture lever 3
KeyMixture3Incr KeySimEvent = "MIXTURE3_INCR"
//KeyMixture3IncrSmall Increment mixture lever 3 small
KeyMixture3IncrSmall KeySimEvent = "MIXTURE3_INCR_SMALL"
//KeyMixture3Decr Decrement mixture lever 3
KeyMixture3Decr KeySimEvent = "MIXTURE3_DECR"
//KeyMixture3Lean Set mixture lever 3 to max lean
KeyMixture3Lean KeySimEvent = "MIXTURE3_LEAN"
//KeyMixture4Rich Set mixture lever 4 to max rich
KeyMixture4Rich KeySimEvent = "MIXTURE4_RICH"
//KeyMixture4Incr Increment mixture lever 4
KeyMixture4Incr KeySimEvent = "MIXTURE4_INCR"
//KeyMixture4IncrSmall Increment mixture lever 4 small
KeyMixture4IncrSmall KeySimEvent = "MIXTURE4_INCR_SMALL"
//KeyMixture4Decr Decrement mixture lever 4
KeyMixture4Decr KeySimEvent = "MIXTURE4_DECR"
//KeyMixture4Lean Set mixture lever 4 to max lean
KeyMixture4Lean KeySimEvent = "MIXTURE4_LEAN"
//KeyMixtureSet Set mixture levers to exact value (0 to 16383)
KeyMixtureSet KeySimEvent = "MIXTURE_SET"
//KeyMixtureRich Set mixture levers to max rich
KeyMixtureRich KeySimEvent = "MIXTURE_RICH"
//KeyMixtureIncr Increment mixture levers
KeyMixtureIncr KeySimEvent = "MIXTURE_INCR"
//KeyMixtureIncrSmall Increment mixture levers small
KeyMixtureIncrSmall KeySimEvent = "MIXTURE_INCR_SMALL"
//KeyMixtureDecr Decrement mixture levers
KeyMixtureDecr KeySimEvent = "MIXTURE_DECR"
//KeyMixtureLean Set mixture levers to max lean
KeyMixtureLean KeySimEvent = "MIXTURE_LEAN"
//KeyMixture1Set Set mixture lever 1 exact value (0 to 16383)
KeyMixture1Set KeySimEvent = "MIXTURE1_SET"
//KeyMixture2Set Set mixture lever 2 exact value (0 to 16383)
KeyMixture2Set KeySimEvent = "MIXTURE2_SET"
//KeyMixture3Set Set mixture lever 3 exact value (0 to 16383)
KeyMixture3Set KeySimEvent = "MIXTURE3_SET"
//KeyMixture4Set Set mixture lever 4 exact value (0 to 16383)
KeyMixture4Set KeySimEvent = "MIXTURE4_SET"
//KeyAxisMixtureSet Set mixture lever 1 exact value (-16383 to +16383)
KeyAxisMixtureSet KeySimEvent = "AXIS_MIXTURE_SET"
//KeyAxisMixture1Set Set mixture lever 1 exact value (-16383 to +16383)
KeyAxisMixture1Set KeySimEvent = "AXIS_MIXTURE1_SET"
//KeyAxisMixture2Set Set mixture lever 2 exact value (-16383 to +16383)
KeyAxisMixture2Set KeySimEvent = "AXIS_MIXTURE2_SET"
//KeyAxisMixture3Set Set mixture lever 3 exact value (-16383 to +16383)
KeyAxisMixture3Set KeySimEvent = "AXIS_MIXTURE3_SET"
//KeyAxisMixture4Set Set mixture lever 4 exact value (-16383 to +16383)
KeyAxisMixture4Set KeySimEvent = "AXIS_MIXTURE4_SET"
//KeyMixtureSetBest Set mixture levers to current best power setting
KeyMixtureSetBest KeySimEvent = "MIXTURE_SET_BEST"
//KeyMixtureDecrSmall Decrement mixture levers small
KeyMixtureDecrSmall KeySimEvent = "MIXTURE_DECR_SMALL"
//KeyMixture1DecrSmall Decrement mixture lever 1 small
KeyMixture1DecrSmall KeySimEvent = "MIXTURE1_DECR_SMALL"
//KeyMixture2DecrSmall Decrement mixture lever 4 small
KeyMixture2DecrSmall KeySimEvent = "MIXTURE2_DECR_SMALL"
//KeyMixture3DecrSmall Decrement mixture lever 4 small
KeyMixture3DecrSmall KeySimEvent = "MIXTURE3_DECR_SMALL"
//KeyMixture4DecrSmall Decrement mixture lever 4 small
KeyMixture4DecrSmall KeySimEvent = "MIXTURE4_DECR_SMALL"
//KeyPropPitchSet Set prop pitch levers (0 to 16383)
KeyPropPitchSet KeySimEvent = "PROP_PITCH_SET"
//KeyPropPitchLo Set prop pitch levers max (lo pitch)
KeyPropPitchLo KeySimEvent = "PROP_PITCH_LO"
//KeyPropPitchIncr Increment prop pitch levers
KeyPropPitchIncr KeySimEvent = "PROP_PITCH_INCR"
//KeyPropPitchIncrSmall Increment prop pitch levers small
KeyPropPitchIncrSmall KeySimEvent = "PROP_PITCH_INCR_SMALL"
//KeyPropPitchDecr Decrement prop pitch levers
KeyPropPitchDecr KeySimEvent = "PROP_PITCH_DECR"
//KeyPropPitchHi Set prop pitch levers min (hi pitch)
KeyPropPitchHi KeySimEvent = "PROP_PITCH_HI"
//KeyPropPitch1Set Set prop pitch lever 1 exact value (0 to 16383)
KeyPropPitch1Set KeySimEvent = "PROP_PITCH1_SET"
//KeyPropPitch2Set Set prop pitch lever 2 exact value (0 to 16383)
KeyPropPitch2Set KeySimEvent = "PROP_PITCH2_SET"
//KeyPropPitch3Set Set prop pitch lever 3 exact value (0 to 16383)
KeyPropPitch3Set KeySimEvent = "PROP_PITCH3_SET"
//KeyPropPitch4Set Set prop pitch lever 4 exact value (0 to 16383)
KeyPropPitch4Set KeySimEvent = "PROP_PITCH4_SET"
//KeyPropPitch1Lo Set prop pitch lever 1 max (lo pitch)
KeyPropPitch1Lo KeySimEvent = "PROP_PITCH1_LO"
//KeyPropPitch1Incr Increment prop pitch lever 1
KeyPropPitch1Incr KeySimEvent = "PROP_PITCH1_INCR"
//KeyPropPitch1IncrSmall Increment prop pitch lever 1 small
KeyPropPitch1IncrSmall KeySimEvent = "PROP_PITCH1_INCR_SMALL"
//KeyPropPitch1Decr Decrement prop pitch lever 1
KeyPropPitch1Decr KeySimEvent = "PROP_PITCH1_DECR"
//KeyPropPitch1Hi Set prop pitch lever 1 min (hi pitch)
KeyPropPitch1Hi KeySimEvent = "PROP_PITCH1_HI"
//KeyPropPitch2Lo Set prop pitch lever 2 max (lo pitch)
KeyPropPitch2Lo KeySimEvent = "PROP_PITCH2_LO"
//KeyPropPitch2Incr Increment prop pitch lever 2
KeyPropPitch2Incr KeySimEvent = "PROP_PITCH2_INCR"
//KeyPropPitch2IncrSmall Increment prop pitch lever 2 small
KeyPropPitch2IncrSmall KeySimEvent = "PROP_PITCH2_INCR_SMALL"
//KeyPropPitch2Decr Decrement prop pitch lever 2
KeyPropPitch2Decr KeySimEvent = "PROP_PITCH2_DECR"
//KeyPropPitch2Hi Set prop pitch lever 2 min (hi pitch)
KeyPropPitch2Hi KeySimEvent = "PROP_PITCH2_HI"
//KeyPropPitch3Lo Set prop pitch lever 3 max (lo pitch)
KeyPropPitch3Lo KeySimEvent = "PROP_PITCH3_LO"
//KeyPropPitch3Incr Increment prop pitch lever 3
KeyPropPitch3Incr KeySimEvent = "PROP_PITCH3_INCR"
//KeyPropPitch3IncrSmall Increment prop pitch lever 3 small
KeyPropPitch3IncrSmall KeySimEvent = "PROP_PITCH3_INCR_SMALL"
//KeyPropPitch3Decr Decrement prop pitch lever 3
KeyPropPitch3Decr KeySimEvent = "PROP_PITCH3_DECR"
//KeyPropPitch3Hi Set prop pitch lever 3 min (hi pitch)
KeyPropPitch3Hi KeySimEvent = "PROP_PITCH3_HI"
//KeyPropPitch4Lo Set prop pitch lever 4 max (lo pitch)
KeyPropPitch4Lo KeySimEvent = "PROP_PITCH4_LO"
//KeyPropPitch4Incr Increment prop pitch lever 4
KeyPropPitch4Incr KeySimEvent = "PROP_PITCH4_INCR"
//KeyPropPitch4IncrSmall Increment prop pitch lever 4 small
KeyPropPitch4IncrSmall KeySimEvent = "PROP_PITCH4_INCR_SMALL"
//KeyPropPitch4Decr Decrement prop pitch lever 4
KeyPropPitch4Decr KeySimEvent = "PROP_PITCH4_DECR"
//KeyPropPitch4Hi Set prop pitch lever 4 min (hi pitch)
KeyPropPitch4Hi KeySimEvent = "PROP_PITCH4_HI"
//KeyAxisPropellerSet Set propeller levers exact value (-16383 to +16383)
KeyAxisPropellerSet KeySimEvent = "AXIS_PROPELLER_SET"
//KeyAxisPropeller1Set Set propeller lever 1 exact value (-16383 to +16383)
KeyAxisPropeller1Set KeySimEvent = "AXIS_PROPELLER1_SET"
//KeyAxisPropeller2Set Set propeller lever 2 exact value (-16383 to +16383)
KeyAxisPropeller2Set KeySimEvent = "AXIS_PROPELLER2_SET"
//KeyAxisPropeller3Set Set propeller lever 3 exact value (-16383 to +16383)
KeyAxisPropeller3Set KeySimEvent = "AXIS_PROPELLER3_SET"
//KeyAxisPropeller4Set Set propeller lever 4 exact value (-16383 to +16383)
KeyAxisPropeller4Set KeySimEvent = "AXIS_PROPELLER4_SET"
//KeyJetStarter Selects jet engine starter (for +/- sequence)
KeyJetStarter KeySimEvent = "JET_STARTER"
//KeyStarterSet Sets magnetos (0,1)
KeyStarterSet KeySimEvent = "MAGNETO_SET"
//KeyToggleStarter1 Toggle starter 1
KeyToggleStarter1 KeySimEvent = "TOGGLE_STARTER1"
//KeyToggleStarter2 Toggle starter 2
KeyToggleStarter2 KeySimEvent = "TOGGLE_STARTER2"
//KeyToggleStarter3 Toggle starter 3
KeyToggleStarter3 KeySimEvent = "TOGGLE_STARTER3"
//KeyToggleStarter4 Toggle starter 4
KeyToggleStarter4 KeySimEvent = "TOGGLE_STARTER4"
//KeyToggleAllStarters Toggle starters
KeyToggleAllStarters KeySimEvent = "TOGGLE_ALL_STARTERS"
//KeyEngineAutoStart Triggers auto-start
KeyEngineAutoStart KeySimEvent = "ENGINE_AUTO_START"
//KeyEngineAutoShutdown Triggers auto-shutdown
KeyEngineAutoShutdown KeySimEvent = "ENGINE_AUTO_SHUTDOWN"
//KeyMagneto Selects magnetos (for +/- sequence)
KeyMagneto KeySimEvent = "MAGNETO"
//KeyMagnetoDecr Decrease magneto switches positions
KeyMagnetoDecr KeySimEvent = "MAGNETO_DECR"
//KeyMagnetoIncr Increase magneto switches positions
KeyMagnetoIncr KeySimEvent = "MAGNETO_INCR"
//KeyMagneto1Off Set engine 1 magnetos off
KeyMagneto1Off KeySimEvent = "MAGNETO1_OFF"
//KeyMagneto1Right Toggle engine 1 right magneto All aircraft
KeyMagneto1Right KeySimEvent = "MAGNETO1_RIGHT"
//KeyMagneto1Left Toggle engine 1 left magneto All aircraft
KeyMagneto1Left KeySimEvent = "MAGNETO1_LEFT"
//KeyMagneto1Both Set engine 1 magnetos on
KeyMagneto1Both KeySimEvent = "MAGNETO1_BOTH"
//KeyMagneto1Start Set engine 1 magnetos on and toggle starter
KeyMagneto1Start KeySimEvent = "MAGNETO1_START"
//KeyMagneto2Off Set engine 2 magnetos off
KeyMagneto2Off KeySimEvent = "MAGNETO2_OFF"
//KeyMagneto2Right Toggle engine 2 right magneto All aircraft
KeyMagneto2Right KeySimEvent = "MAGNETO2_RIGHT"
//KeyMagneto2Left Toggle engine 2 left magneto All aircraft
KeyMagneto2Left KeySimEvent = "MAGNETO2_LEFT"
//KeyMagneto2Both Set engine 2 magnetos on
KeyMagneto2Both KeySimEvent = "MAGNETO2_BOTH"
//KeyMagneto2Start Set engine 2 magnetos on and toggle starter
KeyMagneto2Start KeySimEvent = "MAGNETO2_START"
//KeyMagneto3Off Set engine 3 magnetos off
KeyMagneto3Off KeySimEvent = "MAGNETO3_OFF"
//KeyMagneto3Right Toggle engine 3 right magneto All aircraft
KeyMagneto3Right KeySimEvent = "MAGNETO3_RIGHT"
//KeyMagneto3Left Toggle engine 3 left magneto All aircraft
KeyMagneto3Left KeySimEvent = "MAGNETO3_LEFT"
//KeyMagneto3Both Set engine 3 magnetos on
KeyMagneto3Both KeySimEvent = "MAGNETO3_BOTH"
//KeyMagneto3Start Set engine 3 magnetos on and toggle starter
KeyMagneto3Start KeySimEvent = "MAGNETO3_START"
//KeyMagneto4Off Set engine 4 magnetos off
KeyMagneto4Off KeySimEvent = "MAGNETO4_OFF"
//KeyMagneto4Right Toggle engine 4 right magneto All aircraft
KeyMagneto4Right KeySimEvent = "MAGNETO4_RIGHT"
//KeyMagneto4Left Toggle engine 4 left magneto All aircraft
KeyMagneto4Left KeySimEvent = "MAGNETO4_LEFT"
//KeyMagneto4Both Set engine 4 magnetos on
KeyMagneto4Both KeySimEvent = "MAGNETO4_BOTH"
//KeyMagneto4Start Set engine 4 magnetos on and toggle starter
KeyMagneto4Start KeySimEvent = "MAGNETO4_START"
//KeyMagnetoOff Set engine magnetos off
KeyMagnetoOff KeySimEvent = "MAGNETO_OFF"
//KeyMagnetoRight Set engine right magnetos on
KeyMagnetoRight KeySimEvent = "MAGNETO_RIGHT"
//KeyMagnetoLeft Set engine left magnetos on
KeyMagnetoLeft KeySimEvent = "MAGNETO_LEFT"
//KeyMagnetoBoth Set engine magnetos on
KeyMagnetoBoth KeySimEvent = "MAGNETO_BOTH"
//KeyMagnetoStart Set engine magnetos on and toggle starters
KeyMagnetoStart KeySimEvent = "MAGNETO_START"
//KeyMagneto1Decr Decrease engine 1 magneto switch position
KeyMagneto1Decr KeySimEvent = "MAGNETO1_DECR"
//KeyMagneto1Incr Increase engine 1 magneto switch position
KeyMagneto1Incr KeySimEvent = "MAGNETO1_INCR"
//KeyMagneto2Decr Decrease engine 2 magneto switch position
KeyMagneto2Decr KeySimEvent = "MAGNETO2_DECR"
//KeyMagneto2Incr Increase engine 2 magneto switch position
KeyMagneto2Incr KeySimEvent = "MAGNETO2_INCR"
//KeyMagneto3Decr Decrease engine 3 magneto switch position
KeyMagneto3Decr KeySimEvent = "MAGNETO3_DECR"
//KeyMagneto3Incr Increase engine 3 magneto switch position
KeyMagneto3Incr KeySimEvent = "MAGNETO3_INCR"
//KeyMagneto4Decr Decrease engine 4 magneto switch position
KeyMagneto4Decr KeySimEvent = "MAGNETO4_DECR"
//KeyMagneto4Incr Increase engine 4 magneto switch position
KeyMagneto4Incr KeySimEvent = "MAGNETO4_INCR"
//KeyMagneto1Set Set engine 1 magneto switch
KeyMagneto1Set KeySimEvent = "MAGNETO1_SET"
//KeyMagneto2Set Set engine 2 magneto switch
KeyMagneto2Set KeySimEvent = "MAGNETO2_SET"
//KeyMagneto3Set Set engine 3 magneto switch
KeyMagneto3Set KeySimEvent = "MAGNETO3_SET"
//KeyMagneto4Set Set engine 4 magneto switch
KeyMagneto4Set KeySimEvent = "MAGNETO4_SET"
//KeyAntiIceOn Sets anti-ice switches on
KeyAntiIceOn KeySimEvent = "ANTI_ICE_ON"
//KeyAntiIceOff Sets anti-ice switches off
KeyAntiIceOff KeySimEvent = "ANTI_ICE_OFF"
//KeyAntiIceSet Sets anti-ice switches from argument (0,1)
KeyAntiIceSet KeySimEvent = "ANTI_ICE_SET"
//KeyAntiIceToggle Toggle anti-ice switches
KeyAntiIceToggle KeySimEvent = "ANTI_ICE_TOGGLE"
//KeyAntiIceToggleEng1 Toggle engine 1 anti-ice switch
KeyAntiIceToggleEng1 KeySimEvent = "ANTI_ICE_TOGGLE_ENG1"
//KeyAntiIceToggleEng2 Toggle engine 2 anti-ice switch
KeyAntiIceToggleEng2 KeySimEvent = "ANTI_ICE_TOGGLE_ENG2"
//KeyAntiIceToggleEng3 Toggle engine 3 anti-ice switch
KeyAntiIceToggleEng3 KeySimEvent = "ANTI_ICE_TOGGLE_ENG3"
//KeyAntiIceToggleEng4 Toggle engine 4 anti-ice switch
KeyAntiIceToggleEng4 KeySimEvent = "ANTI_ICE_TOGGLE_ENG4"
//KeyAntiIceSetEng1 Sets engine 1 anti-ice switch (0,1)
KeyAntiIceSetEng1 KeySimEvent = "ANTI_ICE_SET_ENG1"
//KeyAntiIceSetEng2 Sets engine 2 anti-ice switch (0,1)
KeyAntiIceSetEng2 KeySimEvent = "ANTI_ICE_SET_ENG2"
//KeyAntiIceSetEng3 Sets engine 3 anti-ice switch (0,1)
KeyAntiIceSetEng3 KeySimEvent = "ANTI_ICE_SET_ENG3"
//KeyAntiIceSetEng4 Sets engine 4 anti-ice switch (0,1)
KeyAntiIceSetEng4 KeySimEvent = "ANTI_ICE_SET_ENG4"
//KeyToggleFuelValveAll Toggle engine fuel valves
KeyToggleFuelValveAll KeySimEvent = "TOGGLE_FUEL_VALVE_ALL"
//KeyToggleFuelValveEng1 Toggle engine 1 fuel valve All aircraft
KeyToggleFuelValveEng1 KeySimEvent = "TOGGLE_FUEL_VALVE_ENG1"
//KeyToggleFuelValveEng2 Toggle engine 2 fuel valve All aircraft
KeyToggleFuelValveEng2 KeySimEvent = "TOGGLE_FUEL_VALVE_ENG2"
//KeyToggleFuelValveEng3 Toggle engine 3 fuel valve All aircraft
KeyToggleFuelValveEng3 KeySimEvent = "TOGGLE_FUEL_VALVE_ENG3"
//KeyToggleFuelValveEng4 Toggle engine 4 fuel valve All aircraft
KeyToggleFuelValveEng4 KeySimEvent = "TOGGLE_FUEL_VALVE_ENG4"
//KeyCowlflap1Set Sets engine 1 cowl flap lever position (0 to 16383)
KeyCowlflap1Set KeySimEvent = "COWLFLAP1_SET"
//KeyCowlflap2Set Sets engine 2 cowl flap lever position (0 to 16383)
KeyCowlflap2Set KeySimEvent = "COWLFLAP2_SET"
//KeyCowlflap3Set Sets engine 3 cowl flap lever position (0 to 16383)
KeyCowlflap3Set KeySimEvent = "COWLFLAP3_SET"
//KeyCowlflap4Set Sets engine 4 cowl flap lever position (0 to 16383)
KeyCowlflap4Set KeySimEvent = "COWLFLAP4_SET"
//KeyIncCowlFlaps Increment cowl flap levers
KeyIncCowlFlaps KeySimEvent = "INC_COWL_FLAPS"
//KeyDecCowlFlaps Decrement cowl flap levers
KeyDecCowlFlaps KeySimEvent = "DEC_COWL_FLAPS"
//KeyIncCowlFlaps1 Increment engine 1 cowl flap lever
KeyIncCowlFlaps1 KeySimEvent = "INC_COWL_FLAPS1"
//KeyDecCowlFlaps1 Decrement engine 1 cowl flap lever
KeyDecCowlFlaps1 KeySimEvent = "DEC_COWL_FLAPS1"
//KeyIncCowlFlaps2 Increment engine 2 cowl flap lever
KeyIncCowlFlaps2 KeySimEvent = "INC_COWL_FLAPS2"
//KeyDecCowlFlaps2 Decrement engine 2 cowl flap lever
KeyDecCowlFlaps2 KeySimEvent = "DEC_COWL_FLAPS2"
//KeyIncCowlFlaps3 Increment engine 3 cowl flap lever
KeyIncCowlFlaps3 KeySimEvent = "INC_COWL_FLAPS3"
//KeyDecCowlFlaps3 Decrement engine 3 cowl flap lever
KeyDecCowlFlaps3 KeySimEvent = "DEC_COWL_FLAPS3"
//KeyIncCowlFlaps4 Increment engine 4 cowl flap lever
KeyIncCowlFlaps4 KeySimEvent = "INC_COWL_FLAPS4"
//KeyDecCowlFlaps4 Decrement engine 4 cowl flap lever
KeyDecCowlFlaps4 KeySimEvent = "DEC_COWL_FLAPS4"
//KeyFuelPump Toggle electric fuel pumps
KeyFuelPump KeySimEvent = "FUEL_PUMP"
//KeyToggleElectFuelPump Toggle electric fuel pumps
KeyToggleElectFuelPump KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP"
//KeyToggleElectFuelPump1 Toggle engine 1 electric fuel pump All aircraft
KeyToggleElectFuelPump1 KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP1"
//KeyToggleElectFuelPump2 Toggle engine 2 electric fuel pump All aircraft
KeyToggleElectFuelPump2 KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP2"
//KeyToggleElectFuelPump3 Toggle engine 3 electric fuel pump All aircraft
KeyToggleElectFuelPump3 KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP3"
//KeyToggleElectFuelPump4 Toggle engine 4 electric fuel pump All aircraft
KeyToggleElectFuelPump4 KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP4"
//KeyEnginePrimer Trigger engine primers
KeyEnginePrimer KeySimEvent = "ENGINE_PRIMER"
//KeyTogglePrimer Trigger engine primers
KeyTogglePrimer KeySimEvent = "TOGGLE_PRIMER"
//KeyTogglePrimer1 Trigger engine 1 primer
KeyTogglePrimer1 KeySimEvent = "TOGGLE_PRIMER1"
//KeyTogglePrimer2 Trigger engine 2 primer
KeyTogglePrimer2 KeySimEvent = "TOGGLE_PRIMER2"
//KeyTogglePrimer3 Trigger engine 3 primer
KeyTogglePrimer3 KeySimEvent = "TOGGLE_PRIMER3"
//KeyTogglePrimer4 Trigger engine 4 primer
KeyTogglePrimer4 KeySimEvent = "TOGGLE_PRIMER4"
//KeyToggleFeatherSwitches Trigger propeller switches
KeyToggleFeatherSwitches KeySimEvent = "TOGGLE_FEATHER_SWITCHES"
//KeyToggleFeatherSwitch1 Trigger propeller 1 switch
KeyToggleFeatherSwitch1 KeySimEvent = "TOGGLE_FEATHER_SWITCH_1"
//KeyToggleFeatherSwitch2 Trigger propeller 2 switch
KeyToggleFeatherSwitch2 KeySimEvent = "TOGGLE_FEATHER_SWITCH_2"
//KeyToggleFeatherSwitch3 Trigger propeller 3 switch
KeyToggleFeatherSwitch3 KeySimEvent = "TOGGLE_FEATHER_SWITCH_3"
//KeyToggleFeatherSwitch4 Trigger propeller 4 switch
KeyToggleFeatherSwitch4 KeySimEvent = "TOGGLE_FEATHER_SWITCH_4"
//KeyTogglePropSync Turns propeller synchronization switch on
KeyTogglePropSync KeySimEvent = "TOGGLE_PROPELLER_SYNC"
//KeyToggleArmAutofeather Turns auto-feather arming switch on.
KeyToggleArmAutofeather KeySimEvent = "TOGGLE_AUTOFEATHER_ARM"
//KeyToggleAfterburner Toggles afterburners
KeyToggleAfterburner KeySimEvent = "TOGGLE_AFTERBURNER"
//KeyToggleAfterburner1 Toggles engine 1 afterburner
KeyToggleAfterburner1 KeySimEvent = "TOGGLE_AFTERBURNER1"
//KeyToggleAfterburner2 Toggles engine 2 afterburner
KeyToggleAfterburner2 KeySimEvent = "TOGGLE_AFTERBURNER2"
//KeyToggleAfterburner3 Toggles engine 3 afterburner
KeyToggleAfterburner3 KeySimEvent = "TOGGLE_AFTERBURNER3"
//KeyToggleAfterburner4 Toggles engine 4 afterburner
KeyToggleAfterburner4 KeySimEvent = "TOGGLE_AFTERBURNER4"
//KeyEngine Sets engines for 1,2,3,4 selection (to be followed by SELECT_n)
KeyEngine KeySimEvent = "ENGINE"
//KeySpoilersToggle Toggles spoiler handle All aircraft
KeySpoilersToggle KeySimEvent = "SPOILERS_TOGGLE"
//KeyFlapsUp Sets flap handle to full retract position All aircraft
KeyFlapsUp KeySimEvent = "FLAPS_UP"
//KeyFlaps1 Sets flap handle to first extension position All aircraft
KeyFlaps1 KeySimEvent = "FLAPS_1"
//KeyFlaps2 Sets flap handle to second extension position All aircraft
KeyFlaps2 KeySimEvent = "FLAPS_2"
//KeyFlaps3 Sets flap handle to third extension position All aircraft
KeyFlaps3 KeySimEvent = "FLAPS_3"
//KeyFlapsDown Sets flap handle to full extension position All aircraft
KeyFlapsDown KeySimEvent = "FLAPS_DOWN"
//KeyElevTrimDn Increments elevator trim down
KeyElevTrimDn KeySimEvent = "ELEV_TRIM_DN"
//KeyElevDown Increments elevator down (Pilot only).
KeyElevDown KeySimEvent = "ELEV_DOWN"
//KeyAileronsLeft Increments ailerons left (Pilot only).
KeyAileronsLeft KeySimEvent = "AILERONS_LEFT"
//KeyCenterAilerRudder Centers aileron and rudder positions
KeyCenterAilerRudder KeySimEvent = "CENTER_AILER_RUDDER"
//KeyAileronsRight Increments ailerons right (Pilot only).
KeyAileronsRight KeySimEvent = "AILERONS_RIGHT"
//KeyElevTrimUp Increment elevator trim up
KeyElevTrimUp KeySimEvent = "ELEV_TRIM_UP"
//KeyElevUp Increments elevator up (Pilot only).
KeyElevUp KeySimEvent = "ELEV_UP"
//KeyRudderLeft Increments rudder left
KeyRudderLeft KeySimEvent = "RUDDER_LEFT"
//KeyRudderCenter Centers rudder position
KeyRudderCenter KeySimEvent = "RUDDER_CENTER"
//KeyRudderRight Increments rudder right
KeyRudderRight KeySimEvent = "RUDDER_RIGHT"
//KeyElevatorSet Sets elevator position (-16383 - +16383)
KeyElevatorSet KeySimEvent = "ELEVATOR_SET"
//KeyAileronSet Sets aileron position (-16383 - +16383)
KeyAileronSet KeySimEvent = "AILERON_SET"
//KeyRudderSet Sets rudder position (-16383 - +16383)
KeyRudderSet KeySimEvent = "RUDDER_SET"
//KeyFlapsIncr Increments flap handle position All aircraft
KeyFlapsIncr KeySimEvent = "FLAPS_INCR"
//KeyFlapsDecr Decrements flap handle position All aircraft
KeyFlapsDecr KeySimEvent = "FLAPS_DECR"
//KeyAxisElevatorSet Sets elevator position (-16383 - +16383) (Pilot only, and not transmitted to Co-pilot)
KeyAxisElevatorSet KeySimEvent = "AXIS_ELEVATOR_SET"
//KeyAxisAileronsSet Sets aileron position (-16383 - +16383) (Pilot only, and not transmitted to Co-pilot)
KeyAxisAileronsSet KeySimEvent = "AXIS_AILERONS_SET"
//KeyAxisRudderSet Sets rudder position (-16383 - +16383) (Pilot only, and not transmitted to Co-pilot)
KeyAxisRudderSet KeySimEvent = "AXIS_RUDDER_SET"
//KeyAxisElevTrimSet Sets elevator trim position (-16383 - +16383)
KeyAxisElevTrimSet KeySimEvent = "AXIS_ELEV_TRIM_SET"
//KeySpoilersSet Sets spoiler handle position (0 to 16383) All aircraft
KeySpoilersSet KeySimEvent = "SPOILERS_SET"
//KeySpoilersArmToggle Toggles arming of auto-spoilers All aircraft
KeySpoilersArmToggle KeySimEvent = "SPOILERS_ARM_TOGGLE"
//KeySpoilersOn Sets spoiler handle to full extend position All aircraft
KeySpoilersOn KeySimEvent = "SPOILERS_ON"
//KeySpoilersOff Sets spoiler handle to full retract position All aircraft
KeySpoilersOff KeySimEvent = "SPOILERS_OFF"
//KeySpoilersArmOn Sets auto-spoiler arming on All aircraft
KeySpoilersArmOn KeySimEvent = "SPOILERS_ARM_ON"
//KeySpoilersArmOff Sets auto-spoiler arming off All aircraft
KeySpoilersArmOff KeySimEvent = "SPOILERS_ARM_OFF"
//KeySpoilersArmSet Sets auto-spoiler arming (0,1) All aircraft
KeySpoilersArmSet KeySimEvent = "SPOILERS_ARM_SET"
//KeyAileronTrimLeft Increments aileron trim left
KeyAileronTrimLeft KeySimEvent = "AILERON_TRIM_LEFT"
//KeyAileronTrimRight Increments aileron trim right
KeyAileronTrimRight KeySimEvent = "AILERON_TRIM_RIGHT"
//KeyRudderTrimLeft Increments rudder trim left
KeyRudderTrimLeft KeySimEvent = "RUDDER_TRIM_LEFT"
//KeyRudderTrimRight Increments aileron trim right
KeyRudderTrimRight KeySimEvent = "RUDDER_TRIM_RIGHT"
//KeyAxisSpoilerSet Sets spoiler handle position (-16383 - +16383) All aircraft
KeyAxisSpoilerSet KeySimEvent = "AXIS_SPOILER_SET"
//KeyFlapsSet Sets flap handle to closest increment (0 to 16383) All aircraft
KeyFlapsSet KeySimEvent = "FLAPS_SET"
//KeyElevatorTrimSet Sets elevator trim position (0 to 16383)
KeyElevatorTrimSet KeySimEvent = "ELEVATOR_TRIM_SET"
//KeyAxisFlapsSet Sets flap handle to closest increment (-16383 - +16383)
KeyAxisFlapsSet KeySimEvent = "AXIS_FLAPS_SET"
//KeyApMaster Toggles AP on/off
KeyApMaster KeySimEvent = "AP_MASTER"
//KeyAutopilotOff Turns AP off
KeyAutopilotOff KeySimEvent = "AUTOPILOT_OFF"
//KeyAutopilotOn Turns AP on
KeyAutopilotOn KeySimEvent = "AUTOPILOT_ON"
//KeyYawDamperToggle Toggles yaw damper on/off
KeyYawDamperToggle KeySimEvent = "YAW_DAMPER_TOGGLE"
//KeyApPanelHeadingHold Toggles heading hold mode on/off
KeyApPanelHeadingHold KeySimEvent = "AP_PANEL_HEADING_HOLD"
//KeyApPanelAltitudeHold Toggles altitude hold mode on/off
KeyApPanelAltitudeHold KeySimEvent = "AP_PANEL_ALTITUDE_HOLD"
//KeyApAttHoldOn Turns on AP wing leveler and pitch hold mode
KeyApAttHoldOn KeySimEvent = "AP_ATT_HOLD_ON"
//KeyApLocHoldOn Turns AP localizer hold on/armed and glide-slope hold mode off
KeyApLocHoldOn KeySimEvent = "AP_LOC_HOLD_ON"
//KeyApAprHoldOn Turns both AP localizer and glide-slope modes on/armed
KeyApAprHoldOn KeySimEvent = "AP_APR_HOLD_ON"
//KeyApHdgHoldOn Turns heading hold mode on
KeyApHdgHoldOn KeySimEvent = "AP_HDG_HOLD_ON"
//KeyApAltHoldOn Turns altitude hold mode on
KeyApAltHoldOn KeySimEvent = "AP_ALT_HOLD_ON"
//KeyApWingLevelerOn Turns wing leveler mode on
KeyApWingLevelerOn KeySimEvent = "AP_WING_LEVELER_ON"
//KeyApBcHoldOn Turns localizer back course hold mode on/armed
KeyApBcHoldOn KeySimEvent = "AP_BC_HOLD_ON"
//KeyApNav1HoldOn Turns lateral hold mode on
KeyApNav1HoldOn KeySimEvent = "AP_NAV1_HOLD_ON"
//KeyApAttHoldOff Turns off attitude hold mode
KeyApAttHoldOff KeySimEvent = "AP_ATT_HOLD_OFF"
//KeyApLocHoldOff Turns off localizer hold mode
KeyApLocHoldOff KeySimEvent = "AP_LOC_HOLD_OFF"
//KeyApAprHoldOff Turns off approach hold mode
KeyApAprHoldOff KeySimEvent = "AP_APR_HOLD_OFF"
//KeyApHdgHoldOff Turns off heading hold mode
KeyApHdgHoldOff KeySimEvent = "AP_HDG_HOLD_OFF"
//KeyApAltHoldOff Turns off altitude hold mode
KeyApAltHoldOff KeySimEvent = "AP_ALT_HOLD_OFF"
//KeyApWingLevelerOff Turns off wing leveler mode
KeyApWingLevelerOff KeySimEvent = "AP_WING_LEVELER_OFF"
//KeyApBcHoldOff Turns off backcourse mode for localizer hold
KeyApBcHoldOff KeySimEvent = "AP_BC_HOLD_OFF"
//KeyApNav1HoldOff Turns off nav hold mode
KeyApNav1HoldOff KeySimEvent = "AP_NAV1_HOLD_OFF"
//KeyApAirspeedHold Toggles airspeed hold mode
KeyApAirspeedHold KeySimEvent = "AP_AIRSPEED_HOLD"
//KeyAutoThrottleArm Toggles autothrottle arming mode
KeyAutoThrottleArm KeySimEvent = "AUTO_THROTTLE_ARM"
//KeyAutoThrottleToGa Toggles Takeoff/Go Around mode
KeyAutoThrottleToGa KeySimEvent = "AUTO_THROTTLE_TO_GA"
//KeyHeadingBugInc Increments heading hold reference bug
KeyHeadingBugInc KeySimEvent = "HEADING_BUG_INC"
//KeyHeadingBugDec Decrements heading hold reference bug
KeyHeadingBugDec KeySimEvent = "HEADING_BUG_DEC"
//KeyHeadingBugSet Set heading hold reference bug (degrees)
KeyHeadingBugSet KeySimEvent = "HEADING_BUG_SET"
//KeyApPanelSpeedHold Toggles airspeed hold mode
KeyApPanelSpeedHold KeySimEvent = "AP_PANEL_SPEED_HOLD"
//KeyApAltVarInc Increments reference altitude
KeyApAltVarInc KeySimEvent = "AP_ALT_VAR_INC"
//KeyApAltVarDec Decrements reference altitude
KeyApAltVarDec KeySimEvent = "AP_ALT_VAR_DEC"
//KeyApVsVarInc Increments vertical speed reference
KeyApVsVarInc KeySimEvent = "AP_VS_VAR_INC"
//KeyApVsVarDec Decrements vertical speed reference
KeyApVsVarDec KeySimEvent = "AP_VS_VAR_DEC"
//KeyApSpdVarInc Increments airspeed hold reference
KeyApSpdVarInc KeySimEvent = "AP_SPD_VAR_INC"
//KeyApSpdVarDec Decrements airspeed hold reference
KeyApSpdVarDec KeySimEvent = "AP_SPD_VAR_DEC"
//KeyApPanelMachHold Toggles mach hold
KeyApPanelMachHold KeySimEvent = "AP_PANEL_MACH_HOLD"
//KeyApMachVarInc Increments reference mach
KeyApMachVarInc KeySimEvent = "AP_MACH_VAR_INC"
//KeyApMachVarDec Decrements reference mach
KeyApMachVarDec KeySimEvent = "AP_MACH_VAR_DEC"
//KeyApMachHold Toggles mach hold
KeyApMachHold KeySimEvent = "AP_MACH_HOLD"
//KeyApAltVarSetMetric Sets reference altitude in meters
KeyApAltVarSetMetric KeySimEvent = "AP_ALT_VAR_SET_METRIC"
//KeyApVsVarSetEnglish Sets reference vertical speed in feet per minute
KeyApVsVarSetEnglish KeySimEvent = "AP_VS_VAR_SET_ENGLISH"
//KeyApSpdVarSet Sets airspeed reference in knots
KeyApSpdVarSet KeySimEvent = "AP_SPD_VAR_SET"
//KeyApMachVarSet Sets mach reference
KeyApMachVarSet KeySimEvent = "AP_MACH_VAR_SET"
//KeyYawDamperOn Turns yaw damper on
KeyYawDamperOn KeySimEvent = "YAW_DAMPER_ON"
//KeyYawDamperOff Turns yaw damper off
KeyYawDamperOff KeySimEvent = "YAW_DAMPER_OFF"
//KeyYawDamperSet Sets yaw damper on/off (1,0)
KeyYawDamperSet KeySimEvent = "YAW_DAMPER_SET"
//KeyApAirspeedOn Turns airspeed hold on
KeyApAirspeedOn KeySimEvent = "AP_AIRSPEED_ON"
//KeyApAirspeedOff Turns airspeed hold off
KeyApAirspeedOff KeySimEvent = "AP_AIRSPEED_OFF"
//KeyApAirspeedSet Sets airspeed hold on/off (1,0)
KeyApAirspeedSet KeySimEvent = "AP_AIRSPEED_SET"
//KeyApMachOn Turns mach hold on
KeyApMachOn KeySimEvent = "AP_MACH_ON"
//KeyApMachOff Turns mach hold off
KeyApMachOff KeySimEvent = "AP_MACH_OFF"
//KeyApMachSet Sets mach hold on/off (1,0)
KeyApMachSet KeySimEvent = "AP_MACH_SET"
//KeyApPanelAltitudeOn Turns altitude hold mode on (without capturing current altitude)
KeyApPanelAltitudeOn KeySimEvent = "AP_PANEL_ALTITUDE_ON"
//KeyApPanelAltitudeOff Turns altitude hold mode off
KeyApPanelAltitudeOff KeySimEvent = "AP_PANEL_ALTITUDE_OFF"
//KeyApPanelAltitudeSet Sets altitude hold mode on/off (1,0)
KeyApPanelAltitudeSet KeySimEvent = "AP_PANEL_ALTITUDE_SET"
//KeyApPanelHeadingOn Turns heading mode on (without capturing current heading)
KeyApPanelHeadingOn KeySimEvent = "AP_PANEL_HEADING_ON"
//KeyApPanelHeadingOff Turns heading mode off
KeyApPanelHeadingOff KeySimEvent = "AP_PANEL_HEADING_OFF"
//KeyApPanelHeadingSet Set heading mode on/off (1,0)
KeyApPanelHeadingSet KeySimEvent = "AP_PANEL_HEADING_SET"
//KeyApPanelMachOn Turns on mach hold
KeyApPanelMachOn KeySimEvent = "AP_PANEL_MACH_ON"
//KeyApPanelMachOff Turns off mach hold
KeyApPanelMachOff KeySimEvent = "AP_PANEL_MACH_OFF"
//KeyApPanelMachSet Sets mach hold on/off (1,0)
KeyApPanelMachSet KeySimEvent = "AP_PANEL_MACH_SET"
//KeyApPanelSpeedOn Turns on speed hold mode
KeyApPanelSpeedOn KeySimEvent = "AP_PANEL_SPEED_ON"
//KeyApPanelSpeedOff Turns off speed hold mode
KeyApPanelSpeedOff KeySimEvent = "AP_PANEL_SPEED_OFF"
//KeyApPanelSpeedSet Set speed hold mode on/off (1,0)
KeyApPanelSpeedSet KeySimEvent = "AP_PANEL_SPEED_SET"
//KeyApAltVarSetEnglish Sets altitude reference in feet
KeyApAltVarSetEnglish KeySimEvent = "AP_ALT_VAR_SET_ENGLISH"
//KeyApVsVarSetMetric Sets vertical speed reference in meters per minute
KeyApVsVarSetMetric KeySimEvent = "AP_VS_VAR_SET_METRIC"
//KeyToggleFlightDirector Toggles flight director on/off
KeyToggleFlightDirector KeySimEvent = "TOGGLE_FLIGHT_DIRECTOR"
//KeySyncFlightDirectorPitch Synchronizes flight director pitch with current aircraft pitch
KeySyncFlightDirectorPitch KeySimEvent = "SYNC_FLIGHT_DIRECTOR_PITCH"
//KeyIncAutobrakeControl Increments autobrake level
KeyIncAutobrakeControl KeySimEvent = "INCREASE_AUTOBRAKE_CONTROL"
//KeyDecAutobrakeControl Decrements autobrake level
KeyDecAutobrakeControl KeySimEvent = "DECREASE_AUTOBRAKE_CONTROL"
//KeyAutopilotAirspeedHoldCurrent Turns airspeed hold mode on with current airspeed
KeyAutopilotAirspeedHoldCurrent KeySimEvent = "AP_PANEL_SPEED_HOLD_TOGGLE"
//KeyAutopilotMachHoldCurrent Sets mach hold reference to current mach
KeyAutopilotMachHoldCurrent KeySimEvent = "AP_PANEL_MACH_HOLD_TOGGLE"
//KeyApNavSelectSet Sets the nav (1 or 2) which is used by the Nav hold modes
KeyApNavSelectSet KeySimEvent = "AP_NAV_SELECT_SET"
//KeyHeadingBugSelect Selects the heading bug for use with +/-
KeyHeadingBugSelect KeySimEvent = "HEADING_BUG_SELECT"
//KeyAltitudeBugSelect Selects the altitude reference for use with +/-
KeyAltitudeBugSelect KeySimEvent = "ALTITUDE_BUG_SELECT"
//KeyVsiBugSelect Selects the vertical speed reference for use with +/-
KeyVsiBugSelect KeySimEvent = "VSI_BUG_SELECT"
//KeyAirspeedBugSelect Selects the airspeed reference for use with +/-
KeyAirspeedBugSelect KeySimEvent = "AIRSPEED_BUG_SELECT"
//KeyApPitchRefIncUp Increments the pitch reference for pitch hold mode
KeyApPitchRefIncUp KeySimEvent = "AP_PITCH_REF_INC_UP"
//KeyApPitchRefIncDn Decrements the pitch reference for pitch hold mode
KeyApPitchRefIncDn KeySimEvent = "AP_PITCH_REF_INC_DN"
//KeyApPitchRefSelect Selects pitch reference for use with +/-
KeyApPitchRefSelect KeySimEvent = "AP_PITCH_REF_SELECT"
//KeyApAttHold Toggle attitude hold mode
KeyApAttHold KeySimEvent = "AP_ATT_HOLD"
//KeyApLocHold Toggles localizer (only) hold mode
KeyApLocHold KeySimEvent = "AP_LOC_HOLD"
//KeyApAprHold Toggles approach hold (localizer and glide-slope)
KeyApAprHold KeySimEvent = "AP_APR_HOLD"
//KeyApHdgHold Toggles heading hold mode
KeyApHdgHold KeySimEvent = "AP_HDG_HOLD"
//KeyApAltHold Toggles altitude hold mode
KeyApAltHold KeySimEvent = "AP_ALT_HOLD"
//KeyApWingLeveler Toggles wing leveler mode
KeyApWingLeveler KeySimEvent = "AP_WING_LEVELER"
//KeyApBcHold Toggles the backcourse mode for the localizer hold
KeyApBcHold KeySimEvent = "AP_BC_HOLD"
//KeyApNav1Hold Toggles the nav hold mode
KeyApNav1Hold KeySimEvent = "AP_NAV1_HOLD"
//KeyFuelSelectorOff Turns selector 1 to OFF position
KeyFuelSelectorOff KeySimEvent = "FUEL_SELECTOR_OFF"
//KeyFuelSelectorAll Turns selector 1 to ALL position
KeyFuelSelectorAll KeySimEvent = "FUEL_SELECTOR_ALL"
//KeyFuelSelectorLeft Turns selector 1 to LEFT position (burns from tip then aux then main)
KeyFuelSelectorLeft KeySimEvent = "FUEL_SELECTOR_LEFT"
//KeyFuelSelectorRight Turns selector 1 to RIGHT position (burns from tip then aux then main)
KeyFuelSelectorRight KeySimEvent = "FUEL_SELECTOR_RIGHT"
//KeyFuelSelectorLeftAux Turns selector 1 to LEFT AUX position
KeyFuelSelectorLeftAux KeySimEvent = "FUEL_SELECTOR_LEFT_AUX"
//KeyFuelSelectorRightAux Turns selector 1 to RIGHT AUX position
KeyFuelSelectorRightAux KeySimEvent = "FUEL_SELECTOR_RIGHT_AUX"
//KeyFuelSelectorCenter Turns selector 1 to CENTER position
KeyFuelSelectorCenter KeySimEvent = "FUEL_SELECTOR_CENTER"
//KeyFuelSelectorSet Sets selector 1 position (see code list below)
KeyFuelSelectorSet KeySimEvent = "FUEL_SELECTOR_SET"
//KeyFuelSelector2Off Turns selector 2 to OFF position
KeyFuelSelector2Off KeySimEvent = "FUEL_SELECTOR_2_OFF"
//KeyFuelSelector2All Turns selector 2 to ALL position
KeyFuelSelector2All KeySimEvent = "FUEL_SELECTOR_2_ALL"
//KeyFuelSelector2Left Turns selector 2 to LEFT position (burns from tip then aux then main)
KeyFuelSelector2Left KeySimEvent = "FUEL_SELECTOR_2_LEFT"
//KeyFuelSelector2Right Turns selector 2 to RIGHT position (burns from tip then aux then main)
KeyFuelSelector2Right KeySimEvent = "FUEL_SELECTOR_2_RIGHT"
//KeyFuelSelector2LeftAux Turns selector 2 to LEFT AUX position
KeyFuelSelector2LeftAux KeySimEvent = "FUEL_SELECTOR_2_LEFT_AUX"
//KeyFuelSelector2RightAux Turns selector 2 to RIGHT AUX position
KeyFuelSelector2RightAux KeySimEvent = "FUEL_SELECTOR_2_RIGHT_AUX"
//KeyFuelSelector2Center Turns selector 2 to CENTER position
KeyFuelSelector2Center KeySimEvent = "FUEL_SELECTOR_2_CENTER"
//KeyFuelSelector2Set Sets selector 2 position (see code list below)
KeyFuelSelector2Set KeySimEvent = "FUEL_SELECTOR_2_SET"
//KeyFuelSelector3Off Turns selector 3 to OFF position
KeyFuelSelector3Off KeySimEvent = "FUEL_SELECTOR_3_OFF"
//KeyFuelSelector3All Turns selector 3 to ALL position
KeyFuelSelector3All KeySimEvent = "FUEL_SELECTOR_3_ALL"
//KeyFuelSelector3Left Turns selector 3 to LEFT position (burns from tip then aux then main)
KeyFuelSelector3Left KeySimEvent = "FUEL_SELECTOR_3_LEFT"
//KeyFuelSelector3Right Turns selector 3 to RIGHT position (burns from tip then aux then main)
KeyFuelSelector3Right KeySimEvent = "FUEL_SELECTOR_3_RIGHT"
//KeyFuelSelector3LeftAux Turns selector 3 to LEFT AUX position
KeyFuelSelector3LeftAux KeySimEvent = "FUEL_SELECTOR_3_LEFT_AUX"
//KeyFuelSelector3RightAux Turns selector 3 to RIGHT AUX position
KeyFuelSelector3RightAux KeySimEvent = "FUEL_SELECTOR_3_RIGHT_AUX"
//KeyFuelSelector3Center Turns selector 3 to CENTER position
KeyFuelSelector3Center KeySimEvent = "FUEL_SELECTOR_3_CENTER"
//KeyFuelSelector3Set Sets selector 3 position (see code list below)
KeyFuelSelector3Set KeySimEvent = "FUEL_SELECTOR_3_SET"
//KeyFuelSelector4Off Turns selector 4 to OFF position
KeyFuelSelector4Off KeySimEvent = "FUEL_SELECTOR_4_OFF"
//KeyFuelSelector4All Turns selector 4 to ALL position
KeyFuelSelector4All KeySimEvent = "FUEL_SELECTOR_4_ALL"
//KeyFuelSelector4Left Turns selector 4 to LEFT position (burns from tip then aux then main)
KeyFuelSelector4Left KeySimEvent = "FUEL_SELECTOR_4_LEFT"
//KeyFuelSelector4Right Turns selector 4 to RIGHT position (burns from tip then aux then main)
KeyFuelSelector4Right KeySimEvent = "FUEL_SELECTOR_4_RIGHT"
//KeyFuelSelector4LeftAux Turns selector 4 to LEFT AUX position
KeyFuelSelector4LeftAux KeySimEvent = "FUEL_SELECTOR_4_LEFT_AUX"
//KeyFuelSelector4RightAux Turns selector 4 to RIGHT AUX position
KeyFuelSelector4RightAux KeySimEvent = "FUEL_SELECTOR_4_RIGHT_AUX"
//KeyFuelSelector4Center Turns selector 4 to CENTER position
KeyFuelSelector4Center KeySimEvent = "FUEL_SELECTOR_4_CENTER"
//KeyFuelSelector4Set Sets selector 4 position (see code list below)
KeyFuelSelector4Set KeySimEvent = "FUEL_SELECTOR_4_SET"
//KeyCrossFeedOpen Opens cross feed valve (when used in conjunction with "isolate" tank)
KeyCrossFeedOpen KeySimEvent = "CROSS_FEED_OPEN"
//KeyCrossFeedToggle Toggles crossfeed valve (when used in conjunction with "isolate" tank)
KeyCrossFeedToggle KeySimEvent = "CROSS_FEED_TOGGLE"
//KeyCrossFeedOff Closes crossfeed valve (when used in conjunction with "isolate" tank)
KeyCrossFeedOff KeySimEvent = "CROSS_FEED_OFF"
//KeyXpndr Sequentially selects the transponder digits for use with +/-.
KeyXpndr KeySimEvent = "XPNDR"
//KeyAdf Sequentially selects the ADF tuner digits for use with +/-. Follow by KEY_SELECT_2 for ADF 2.
KeyAdf KeySimEvent = "ADF"
//KeyDme Selects the DME for use with +/-
KeyDme KeySimEvent = "DME"
//KeyComRadio Sequentially selects the COM tuner digits for use with +/-. Follow by KEY_SELECT_2 for COM 2. All aircraft
KeyComRadio KeySimEvent = "COM_RADIO"
//KeyVorObs Sequentially selects the VOR OBS for use with +/-. Follow by KEY_SELECT_2 for VOR 2.
KeyVorObs KeySimEvent = "VOR_OBS"
//KeyNavRadio Sequentially selects the NAV tuner digits for use with +/-. Follow by KEY_SELECT_2 for NAV 2.
KeyNavRadio KeySimEvent = "NAV_RADIO"
//KeyComRadioWholeDec Decrements COM by one MHz All aircraft
KeyComRadioWholeDec KeySimEvent = "COM_RADIO_WHOLE_DEC"
//KeyComRadioWholeInc Increments COM by one MHz All aircraft
KeyComRadioWholeInc KeySimEvent = "COM_RADIO_WHOLE_INC"
//KeyComRadioFractDec Decrements COM by 25 KHz All aircraft
KeyComRadioFractDec KeySimEvent = "COM_RADIO_FRACT_DEC"
//KeyComRadioFractInc Increments COM by 25 KHz All aircraft
KeyComRadioFractInc KeySimEvent = "COM_RADIO_FRACT_INC"
//KeyNav1RadioWholeDec Decrements Nav 1 by one MHz
KeyNav1RadioWholeDec KeySimEvent = "NAV1_RADIO_WHOLE_DEC"
//KeyNav1RadioWholeInc Increments Nav 1 by one MHz
KeyNav1RadioWholeInc KeySimEvent = "NAV1_RADIO_WHOLE_INC"
//KeyNav1RadioFractDec Decrements Nav 1 by 25 KHz
KeyNav1RadioFractDec KeySimEvent = "NAV1_RADIO_FRACT_DEC"
//KeyNav1RadioFractInc Increments Nav 1 by 25 KHz
KeyNav1RadioFractInc KeySimEvent = "NAV1_RADIO_FRACT_INC"
//KeyNav2RadioWholeDec Decrements Nav 2 by one MHz
KeyNav2RadioWholeDec KeySimEvent = "NAV2_RADIO_WHOLE_DEC"
//KeyNav2RadioWholeInc Increments Nav 2 by one MHz
KeyNav2RadioWholeInc KeySimEvent = "NAV2_RADIO_WHOLE_INC"
//KeyNav2RadioFractDec Decrements Nav 2 by 25 KHz
KeyNav2RadioFractDec KeySimEvent = "NAV2_RADIO_FRACT_DEC"
//KeyNav2RadioFractInc Increments Nav 2 by 25 KHz
KeyNav2RadioFractInc KeySimEvent = "NAV2_RADIO_FRACT_INC"
//KeyAdf100Inc Increments ADF by 100 KHz
KeyAdf100Inc KeySimEvent = "ADF_100_INC"
//KeyAdf10Inc Increments ADF by 10 KHz
KeyAdf10Inc KeySimEvent = "ADF_10_INC"
//KeyAdf1Inc Increments ADF by 1 KHz
KeyAdf1Inc KeySimEvent = "ADF_1_INC"
//KeyXpndr1000Inc Increments first digit of transponder All Aircraft
KeyXpndr1000Inc KeySimEvent = "XPNDR_1000_INC"
//KeyXpndr100Inc Increments second digit of transponder All Aircraft
KeyXpndr100Inc KeySimEvent = "XPNDR_100_INC"
//KeyXpndr10Inc Increments third digit of transponder All Aircraft
KeyXpndr10Inc KeySimEvent = "XPNDR_10_INC"
//KeyXpndr1Inc Increments fourth digit of transponder All Aircraft
KeyXpndr1Inc KeySimEvent = "XPNDR_1_INC"
//KeyVor1ObiDec Decrements the VOR 1 OBS setting
KeyVor1ObiDec KeySimEvent = "VOR1_OBI_DEC"
//KeyVor1ObiInc Increments the VOR 1 OBS setting
KeyVor1ObiInc KeySimEvent = "VOR1_OBI_INC"
//KeyVor2ObiDec Decrements the VOR 2 OBS setting
KeyVor2ObiDec KeySimEvent = "VOR2_OBI_DEC"
//KeyVor2ObiInc Increments the VOR 2 OBS setting
KeyVor2ObiInc KeySimEvent = "VOR2_OBI_INC"
//KeyAdf100Dec Decrements ADF by 100 KHz
KeyAdf100Dec KeySimEvent = "ADF_100_DEC"
//KeyAdf10Dec Decrements ADF by 10 KHz
KeyAdf10Dec KeySimEvent = "ADF_10_DEC"
//KeyAdf1Dec Decrements ADF by 1 KHz
KeyAdf1Dec KeySimEvent = "ADF_1_DEC"
//KeyComRadioSet Sets COM frequency (BCD Hz) All aircraft
KeyComRadioSet KeySimEvent = "COM_RADIO_SET"
//KeyNav1RadioSet Sets NAV 1 frequency (BCD Hz)
KeyNav1RadioSet KeySimEvent = "NAV1_RADIO_SET"
//KeyNav2RadioSet Sets NAV 2 frequency (BCD Hz)
KeyNav2RadioSet KeySimEvent = "NAV2_RADIO_SET"
//KeyAdfSet Sets ADF frequency (BCD Hz)
KeyAdfSet KeySimEvent = "ADF_SET"
//KeyXpndrSet Sets transponder code (BCD) All aircraft
KeyXpndrSet KeySimEvent = "XPNDR_SET"
//KeyVor1Set Sets OBS 1 (0 to 360)
KeyVor1Set KeySimEvent = "VOR1_SET"
//KeyVor2Set Sets OBS 2 (0 to 360)
KeyVor2Set KeySimEvent = "VOR2_SET"
//KeyDme1Toggle Sets DME display to Nav 1
KeyDme1Toggle KeySimEvent = "DME1_TOGGLE"
//KeyDme2Toggle Sets DME display to Nav 2
KeyDme2Toggle KeySimEvent = "DME2_TOGGLE"
//KeyRadioVor1IdentDisable Turns NAV 1 ID off
KeyRadioVor1IdentDisable KeySimEvent = "RADIO_VOR1_IDENT_DISABLE"
//KeyRadioVor2IdentDisable Turns NAV 2 ID off
KeyRadioVor2IdentDisable KeySimEvent = "RADIO_VOR2_IDENT_DISABLE"
//KeyRadioDme1IdentDisable Turns DME 1 ID off
KeyRadioDme1IdentDisable KeySimEvent = "RADIO_DME1_IDENT_DISABLE"
//KeyRadioDme2IdentDisable Turns DME 2 ID off
KeyRadioDme2IdentDisable KeySimEvent = "RADIO_DME2_IDENT_DISABLE"
//KeyRadioAdfIdentDisable Turns ADF 1 ID off
KeyRadioAdfIdentDisable KeySimEvent = "RADIO_ADF_IDENT_DISABLE"
//KeyRadioVor1IdentEnable Turns NAV 1 ID on
KeyRadioVor1IdentEnable KeySimEvent = "RADIO_VOR1_IDENT_ENABLE"
//KeyRadioVor2IdentEnable Turns NAV 2 ID on
KeyRadioVor2IdentEnable KeySimEvent = "RADIO_VOR2_IDENT_ENABLE"
//KeyRadioDme1IdentEnable Turns DME 1 ID on
KeyRadioDme1IdentEnable KeySimEvent = "RADIO_DME1_IDENT_ENABLE"
//KeyRadioDme2IdentEnable Turns DME 2 ID on
KeyRadioDme2IdentEnable KeySimEvent = "RADIO_DME2_IDENT_ENABLE"
//KeyRadioAdfIdentEnable Turns ADF 1 ID on
KeyRadioAdfIdentEnable KeySimEvent = "RADIO_ADF_IDENT_ENABLE"
//KeyRadioVor1IdentToggle Toggles NAV 1 ID
KeyRadioVor1IdentToggle KeySimEvent = "RADIO_VOR1_IDENT_TOGGLE"
//KeyRadioVor2IdentToggle Toggles NAV 2 ID
KeyRadioVor2IdentToggle KeySimEvent = "RADIO_VOR2_IDENT_TOGGLE"
//KeyRadioDme1IdentToggle Toggles DME 1 ID
KeyRadioDme1IdentToggle KeySimEvent = "RADIO_DME1_IDENT_TOGGLE"
//KeyRadioDme2IdentToggle Toggles DME 2 ID
KeyRadioDme2IdentToggle KeySimEvent = "RADIO_DME2_IDENT_TOGGLE"
//KeyRadioAdfIdentToggle Toggles ADF 1 ID
KeyRadioAdfIdentToggle KeySimEvent = "RADIO_ADF_IDENT_TOGGLE"
//KeyRadioVor1IdentSet Sets NAV 1 ID (on/off)
KeyRadioVor1IdentSet KeySimEvent = "RADIO_VOR1_IDENT_SET"
//KeyRadioVor2IdentSet Sets NAV 2 ID (on/off)
KeyRadioVor2IdentSet KeySimEvent = "RADIO_VOR2_IDENT_SET"
//KeyRadioDme1IdentSet Sets DME 1 ID (on/off)
KeyRadioDme1IdentSet KeySimEvent = "RADIO_DME1_IDENT_SET"
//KeyRadioDme2IdentSet Sets DME 2 ID (on/off)
KeyRadioDme2IdentSet KeySimEvent = "RADIO_DME2_IDENT_SET"
//KeyRadioAdfIdentSet Sets ADF 1 ID (on/off)
KeyRadioAdfIdentSet KeySimEvent = "RADIO_ADF_IDENT_SET"
//KeyAdfCardInc Increments ADF card
KeyAdfCardInc KeySimEvent = "ADF_CARD_INC"
//KeyAdfCardDec Decrements ADF card
KeyAdfCardDec KeySimEvent = "ADF_CARD_DEC"
//KeyAdfCardSet Sets ADF card (0-360)
KeyAdfCardSet KeySimEvent = "ADF_CARD_SET"
//KeyDmeToggle Toggles between NAV 1 and NAV 2
KeyDmeToggle KeySimEvent = "TOGGLE_DME"
//KeyAvionicsMasterSet Sets the avionics master switch All aircraft
KeyAvionicsMasterSet KeySimEvent = "AVIONICS_MASTER_SET"
//KeyToggleAvionicsMaster Toggles the avionics master switch All aircraft
KeyToggleAvionicsMaster KeySimEvent = "TOGGLE_AVIONICS_MASTER"
//KeyComStbyRadioSet Sets COM 1 standby frequency (BCD Hz) All aircraft
KeyComStbyRadioSet KeySimEvent = "COM_STBY_RADIO_SET"
KeyComStbyRadioSwitchTo KeySimEvent = "COM_STBY_RADIO_SWAP"
//KeyComRadioSwap Swaps COM 1 frequency with standby All aircraft
KeyComRadioSwap KeySimEvent = "COM_STBY_RADIO_SWAP"
//KeyComRadioFractDecCarry Decrement COM 1 frequency by 25 KHz, and carry when digit wraps All aircraft
KeyComRadioFractDecCarry KeySimEvent = "COM_RADIO_FRACT_DEC_CARRY"
//KeyComRadioFractIncCarry Increment COM 1 frequency by 25 KHz, and carry when digit wraps All aircraft
KeyComRadioFractIncCarry KeySimEvent = "COM_RADIO_FRACT_INC_CARRY"
//KeyCom2RadioWholeDec Decrement COM 2 frequency by 1 MHz, with no carry when digit wraps All aircraft
KeyCom2RadioWholeDec KeySimEvent = "COM2_RADIO_WHOLE_DEC"
//KeyCom2RadioWholeInc Increment COM 2 frequency by 1 MHz, with no carry when digit wraps All aircraft
KeyCom2RadioWholeInc KeySimEvent = "COM2_RADIO_WHOLE_INC"
//KeyCom2RadioFractDec Decrement COM 2 frequency by 25 KHz, with no carry when digit wraps All aircraft
KeyCom2RadioFractDec KeySimEvent = "COM2_RADIO_FRACT_DEC"
//KeyCom2RadioFractDecCarry Decrement COM 2 frequency by 25 KHz, and carry when digit wraps All aircraft
KeyCom2RadioFractDecCarry KeySimEvent = "COM2_RADIO_FRACT_DEC_CARRY"
//KeyCom2RadioFractInc Increment COM 2 frequency by 25 KHz, with no carry when digit wraps All aircraft
KeyCom2RadioFractInc KeySimEvent = "COM2_RADIO_FRACT_INC"
//KeyCom2RadioFractIncCarry Increment COM 2 frequency by 25 KHz, and carry when digit wraps All aircraft
KeyCom2RadioFractIncCarry KeySimEvent = "COM2_RADIO_FRACT_INC_CARRY"
//KeyCom2RadioSet Sets COM 2 frequency (BCD Hz) All aircraft
KeyCom2RadioSet KeySimEvent = "COM2_RADIO_SET"
//KeyCom2StbyRadioSet Sets COM 2 standby frequency (BCD Hz) All aircraft
KeyCom2StbyRadioSet KeySimEvent = "COM2_STBY_RADIO_SET"
//KeyCom2RadioSwap Swaps COM 2 frequency with standby All aircraft
KeyCom2RadioSwap KeySimEvent = "COM2_RADIO_SWAP"
//KeyNav1RadioFractDecCarry Decrement NAV 1 frequency by 50 KHz, and carry when digit wraps
KeyNav1RadioFractDecCarry KeySimEvent = "NAV1_RADIO_FRACT_DEC_CARRY"
//KeyNav1RadioFractIncCarry Increment NAV 1 frequency by 50 KHz, and carry when digit wraps
KeyNav1RadioFractIncCarry KeySimEvent = "NAV1_RADIO_FRACT_INC_CARRY"
//KeyNav1StbySet Sets NAV 1 standby frequency (BCD Hz)
KeyNav1StbySet KeySimEvent = "NAV1_STBY_SET"
//KeyNav1RadioSwap Swaps NAV 1 frequency with standby
KeyNav1RadioSwap KeySimEvent = "NAV1_RADIO_SWAP"
//KeyNav2RadioFractDecCarry Decrement NAV 2 frequency by 50 KHz, and carry when digit wraps
KeyNav2RadioFractDecCarry KeySimEvent = "NAV2_RADIO_FRACT_DEC_CARRY"
//KeyNav2RadioFractIncCarry Increment NAV 2 frequency by 50 KHz, and carry when digit wraps
KeyNav2RadioFractIncCarry KeySimEvent = "NAV2_RADIO_FRACT_INC_CARRY"
//KeyNav2StbySet Sets NAV 2 standby frequency (BCD Hz)
KeyNav2StbySet KeySimEvent = "NAV2_STBY_SET"
//KeyNav2RadioSwap Swaps NAV 2 frequency with standby
KeyNav2RadioSwap KeySimEvent = "NAV2_RADIO_SWAP"
//KeyAdf1RadioTenthsDec Decrements ADF 1 by 0.1 KHz.
KeyAdf1RadioTenthsDec KeySimEvent = "ADF1_RADIO_TENTHS_DEC"
//KeyAdf1RadioTenthsInc Increments ADF 1 by 0.1 KHz.
KeyAdf1RadioTenthsInc KeySimEvent = "ADF1_RADIO_TENTHS_INC"
//KeyXpndr1000Dec Decrements first digit of transponder All Aircraft
KeyXpndr1000Dec KeySimEvent = "XPNDR_1000_DEC"
//KeyXpndr100Dec Decrements second digit of transponder All Aircraft
KeyXpndr100Dec KeySimEvent = "XPNDR_100_DEC"
//KeyXpndr10Dec Decrements third digit of transponder All Aircraft
KeyXpndr10Dec KeySimEvent = "XPNDR_10_DEC"
//KeyXpndr1Dec Decrements fourth digit of transponder All Aircraft
KeyXpndr1Dec KeySimEvent = "XPNDR_1_DEC"
//KeyXpndrDecCarry Decrements fourth digit of transponder, and with carry. All Aircraft
KeyXpndrDecCarry KeySimEvent = "XPNDR_DEC_CARRY"
//KeyXpndrIncCarry Increments fourth digit of transponder, and with carry. All Aircraft
KeyXpndrIncCarry KeySimEvent = "XPNDR_INC_CARRY"
//KeyAdfFractDecCarry Decrements ADF 1 frequency by 0.1 KHz, with carry
KeyAdfFractDecCarry KeySimEvent = "ADF_FRACT_DEC_CARRY"
//KeyAdfFractIncCarry Increments ADF 1 frequency by 0.1 KHz, with carry
KeyAdfFractIncCarry KeySimEvent = "ADF_FRACT_INC_CARRY"
//KeyCom1TransmitSelect Selects COM 1 to transmit All aircraft
KeyCom1TransmitSelect KeySimEvent = "COM1_TRANSMIT_SELECT"
//KeyCom2TransmitSelect Selects COM 2 to transmit All aircraft
KeyCom2TransmitSelect KeySimEvent = "COM2_TRANSMIT_SELECT"
//KeyComReceiveAllToggle Toggles all COM radios to receive on All aircraft
KeyComReceiveAllToggle KeySimEvent = "COM_RECEIVE_ALL_TOGGLE"
//KeyComReceiveAllSet Sets whether to receive on all COM radios (1,0) All aircraft
KeyComReceiveAllSet KeySimEvent = "COM_RECEIVE_ALL_SET"
//KeyMarkerSoundToggle Toggles marker beacon sound on/off
KeyMarkerSoundToggle KeySimEvent = "MARKER_SOUND_TOGGLE"
//KeyAdfCompleteSet Sets ADF 1 frequency - standby if configured, otherwise primary (BCD Hz)
KeyAdfCompleteSet KeySimEvent = "ADF_COMPLETE_SET"
//KeyAdfWholeInc Increments ADF 1 by 1 KHz, with carry as digits wrap.
KeyAdfWholeInc KeySimEvent = "ADF1_WHOLE_INC"
//KeyAdfWholeDec Decrements ADF 1 by 1 KHz, with carry as digits wrap.
KeyAdfWholeDec KeySimEvent = "ADF1_WHOLE_DEC"
//KeyAdf2100Inc Increments the ADF 2 frequency 100 digit, with wrapping
KeyAdf2100Inc KeySimEvent = "ADF2_100_INC"
//KeyAdf210Inc Increments the ADF 2 frequency 10 digit, with wrapping
KeyAdf210Inc KeySimEvent = "ADF2_10_INC"
//KeyAdf21Inc Increments the ADF 2 frequency 1 digit, with wrapping
KeyAdf21Inc KeySimEvent = "ADF2_1_INC"
//KeyAdf2RadioTenthsInc Increments ADF 2 frequency 1/10 digit, with wrapping
KeyAdf2RadioTenthsInc KeySimEvent = "ADF2_RADIO_TENTHS_INC"
//KeyAdf2100Dec Decrements the ADF 2 frequency 100 digit, with wrapping
KeyAdf2100Dec KeySimEvent = "ADF2_100_DEC"
//KeyAdf210Dec Decrements the ADF 2 frequency 10 digit, with wrapping
KeyAdf210Dec KeySimEvent = "ADF2_10_DEC"
//KeyAdf21Dec Decrements the ADF 2 frequency 1 digit, with wrapping
KeyAdf21Dec KeySimEvent = "ADF2_1_DEC"
//KeyAdf2RadioTenthsDec Decrements ADF 2 frequency 1/10 digit, with wrapping
KeyAdf2RadioTenthsDec KeySimEvent = "ADF2_RADIO_TENTHS_DEC"
//KeyAdf2WholeInc Increments ADF 2 by 1 KHz, with carry as digits wrap.
KeyAdf2WholeInc KeySimEvent = "ADF2_WHOLE_INC"
//KeyAdf2WholeDec Decrements ADF 2 by 1 KHz, with carry as digits wrap.
KeyAdf2WholeDec KeySimEvent = "ADF2_WHOLE_DEC"
//KeyAdf2FractIncCarry Decrements ADF 2 frequency by 0.1 KHz, with carry
KeyAdf2FractIncCarry KeySimEvent = "ADF2_FRACT_DEC_CARRY"
//KeyAdf2FractDecCarry Increments ADF 2 frequency by 0.1 KHz, with carry
KeyAdf2FractDecCarry KeySimEvent = "ADF2_FRACT_INC_CARRY"
//KeyAdf2CompleteSet Sets ADF 2 frequency - standby if configured, otherwise primary (BCD Hz)
KeyAdf2CompleteSet KeySimEvent = "ADF2_COMPLETE_SET"
//KeyRadioAdf2IdentDisable Turns ADF 2 ID off
KeyRadioAdf2IdentDisable KeySimEvent = "RADIO_ADF2_IDENT_DISABLE"
//KeyRadioAdf2IdentEnable Turns ADF 2 ID on
KeyRadioAdf2IdentEnable KeySimEvent = "RADIO_ADF2_IDENT_ENABLE"
//KeyRadioAdf2IdentToggle Toggles ADF 2 ID
KeyRadioAdf2IdentToggle KeySimEvent = "RADIO_ADF2_IDENT_TOGGLE"
//KeyRadioAdf2IdentSet Sets ADF 2 ID on/off (1,0)
KeyRadioAdf2IdentSet KeySimEvent = "RADIO_ADF2_IDENT_SET"
//KeyFrequencySwap Swaps frequency with standby on whichever NAV or COM radio is selected.
KeyFrequencySwap KeySimEvent = "FREQUENCY_SWAP"
//KeyToggleGpsDrivesNav1 Toggles between GPS and NAV 1 driving NAV 1 OBS display (and AP)
KeyToggleGpsDrivesNav1 KeySimEvent = "TOGGLE_GPS_DRIVES_NAV1"
//KeyGpsPowerButton Toggles power button
KeyGpsPowerButton KeySimEvent = "GPS_POWER_BUTTON"
//KeyGpsNearestButton Selects Nearest Airport Page
KeyGpsNearestButton KeySimEvent = "GPS_NEAREST_BUTTON"
//KeyGpsObsButton Toggles automatic sequencing of waypoints
KeyGpsObsButton KeySimEvent = "GPS_OBS_BUTTON"
//KeyGpsMsgButton Toggles the Message Page
KeyGpsMsgButton KeySimEvent = "GPS_MSG_BUTTON"
//KeyGpsMsgButtonDown Triggers the pressing of the message button.
KeyGpsMsgButtonDown KeySimEvent = "GPS_MSG_BUTTON_DOWN"
//KeyGpsMsgButtonUp Triggers the release of the message button
KeyGpsMsgButtonUp KeySimEvent = "GPS_MSG_BUTTON_UP"
//KeyGpsFlightplanButton Displays the programmed flightplan.
KeyGpsFlightplanButton KeySimEvent = "GPS_FLIGHTPLAN_BUTTON"
//KeyGpsTerrainButton Displays terrain information on default display
KeyGpsTerrainButton KeySimEvent = "GPS_TERRAIN_BUTTON"
//KeyGpsProcedureButton Displays the approach procedure page.
KeyGpsProcedureButton KeySimEvent = "GPS_PROCEDURE_BUTTON"
//KeyGpsZoominButton Zooms in default display
KeyGpsZoominButton KeySimEvent = "GPS_ZOOMIN_BUTTON"
//KeyGpsZoomoutButton Zooms out default display
KeyGpsZoomoutButton KeySimEvent = "GPS_ZOOMOUT_BUTTON"
//KeyGpsDirecttoButton Brings up the "Direct To" page
KeyGpsDirecttoButton KeySimEvent = "GPS_DIRECTTO_BUTTON"
//KeyGpsMenuButton Brings up page to select active legs in a flightplan.
KeyGpsMenuButton KeySimEvent = "GPS_MENU_BUTTON"
//KeyGpsClearButton Clears entered data on a page
KeyGpsClearButton KeySimEvent = "GPS_CLEAR_BUTTON"
//KeyGpsClearAllButton Clears all data immediately
KeyGpsClearAllButton KeySimEvent = "GPS_CLEAR_ALL_BUTTON"
//KeyGpsClearButtonDown Triggers the pressing of the Clear button
KeyGpsClearButtonDown KeySimEvent = "GPS_CLEAR_BUTTON_DOWN"
//KeyGpsClearButtonUp Triggers the release of the Clear button.
KeyGpsClearButtonUp KeySimEvent = "GPS_CLEAR_BUTTON_UP"
//KeyGpsEnterButton Approves entered data.
KeyGpsEnterButton KeySimEvent = "GPS_ENTER_BUTTON"
//KeyGpsCursorButton Selects GPS cursor
KeyGpsCursorButton KeySimEvent = "GPS_CURSOR_BUTTON"
//KeyGpsGroupKnobInc Increments cursor
KeyGpsGroupKnobInc KeySimEvent = "GPS_GROUP_KNOB_INC"
//KeyGpsGroupKnobDec Decrements cursor
KeyGpsGroupKnobDec KeySimEvent = "GPS_GROUP_KNOB_DEC"
//KeyGpsPageKnobInc Increments through pages
KeyGpsPageKnobInc KeySimEvent = "GPS_PAGE_KNOB_INC"
//KeyGpsPageKnobDec Decrements through pages
KeyGpsPageKnobDec KeySimEvent = "GPS_PAGE_KNOB_DEC"
//KeyEgt Selects EGT bug for +/-
KeyEgt KeySimEvent = "EGT"
//KeyEgtInc Increments EGT bugs
KeyEgtInc KeySimEvent = "EGT_INC"
//KeyEgtDec Decrements EGT bugs
KeyEgtDec KeySimEvent = "EGT_DEC"
//KeyEgtSet Sets EGT bugs (0 to 32767)
KeyEgtSet KeySimEvent = "EGT_SET"
//KeyBarometric Syncs altimeter setting to sea level pressure, or 29.92 if above 18000 feet
KeyBarometric KeySimEvent = "BAROMETRIC"
//KeyGyroDriftInc Increments heading indicator
KeyGyroDriftInc KeySimEvent = "GYRO_DRIFT_INC"
//KeyGyroDriftDec Decrements heading indicator
KeyGyroDriftDec KeySimEvent = "GYRO_DRIFT_DEC"
//KeyKohlsmanInc Increments altimeter setting
KeyKohlsmanInc KeySimEvent = "KOHLSMAN_INC"
//KeyKohlsmanDec Decrements altimeter setting
KeyKohlsmanDec KeySimEvent = "KOHLSMAN_DEC"
//KeyKohlsmanSet Sets altimeter setting (Millibars * 16)
KeyKohlsmanSet KeySimEvent = "KOHLSMAN_SET"
//KeyTrueAirspeedCalibrateInc Increments airspeed indicators true airspeed reference card
KeyTrueAirspeedCalibrateInc KeySimEvent = "TRUE_AIRSPEED_CAL_INC"
//KeyTrueAirspeedCalibrateDec Decrements airspeed indicators true airspeed reference card
KeyTrueAirspeedCalibrateDec KeySimEvent = "TRUE_AIRSPEED_CAL_DEC"
//KeyTrueAirspeedCalSet Sets airspeed indicators true airspeed reference card (degrees, where 0 is standard sea level conditions)
KeyTrueAirspeedCalSet KeySimEvent = "TRUE_AIRSPEED_CAL_SET"
//KeyEgt1Inc Increments EGT bug 1
KeyEgt1Inc KeySimEvent = "EGT1_INC"
//KeyEgt1Dec Decrements EGT bug 1
KeyEgt1Dec KeySimEvent = "EGT1_DEC"
//KeyEgt1Set Sets EGT bug 1 (0 to 32767)
KeyEgt1Set KeySimEvent = "EGT1_SET"
//KeyEgt2Inc Increments EGT bug 2
KeyEgt2Inc KeySimEvent = "EGT2_INC"
//KeyEgt2Dec Decrements EGT bug 2
KeyEgt2Dec KeySimEvent = "EGT2_DEC"
//KeyEgt2Set Sets EGT bug 2 (0 to 32767)
KeyEgt2Set KeySimEvent = "EGT2_SET"
//KeyEgt3Inc Increments EGT bug 3
KeyEgt3Inc KeySimEvent = "EGT3_INC"
//KeyEgt3Dec Decrements EGT bug 3
KeyEgt3Dec KeySimEvent = "EGT3_DEC"
//KeyEgt3Set Sets EGT bug 3 (0 to 32767)
KeyEgt3Set KeySimEvent = "EGT3_SET"
//KeyEgt4Inc Increments EGT bug 4
KeyEgt4Inc KeySimEvent = "EGT4_INC"
//KeyEgt4Dec Decrements EGT bug 4
KeyEgt4Dec KeySimEvent = "EGT4_DEC"
//KeyEgt4Set Sets EGT bug 4 (0 to 32767)
KeyEgt4Set KeySimEvent = "EGT4_SET"
//KeyAttitudeBarsPositionInc Increments attitude indicator pitch reference bars
KeyAttitudeBarsPositionInc KeySimEvent = "ATTITUDE_BARS_POSITION_UP"
//KeyAttitudeBarsPositionDec Decrements attitude indicator pitch reference bars
KeyAttitudeBarsPositionDec KeySimEvent = "ATTITUDE_BARS_POSITION_DOWN"
//KeyToggleAttitudeCage Cages attitude indicator at 0 pitch and bank
KeyToggleAttitudeCage KeySimEvent = "ATTITUDE_CAGE_BUTTON"
//KeyResetGForceIndicator Resets max/min indicated G force to 1.0.
KeyResetGForceIndicator KeySimEvent = "RESET_G_FORCE_INDICATOR"
//KeyResetMaxRpmIndicator Reset max indicated engine rpm to 0.
KeyResetMaxRpmIndicator KeySimEvent = "RESET_MAX_RPM_INDICATOR"
//KeyHeadingGyroSet Sets heading indicator to 0 drift error.
KeyHeadingGyroSet KeySimEvent = "HEADING_GYRO_SET"
//KeyGyroDriftSet Sets heading indicator drift angle (degrees).
KeyGyroDriftSet KeySimEvent = "GYRO_DRIFT_SET"
//KeyStrobesToggle Toggle strobe lights All aircraft
KeyStrobesToggle KeySimEvent = "STROBES_TOGGLE"
//KeyAllLightsToggle Toggle all lights
KeyAllLightsToggle KeySimEvent = "ALL_LIGHTS_TOGGLE"
//KeyPanelLightsToggle Toggle panel lights All aircraft
KeyPanelLightsToggle KeySimEvent = "PANEL_LIGHTS_TOGGLE"
//KeyLandingLightsToggle Toggle landing lights All aircraft
KeyLandingLightsToggle KeySimEvent = "LANDING_LIGHTS_TOGGLE"
//KeyLandingLightUp Rotate landing light up
KeyLandingLightUp KeySimEvent = "LANDING_LIGHT_UP"
//KeyLandingLightDown Rotate landing light down
KeyLandingLightDown KeySimEvent = "LANDING_LIGHT_DOWN"
//KeyLandingLightLeft Rotate landing light left
KeyLandingLightLeft KeySimEvent = "LANDING_LIGHT_LEFT"
//KeyLandingLightRight Rotate landing light right
KeyLandingLightRight KeySimEvent = "LANDING_LIGHT_RIGHT"
//KeyLandingLightHome Return landing light to default position
KeyLandingLightHome KeySimEvent = "LANDING_LIGHT_HOME"
//KeyStrobesOn Turn strobe lights on All aircraft
KeyStrobesOn KeySimEvent = "STROBES_ON"
//KeyStrobesOff Turn strobe light off All aircraft
KeyStrobesOff KeySimEvent = "STROBES_OFF"
//KeyStrobesSet Set strobe lights on/off (1,0) All aircraft
KeyStrobesSet KeySimEvent = "STROBES_SET"
//KeyPanelLightsOn Turn panel lights on All aircraft
KeyPanelLightsOn KeySimEvent = "PANEL_LIGHTS_ON"
//KeyPanelLightsOff Turn panel lights off All aircraft
KeyPanelLightsOff KeySimEvent = "PANEL_LIGHTS_OFF"
//KeyPanelLightsSet Set panel lights on/off (1,0) All aircraft
KeyPanelLightsSet KeySimEvent = "PANEL_LIGHTS_SET"
//KeyLandingLightsOn Turn landing lights on All aircraft
KeyLandingLightsOn KeySimEvent = "LANDING_LIGHTS_ON"
//KeyLandingLightsOff Turn landing lights off All aircraft
KeyLandingLightsOff KeySimEvent = "LANDING_LIGHTS_OFF"
//KeyLandingLightsSet Set landing lights on/off (1,0) All aircraft
KeyLandingLightsSet KeySimEvent = "LANDING_LIGHTS_SET"
//KeyToggleBeaconLights Toggle beacon lights All aircraft
KeyToggleBeaconLights KeySimEvent = "TOGGLE_BEACON_LIGHTS"
//KeyToggleTaxiLights Toggle taxi lights All aircraft
KeyToggleTaxiLights KeySimEvent = "TOGGLE_TAXI_LIGHTS"
//KeyToggleLogoLights Toggle logo lights All aircraft
KeyToggleLogoLights KeySimEvent = "TOGGLE_LOGO_LIGHTS"
//KeyToggleRecognitionLights Toggle recognition lights All aircraft
KeyToggleRecognitionLights KeySimEvent = "TOGGLE_RECOGNITION_LIGHTS"
//KeyToggleWingLights Toggle wing lights All aircraft
KeyToggleWingLights KeySimEvent = "TOGGLE_WING_LIGHTS"
//KeyToggleNavLights Toggle navigation lights All aircraft
KeyToggleNavLights KeySimEvent = "TOGGLE_NAV_LIGHTS"
//KeyToggleCabinLights Toggle cockpit/cabin lights All aircraft
KeyToggleCabinLights KeySimEvent = "TOGGLE_CABIN_LIGHTS"
//KeyToggleVacuumFailure Toggle vacuum system failure
KeyToggleVacuumFailure KeySimEvent = "TOGGLE_VACUUM_FAILURE"
//KeyToggleElectricalFailure Toggle electrical system failure
KeyToggleElectricalFailure KeySimEvent = "TOGGLE_ELECTRICAL_FAILURE"
//KeyTogglePitotBlockage Toggles blocked pitot tube
KeyTogglePitotBlockage KeySimEvent = "TOGGLE_PITOT_BLOCKAGE"
//KeyToggleStaticPortBlockage Toggles blocked static port
KeyToggleStaticPortBlockage KeySimEvent = "TOGGLE_STATIC_PORT_BLOCKAGE"
//KeyToggleHydraulicFailure Toggles hydraulic system failure
KeyToggleHydraulicFailure KeySimEvent = "TOGGLE_HYDRAULIC_FAILURE"
//KeyToggleTotalBrakeFailure Toggles brake failure (both)
KeyToggleTotalBrakeFailure KeySimEvent = "TOGGLE_TOTAL_BRAKE_FAILURE"
//KeyToggleLeftBrakeFailure Toggles left brake failure
KeyToggleLeftBrakeFailure KeySimEvent = "TOGGLE_LEFT_BRAKE_FAILURE"
//KeyToggleRightBrakeFailure Toggles right brake failure
KeyToggleRightBrakeFailure KeySimEvent = "TOGGLE_RIGHT_BRAKE_FAILURE"
//KeyToggleEngine1Failure Toggle engine 1 failure
KeyToggleEngine1Failure KeySimEvent = "TOGGLE_ENGINE1_FAILURE"
//KeyToggleEngine2Failure Toggle engine 2 failure
KeyToggleEngine2Failure KeySimEvent = "TOGGLE_ENGINE2_FAILURE"
//KeyToggleEngine3Failure Toggle engine 3 failure
KeyToggleEngine3Failure KeySimEvent = "TOGGLE_ENGINE3_FAILURE"
//KeyToggleEngine4Failure Toggle engine 4 failure
KeyToggleEngine4Failure KeySimEvent = "TOGGLE_ENGINE4_FAILURE"
//KeySmokeToggle Toggle smoke system switch All aircraft
KeySmokeToggle KeySimEvent = "SMOKE_TOGGLE"
//KeyGearToggle Toggle gear handle All aircraft
KeyGearToggle KeySimEvent = "GEAR_TOGGLE"
//KeyBrakes Increment brake pressure Note: These are simulated spring-loaded toe brakes, which will bleed back to zero over time.
KeyBrakes KeySimEvent = "BRAKES"
//KeyGearSet Sets gear handle position up/down (0,1) All aircraft
KeyGearSet KeySimEvent = "GEAR_SET"
//KeyBrakesLeft Increments left brake pressure. Note: This is a simulated spring-loaded toe brake, which will bleed back to zero over time.
KeyBrakesLeft KeySimEvent = "BRAKES_LEFT"
//KeyBrakesRight Increments right brake pressure. Note: This is a simulated spring-loaded toe brake, which will bleed back to zero over time.
KeyBrakesRight KeySimEvent = "BRAKES_RIGHT"
//KeyParkingBrakes Toggles parking brake on/off
KeyParkingBrakes KeySimEvent = "PARKING_BRAKES"
//KeyGearPump Increments emergency gear extension
KeyGearPump KeySimEvent = "GEAR_PUMP"
//KeyPitotHeatToggle Toggles pitot heat switch All aircraft
KeyPitotHeatToggle KeySimEvent = "PITOT_HEAT_TOGGLE"
//KeySmokeOn Turns smoke system on All aircraft
KeySmokeOn KeySimEvent = "SMOKE_ON"
//KeySmokeOff Turns smoke system off All aircraft
KeySmokeOff KeySimEvent = "SMOKE_OFF"
//KeySmokeSet Sets smoke system on/off (1,0) All aircraft
KeySmokeSet KeySimEvent = "SMOKE_SET"
//KeyPitotHeatOn Turns pitot heat switch on
KeyPitotHeatOn KeySimEvent = "PITOT_HEAT_ON"
//KeyPitotHeatOff Turns pitot heat switch off
KeyPitotHeatOff KeySimEvent = "PITOT_HEAT_OFF"
//KeyPitotHeatSet Sets pitot heat switch on/off (1,0)
KeyPitotHeatSet KeySimEvent = "PITOT_HEAT_SET"
//KeyGearUp Sets gear handle in UP position All aircraft
KeyGearUp KeySimEvent = "GEAR_UP"
//KeyGearDown Sets gear handle in DOWN position All aircraft
KeyGearDown KeySimEvent = "GEAR_DOWN"
//KeyToggleMasterBattery Toggles main battery switch All aircraft
KeyToggleMasterBattery KeySimEvent = "TOGGLE_MASTER_BATTERY"
//KeyToggleMasterAlternator Toggles main alternator/generator switch All aircraft
KeyToggleMasterAlternator KeySimEvent = "TOGGLE_MASTER_ALTERNATOR"
//KeyToggleElectricVacuumPump Toggles backup electric vacuum pump
KeyToggleElectricVacuumPump KeySimEvent = "TOGGLE_ELECTRIC_VACUUM_PUMP"
//KeyToggleAlternateStatic Toggles alternate static pressure port All aircraft
KeyToggleAlternateStatic KeySimEvent = "TOGGLE_ALTERNATE_STATIC"
//KeyDecisionHeightDec Decrements decision height reference
KeyDecisionHeightDec KeySimEvent = "DECREASE_DECISION_HEIGHT"
//KeyDecisionHeightInc Increments decision height reference
KeyDecisionHeightInc KeySimEvent = "INCREASE_DECISION_HEIGHT"
//KeyToggleStructuralDeice Toggles structural deice switch
KeyToggleStructuralDeice KeySimEvent = "TOGGLE_STRUCTURAL_DEICE"
//KeyTogglePropellerDeice Toggles propeller deice switch
KeyTogglePropellerDeice KeySimEvent = "TOGGLE_PROPELLER_DEICE"
//KeyToggleAlternator1 Toggles alternator/generator 1 switch All aircraft
KeyToggleAlternator1 KeySimEvent = "TOGGLE_ALTERNATOR1"
//KeyToggleAlternator2 Toggles alternator/generator 2 switch All aircraft
KeyToggleAlternator2 KeySimEvent = "TOGGLE_ALTERNATOR2"
//KeyToggleAlternator3 Toggles alternator/generator 3 switch All aircraft
KeyToggleAlternator3 KeySimEvent = "TOGGLE_ALTERNATOR3"
//KeyToggleAlternator4 Toggles alternator/generator 4 switch All aircraft
KeyToggleAlternator4 KeySimEvent = "TOGGLE_ALTERNATOR4"
//KeyToggleMasterBatteryAlternator Toggles master battery and alternator switch
KeyToggleMasterBatteryAlternator KeySimEvent = "TOGGLE_MASTER_BATTERY_ALTERNATOR"
//KeyAxisLeftBrakeSet Sets left brake position from axis controller (e.g. joystick). -16383 (0 brakes) to +16383 (max brakes)
KeyAxisLeftBrakeSet KeySimEvent = "AXIS_LEFT_BRAKE_SET"
//KeyAxisRightBrakeSet Sets right brake position from axis controller (e.g. joystick). -16383 (0 brakes) to +16383 (max brakes)
KeyAxisRightBrakeSet KeySimEvent = "AXIS_RIGHT_BRAKE_SET"
//KeyToggleAircraftExit Toggles primary door open/close. Follow by KEY_SELECT_2, etc for subsequent doors.
KeyToggleAircraftExit KeySimEvent = "TOGGLE_AIRCRAFT_EXIT"
//KeyToggleWingFold Toggles wing folding
KeyToggleWingFold KeySimEvent = "TOGGLE_WING_FOLD"
//KeySetWingFold Sets the wings into the folded position suitable for storage, typically on a carrier. Takes a value: 1 - fold wings, 0 - unfold wings
KeySetWingFold KeySimEvent = "SET_WING_FOLD"
//KeyToggleTailHookHandle Toggles tail hook
KeyToggleTailHookHandle KeySimEvent = "TOGGLE_TAIL_HOOK_HANDLE"
//KeySetTailHookHandle Sets the tail hook handle. Takes a value: 1 - set tail hook, 0 - retract tail hook
KeySetTailHookHandle KeySimEvent = "SET_TAIL_HOOK_HANDLE"
//KeyToggleWaterRudder Toggles water rudders
KeyToggleWaterRudder KeySimEvent = "TOGGLE_WATER_RUDDER"
//KeyPushbackSet Toggles pushback.
KeyPushbackSet KeySimEvent = "TOGGLE_PUSHBACK"
//KeyTugHeading Triggers tug and sets the desired heading. The units are a 32 bit integer (0 to 4294967295) which represent 0 to 360 degrees. To set a 45 degree angle, for example, set the value to 4294967295 / 8.
KeyTugHeading KeySimEvent = "KeyTugHeading"
//KeyTugSpeed Triggers tug, and sets desired speed, in feet per second. The speed can be both positive (forward movement) and negative (backward movement).
KeyTugSpeed KeySimEvent = "KeyTugSpeed"
//KeyTugDisable Disables tug
KeyTugDisable KeySimEvent = "TUG_DISABLE"
//KeyToggleMasterIgnitionSwitch Toggles master ignition switch
KeyToggleMasterIgnitionSwitch KeySimEvent = "TOGGLE_MASTER_IGNITION_SWITCH"
//KeyToggleTailwheelLock Toggles tail wheel lock
KeyToggleTailwheelLock KeySimEvent = "TOGGLE_TAILWHEEL_LOCK"
//KeyAddFuelQuantity Adds fuel to the aircraft, 25% of capacity by default. 0 to 65535 (max fuel) can be passed.
KeyAddFuelQuantity KeySimEvent = "ADD_FUEL_QUANTITY"
//KeyRotorBrake Triggers rotor braking input
KeyRotorBrake KeySimEvent = "ROTOR_BRAKE"
//KeyRotorClutchSwitchToggle Toggles on electric rotor clutch switch
KeyRotorClutchSwitchToggle KeySimEvent = "ROTOR_CLUTCH_SWITCH_TOGGLE"
//KeyRotorClutchSwitchSet Sets electric rotor clutch switch on/off (1,0)
KeyRotorClutchSwitchSet KeySimEvent = "ROTOR_CLUTCH_SWITCH_SET"
//KeyRotorGovSwitchToggle Toggles the electric rotor governor switch
KeyRotorGovSwitchToggle KeySimEvent = "ROTOR_GOV_SWITCH_TOGGLE"
//KeyRotorGovSwitchSet Sets the electric rotor governor switch on/off (1,0)
KeyRotorGovSwitchSet KeySimEvent = "ROTOR_GOV_SWITCH_SET"
//KeyRotorLateralTrimInc Increments the lateral (right) rotor trim
KeyRotorLateralTrimInc KeySimEvent = "ROTOR_LATERAL_TRIM_INC"
//KeyRotorLateralTrimDec Decrements the lateral (right) rotor trim
KeyRotorLateralTrimDec KeySimEvent = "ROTOR_LATERAL_TRIM_DEC"
//KeyRotorLateralTrimSet Sets the lateral (right) rotor trim (0 to 16383) Slings and Hoists
KeyRotorLateralTrimSet KeySimEvent = "ROTOR_LATERAL_TRIM_SET"
//KeySlewToggle Toggles slew on/off (Pilot only)
KeySlewToggle KeySimEvent = "SLEW_TOGGLE"
//KeySlewOff Turns slew off (Pilot only)
KeySlewOff KeySimEvent = "SLEW_OFF"
//KeySlewOn Turns slew on (Pilot only)
KeySlewOn KeySimEvent = "SLEW_ON"
//KeySlewSet Sets slew on/off (1,0) (Pilot only)
KeySlewSet KeySimEvent = "SLEW_SET"
//KeySlewReset Stop slew and reset pitch, bank, and heading all to zero. (Pilot only)
KeySlewReset KeySimEvent = "SLEW_RESET"
//KeySlewAltitUpFast Slew upward fast (Pilot only)
KeySlewAltitUpFast KeySimEvent = "SLEW_ALTIT_UP_FAST"
//KeySlewAltitUpSlow Slew upward slow (Pilot only)
KeySlewAltitUpSlow KeySimEvent = "SLEW_ALTIT_UP_SLOW"
//KeySlewAltitFreeze Stop vertical slew (Pilot only)
KeySlewAltitFreeze KeySimEvent = "SLEW_ALTIT_FREEZE"
//KeySlewAltitDnSlow Slew downward slow (Pilot only)
KeySlewAltitDnSlow KeySimEvent = "SLEW_ALTIT_DN_SLOW"
//KeySlewAltitDnFast Slew downward fast (Pilot only)
KeySlewAltitDnFast KeySimEvent = "SLEW_ALTIT_DN_FAST"
//KeySlewAltitPlus Increase upward slew (Pilot only)
KeySlewAltitPlus KeySimEvent = "SLEW_ALTIT_PLUS"
//KeySlewAltitMinus Decrease upward slew (Pilot only)
KeySlewAltitMinus KeySimEvent = "SLEW_ALTIT_MINUS"
//KeySlewPitchDnFast Slew pitch downward fast (Pilot only)
KeySlewPitchDnFast KeySimEvent = "SLEW_PITCH_DN_FAST"
//KeySlewPitchDnSlow Slew pitch downward slow (Pilot only)
KeySlewPitchDnSlow KeySimEvent = "SLEW_PITCH_DN_SLOW"
//KeySlewPitchFreeze Stop pitch slew (Pilot only)
KeySlewPitchFreeze KeySimEvent = "SLEW_PITCH_FREEZE"
//KeySlewPitchUpSlow Slew pitch up slow (Pilot only)
KeySlewPitchUpSlow KeySimEvent = "SLEW_PITCH_UP_SLOW"
//KeySlewPitchUpFast Slew pitch upward fast (Pilot only)
KeySlewPitchUpFast KeySimEvent = "SLEW_PITCH_UP_FAST"
//KeySlewPitchPlus Increase pitch up slew (Pilot only)
KeySlewPitchPlus KeySimEvent = "SLEW_PITCH_PLUS"
//KeySlewPitchMinus Decrease pitch up slew (Pilot only)
KeySlewPitchMinus KeySimEvent = "SLEW_PITCH_MINUS"
//KeySlewBankMinus Increase left bank slew (Pilot only)
KeySlewBankMinus KeySimEvent = "SLEW_BANK_MINUS"
//KeySlewAheadPlus Increase forward slew (Pilot only)
KeySlewAheadPlus KeySimEvent = "SLEW_AHEAD_PLUS"
//KeySlewBankPlus Increase right bank slew (Pilot only)
KeySlewBankPlus KeySimEvent = "SLEW_BANK_PLUS"
//KeySlewLeft Slew to the left (Pilot only)
KeySlewLeft KeySimEvent = "SLEW_LEFT"
//KeySlewFreeze Stop all slew (Pilot only)
KeySlewFreeze KeySimEvent = "SLEW_FREEZE"
//KeySlewRight Slew to the right (Pilot only)
KeySlewRight KeySimEvent = "SLEW_RIGHT"
//KeySlewHeadingMinus Increase slew heading to the left (Pilot only)
KeySlewHeadingMinus KeySimEvent = "SLEW_HEADING_MINUS"
//KeySlewAheadMinus Decrease forward slew (Pilot only)
KeySlewAheadMinus KeySimEvent = "SLEW_AHEAD_MINUS"
//KeySlewHeadingPlus Increase slew heading to the right (Pilot only)
KeySlewHeadingPlus KeySimEvent = "SLEW_HEADING_PLUS"
//KeyAxisSlewAheadSet Sets forward slew (+/- 16383) (Pilot only)
KeyAxisSlewAheadSet KeySimEvent = "AXIS_SLEW_AHEAD_SET"
//KeyAxisSlewSidewaysSet Sets sideways slew (+/- 16383) (Pilot only)
KeyAxisSlewSidewaysSet KeySimEvent = "AXIS_SLEW_SIDEWAYS_SET"
//KeyAxisSlewHeadingSet Sets heading slew (+/- 16383) (Pilot only)
KeyAxisSlewHeadingSet KeySimEvent = "AXIS_SLEW_HEADING_SET"
//KeyAxisSlewAltSet Sets vertical slew (+/- 16383) (Pilot only)
KeyAxisSlewAltSet KeySimEvent = "AXIS_SLEW_ALT_SET"
//KeyAxisSlewBankSet Sets roll slew (+/- 16383) (Pilot only)
KeyAxisSlewBankSet KeySimEvent = "AXIS_SLEW_BANK_SET"
//KeyAxisSlewPitchSet Sets pitch slew (+/- 16383) (Pilot only)
KeyAxisSlewPitchSet KeySimEvent = "AXIS_SLEW_PITCH_SET"
//KeyViewMode Selects next view
KeyViewMode KeySimEvent = "VIEW_MODE"
//KeyViewWindowToFront Sets active window to front
KeyViewWindowToFront KeySimEvent = "VIEW_WINDOW_TO_FRONT"
//KeyViewReset Reset view forward
KeyViewReset KeySimEvent = "VIEW_RESET"
//KeyViewAlwaysPanUp SimEvent
KeyViewAlwaysPanUp KeySimEvent = "VIEW_ALWAYS_PAN_UP"
//KeyViewAlwaysPanDown SimEvent
KeyViewAlwaysPanDown KeySimEvent = "VIEW_ALWAYS_PAN_DOWN"
//KeyNextSubView SimEvent
KeyNextSubView KeySimEvent = "NEXT_SUB_VIEW"
//KeyPrevSubView SimEvent
KeyPrevSubView KeySimEvent = "PREV_SUB_VIEW"
//KeyViewTrackPanToggle SimEvent
KeyViewTrackPanToggle KeySimEvent = "VIEW_TRACK_PAN_TOGGLE"
//KeyViewPreviousToggle SimEvent
KeyViewPreviousToggle KeySimEvent = "VIEW_PREVIOUS_TOGGLE"
//KeyViewCameraSelectStarting SimEvent
KeyViewCameraSelectStarting KeySimEvent = "VIEW_CAMERA_SELECT_START"
//KeyPanelHudNext SimEvent
KeyPanelHudNext KeySimEvent = "PANEL_HUD_NEXT"
//KeyPanelHudPrevious SimEvent
KeyPanelHudPrevious KeySimEvent = "PANEL_HUD_PREVIOUS"
//KeyZoomIn Zooms view in
KeyZoomIn KeySimEvent = "ZOOM_IN"
//KeyZoomOut Zooms view out
KeyZoomOut KeySimEvent = "ZOOM_OUT"
//KeyMapZoomFineIn Fine zoom in map view
KeyMapZoomFineIn KeySimEvent = "MAP_ZOOM_FINE_IN"
//KeyPanLeft Pans view left
KeyPanLeft KeySimEvent = "PAN_LEFT"
//KeyPanRight Pans view right
KeyPanRight KeySimEvent = "PAN_RIGHT"
//KeyMapZoomFineOut Fine zoom out in map view
KeyMapZoomFineOut KeySimEvent = "MAP_ZOOM_FINE_OUT"
//KeyViewForward Sets view direction forward
KeyViewForward KeySimEvent = "VIEW_FORWARD"
//KeyViewForwardRight Sets view direction forward and right
KeyViewForwardRight KeySimEvent = "VIEW_FORWARD_RIGHT"
//KeyViewRight Sets view direction to the right
KeyViewRight KeySimEvent = "VIEW_RIGHT"
//KeyViewRearRight Sets view direction to the rear and right
KeyViewRearRight KeySimEvent = "VIEW_REAR_RIGHT"
//KeyViewRear Sets view direction to the rear
KeyViewRear KeySimEvent = "VIEW_REAR"
//KeyViewRearLeft Sets view direction to the rear and left
KeyViewRearLeft KeySimEvent = "VIEW_REAR_LEFT"
//KeyViewLeft Sets view direction to the left
KeyViewLeft KeySimEvent = "VIEW_LEFT"
//KeyViewForwardLeft Sets view direction forward and left
KeyViewForwardLeft KeySimEvent = "VIEW_FORWARD_LEFT"
//KeyViewDown Sets view direction down
KeyViewDown KeySimEvent = "VIEW_DOWN"
//KeyZoomMinus Decreases zoom
KeyZoomMinus KeySimEvent = "ZOOM_MINUS"
//KeyZoomPlus Increase zoom
KeyZoomPlus KeySimEvent = "ZOOM_PLUS"
//KeyPanUp Pan view up
KeyPanUp KeySimEvent = "PAN_UP"
//KeyPanDown Pan view down
KeyPanDown KeySimEvent = "PAN_DOWN"
//KeyViewModeRev Reverse view cycle
KeyViewModeRev KeySimEvent = "VIEW_MODE_REV"
//KeyZoomInFine Zoom in fine
KeyZoomInFine KeySimEvent = "ZOOM_IN_FINE"
//KeyZoomOutFine Zoom out fine
KeyZoomOutFine KeySimEvent = "ZOOM_OUT_FINE"
//KeyCloseView Close current view
KeyCloseView KeySimEvent = "CLOSE_VIEW"
//KeyNewView Open new view
KeyNewView KeySimEvent = "NEW_VIEW"
//KeyNextView Select next view
KeyNextView KeySimEvent = "NEXT_VIEW"
//KeyPrevView Select previous view
KeyPrevView KeySimEvent = "PREV_VIEW"
//KeyPanLeftUp Pan view left
KeyPanLeftUp KeySimEvent = "PAN_LEFT_UP"
//KeyPanLeftDown Pan view left and down
KeyPanLeftDown KeySimEvent = "PAN_LEFT_DOWN"
//KeyPanRightUp Pan view right and up
KeyPanRightUp KeySimEvent = "PAN_RIGHT_UP"
//KeyPanRightDown Pan view right and down
KeyPanRightDown KeySimEvent = "PAN_RIGHT_DOWN"
//KeyPanTiltLeft Tilt view left
KeyPanTiltLeft KeySimEvent = "PAN_TILT_LEFT"
//KeyPanTiltRight Tilt view right
KeyPanTiltRight KeySimEvent = "PAN_TILT_RIGHT"
//KeyPanReset Reset view to forward
KeyPanReset KeySimEvent = "PAN_RESET"
//KeyViewForwardUp Sets view forward and up
KeyViewForwardUp KeySimEvent = "VIEW_FORWARD_UP"
//KeyViewForwardRightUp Sets view forward, right, and up
KeyViewForwardRightUp KeySimEvent = "VIEW_FORWARD_RIGHT_UP"
//KeyViewRightUp Sets view right and up
KeyViewRightUp KeySimEvent = "VIEW_RIGHT_UP"
//KeyViewRearRightUp Sets view rear, right, and up
KeyViewRearRightUp KeySimEvent = "VIEW_REAR_RIGHT_UP"
//KeyViewRearUp Sets view rear and up
KeyViewRearUp KeySimEvent = "VIEW_REAR_UP"
//KeyViewRearLeftUp Sets view rear left and up
KeyViewRearLeftUp KeySimEvent = "VIEW_REAR_LEFT_UP"
//KeyViewLeftUp Sets view left and up
KeyViewLeftUp KeySimEvent = "VIEW_LEFT_UP"
//KeyViewForwardLeftUp Sets view forward left and up
KeyViewForwardLeftUp KeySimEvent = "VIEW_FORWARD_LEFT_UP"
//KeyViewUp Sets view up
KeyViewUp KeySimEvent = "VIEW_UP"
//KeyPanResetCockpit Reset panning to forward, if in cockpit view
KeyPanResetCockpit KeySimEvent = "PAN_RESET_COCKPIT"
//KeyChaseViewNext Cycle view to next target
KeyChaseViewNext KeySimEvent = "KeyChaseViewNext"
//KeyChaseViewPrev Cycle view to previous target
KeyChaseViewPrev KeySimEvent = "KeyChaseViewPrev"
//KeyChaseViewToggle Toggles chase view on/off
KeyChaseViewToggle KeySimEvent = "CHASE_VIEW_TOGGLE"
//KeyEyepointUp Move eyepoint up
KeyEyepointUp KeySimEvent = "EYEPOINT_UP"
//KeyEyepointDown Move eyepoint down
KeyEyepointDown KeySimEvent = "EYEPOINT_DOWN"
//KeyEyepointRight Move eyepoint right
KeyEyepointRight KeySimEvent = "EYEPOINT_RIGHT"
//KeyEyepointLeft Move eyepoint left
KeyEyepointLeft KeySimEvent = "EYEPOINT_LEFT"
//KeyEyepointForward Move eyepoint forward
KeyEyepointForward KeySimEvent = "EYEPOINT_FORWARD"
//KeyEyepointBack Move eyepoint backward
KeyEyepointBack KeySimEvent = "EYEPOINT_BACK"
//KeyEyepointReset Move eyepoint to default position
KeyEyepointReset KeySimEvent = "EYEPOINT_RESET"
//KeyNewMap Opens new map view
KeyNewMap KeySimEvent = "NEW_MAP"
//KeyPauseToggle Toggles pause on/off Disabled
KeyPauseToggle KeySimEvent = "PAUSE_TOGGLE"
//KeyPauseOn Turns pause on Disabled
KeyPauseOn KeySimEvent = "PAUSE_ON"
//KeyPauseOff Turns pause off Disabled
KeyPauseOff KeySimEvent = "PAUSE_OFF"
//KeyPauseSet Sets pause on/off (1,0) Disabled
KeyPauseSet KeySimEvent = "PAUSE_SET"
//KeyDemoStop Stops demo system playback
KeyDemoStop KeySimEvent = "DEMO_STOP"
//KeySelect1 Sets "selected" index (for other events) to 1
KeySelect1 KeySimEvent = "SELECT_1"
//KeySelect2 Sets "selected" index (for other events) to 2
KeySelect2 KeySimEvent = "SELECT_2"
//KeySelect3 Sets "selected" index (for other events) to 3
KeySelect3 KeySimEvent = "SELECT_3"
//KeySelect4 Sets "selected" index (for other events) to 4
KeySelect4 KeySimEvent = "SELECT_4"
//KeyMinus Used in conjunction with "selected" parameters to decrease their value (e.g., radio frequency)
KeyMinus KeySimEvent = "MINUS"
//KeyPlus Used in conjunction with "selected" parameters to increase their value (e.g., radio frequency)
KeyPlus KeySimEvent = "PLUS"
//KeyZoom1x Sets zoom level to 1
KeyZoom1x KeySimEvent = "ZOOM_1X"
//KeySoundToggle Toggles sound on/off
KeySoundToggle KeySimEvent = "SOUND_TOGGLE"
//KeySimRate Selects simulation rate (use KEY_MINUS, KEY_PLUS to change)
KeySimRate KeySimEvent = "SIM_RATE"
//KeyJoystickCalibrate Toggles joystick on/off
KeyJoystickCalibrate KeySimEvent = "JOYSTICK_CALIBRATE"
//KeySituationSave Saves scenario
KeySituationSave KeySimEvent = "SITUATION_SAVE"
//KeySituationReset Resets scenario
KeySituationReset KeySimEvent = "SITUATION_RESET"
//KeySoundSet Sets sound on/off (1,0)
KeySoundSet KeySimEvent = "SOUND_SET"
//KeyExit Quit Prepar3D with a message
KeyExit KeySimEvent = "EXIT"
//KeyAbort Quit Prepar3D without a message
KeyAbort KeySimEvent = "ABORT"
//KeyReadoutsSlew Cycle through information readouts while in slew
KeyReadoutsSlew KeySimEvent = "READOUTS_SLEW"
//KeyReadoutsFlight Cycle through information readouts
KeyReadoutsFlight KeySimEvent = "READOUTS_FLIGHT"
//KeyMinusShift Used with other events
KeyMinusShift KeySimEvent = "MINUS_SHIFT"
//KeyPlusShift Used with other events
KeyPlusShift KeySimEvent = "PLUS_SHIFT"
//KeySimRateIncr Increase sim rate
KeySimRateIncr KeySimEvent = "SIM_RATE_INCR"
//KeySimRateDecr Decrease sim rate
KeySimRateDecr KeySimEvent = "SIM_RATE_DECR"
//KeyKneeboard Toggles kneeboard
KeyKneeboard KeySimEvent = "KNEEBOARD_VIEW"
//KeyPanel1 Toggles panel 1
KeyPanel1 KeySimEvent = "PANEL_1"
//KeyPanel2 Toggles panel 2
KeyPanel2 KeySimEvent = "PANEL_2"
//KeyPanel3 Toggles panel 3
KeyPanel3 KeySimEvent = "PANEL_3"
//KeyPanel4 Toggles panel 4
KeyPanel4 KeySimEvent = "PANEL_4"
//KeyPanel5 Toggles panel 5
KeyPanel5 KeySimEvent = "PANEL_5"
//KeyPanel6 Toggles panel 6
KeyPanel6 KeySimEvent = "PANEL_6"
//KeyPanel7 Toggles panel 7
KeyPanel7 KeySimEvent = "PANEL_7"
//KeyPanel8 Toggles panel 8
KeyPanel8 KeySimEvent = "PANEL_8"
//KeyPanel9 Toggles panel 9
KeyPanel9 KeySimEvent = "PANEL_9"
//KeySoundOn Turns sound on
KeySoundOn KeySimEvent = "SOUND_ON"
//KeySoundOff Turns sound off
KeySoundOff KeySimEvent = "SOUND_OFF"
//KeyInvokeHelp Brings up Help system
KeyInvokeHelp KeySimEvent = "INVOKE_HELP"
//KeyToggleAircraftLabels Toggles aircraft labels
KeyToggleAircraftLabels KeySimEvent = "TOGGLE_AIRCRAFT_LABELS"
//KeyFlightMap Brings up flight map
KeyFlightMap KeySimEvent = "FLIGHT_MAP"
//KeyReloadPanels Reload panel data
KeyReloadPanels KeySimEvent = "RELOAD_PANELS"
KeyPanelIDToggle KeySimEvent = "PANEL_ID_TOGGLE"
KeyPanelIDOpen KeySimEvent = "PANEL_ID_OPEN"
KeyPanelIDClose KeySimEvent = "PANEL_ID_CLOSE"
//KeyControlReloadUserAircraft Reloads the user aircraft data (from cache if same type loaded as an AI, otherwise from disk)
KeyControlReloadUserAircraft KeySimEvent = "RELOAD_USER_AIRCRAFT"
//KeySimReset Resets aircraft state
KeySimReset KeySimEvent = "SIM_RESET"
//KeyVirtualCopilotToggle Turns User Tips on/off
KeyVirtualCopilotToggle KeySimEvent = "VIRTUAL_COPILOT_TOGGLE"
//KeyVirtualCopilotSet Sets User Tips on/off (1,0)
KeyVirtualCopilotSet KeySimEvent = "VIRTUAL_COPILOT_SET"
//KeyVirtualCopilotAction Triggers action noted in User Tips
KeyVirtualCopilotAction KeySimEvent = "VIRTUAL_COPILOT_ACTION"
//KeyRefreshScenery Reloads scenery
KeyRefreshScenery KeySimEvent = "REFRESH_SCENERY"
//KeyClockHoursDec Decrements time by hours
KeyClockHoursDec KeySimEvent = "CLOCK_HOURS_DEC"
//KeyClockHoursInc Increments time by hours
KeyClockHoursInc KeySimEvent = "CLOCK_HOURS_INC"
//KeyClockMinutesDec Decrements time by minutes
KeyClockMinutesDec KeySimEvent = "CLOCK_MINUTES_DEC"
//KeyClockMinutesInc Increments time by minutes
KeyClockMinutesInc KeySimEvent = "CLOCK_MINUTES_INC"
//KeyClockSecondsZero Zeros seconds
KeyClockSecondsZero KeySimEvent = "CLOCK_SECONDS_ZERO"
//KeyClockHoursSet Sets hour of day
KeyClockHoursSet KeySimEvent = "CLOCK_HOURS_SET"
//KeyClockMinutesSet Sets minutes of the hour
KeyClockMinutesSet KeySimEvent = "CLOCK_MINUTES_SET"
//KeyZuluHoursSet Sets hours, zulu time
KeyZuluHoursSet KeySimEvent = "ZULU_HOURS_SET"
//KeyZuluMinutesSet Sets minutes, in zulu time
KeyZuluMinutesSet KeySimEvent = "ZULU_MINUTES_SET"
//KeyZuluDaySet Sets day, in zulu time
KeyZuluDaySet KeySimEvent = "ZULU_DAY_SET"
//KeyZuluYearSet Sets year, in zulu time
KeyZuluYearSet KeySimEvent = "ZULU_YEAR_SET"
//KeyAtc Activates ATC window
KeyAtc KeySimEvent = "ATC"
//KeyAtcMenu1 Selects ATC option 1
KeyAtcMenu1 KeySimEvent = "ATC_MENU_1"
//KeyAtcMenu2 Selects ATC option 2
KeyAtcMenu2 KeySimEvent = "ATC_MENU_2"
//KeyAtcMenu3 Selects ATC option 3
KeyAtcMenu3 KeySimEvent = "ATC_MENU_3"
//KeyAtcMenu4 Selects ATC option 4
KeyAtcMenu4 KeySimEvent = "ATC_MENU_4"
//KeyAtcMenu5 Selects ATC option 5
KeyAtcMenu5 KeySimEvent = "ATC_MENU_5"
//KeyAtcMenu6 Selects ATC option 6
KeyAtcMenu6 KeySimEvent = "ATC_MENU_6"
//KeyAtcMenu7 Selects ATC option 7
KeyAtcMenu7 KeySimEvent = "ATC_MENU_7"
//KeyAtcMenu8 Selects ATC option 8
KeyAtcMenu8 KeySimEvent = "ATC_MENU_8"
//KeyAtcMenu9 Selects ATC option 9
KeyAtcMenu9 KeySimEvent = "ATC_MENU_9"
//KeyAtcMenu0 Selects ATC option 10
KeyAtcMenu0 KeySimEvent = "ATC_MENU_0"
//KeyMultiplayerTransferControl Toggle to the next player to track -
KeyMultiplayerTransferControl KeySimEvent = "MP_TRANSFER_CONTROL"
//KeyMultiplayerPlayerCycle Cycle through the current user aircraft.
KeyMultiplayerPlayerCycle KeySimEvent = "MP_PLAYER_CYCLE"
//KeyMultiplayerPlayerFollow Set the view to follow the selected user aircraft.
KeyMultiplayerPlayerFollow KeySimEvent = "MP_PLAYER_FOLLOW"
//KeyMultiplayerChat Toggles chat window visible/invisible
KeyMultiplayerChat KeySimEvent = "MP_CHAT"
//KeyMultiplayerActivateChat Activates chat window
KeyMultiplayerActivateChat KeySimEvent = "MP_ACTIVATE_CHAT"
//KeyMultiplayerVoiceCaptureStart Start capturing audio from the users computer and transmitting it to all other players in the multiplayer session who are turned to the same radio frequency.
KeyMultiplayerVoiceCaptureStart KeySimEvent = "MP_VOICE_CAPTURE_START"
//KeyMultiplayerVoiceCaptureStop Stop capturing radio audio.
KeyMultiplayerVoiceCaptureStop KeySimEvent = "MP_VOICE_CAPTURE_STOP"
//KeyMultiplayerBroadcastVoiceCaptureStart Start capturing audio from the users computer and transmitting it to all other players in the multiplayer session.
KeyMultiplayerBroadcastVoiceCaptureStart KeySimEvent = "MP_BROADCAST_VOICE_CAPTURE_START"
//KeyMultiplayerBroadcastVoiceCaptureStop Stop capturing broadcast audio.
KeyMultiplayerBroadcastVoiceCaptureStop KeySimEvent = "MP_BROADCAST_VOICE_CAPTURE_STOP"
)
```
Dcumentation based on <http://www.prepar3d.com/SDKv3/LearningCenter/utilities/variables/event_ids.html>
#### type [PrintColor](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L180) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#PrintColor "Go to PrintColor")
```
type PrintColor uint32
```
#### type [SIMCONNECT\_DATA\_FACILITY\_AIRPORT](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L185) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_AIRPORT "Go to SIMCONNECT_DATA_FACILITY_AIRPORT")
```
type SIMCONNECT_DATA_FACILITY_AIRPORT struct {
Icao [9]byte // ICAO of the object
Latitude float64 // degrees
Longitude float64 // degrees
Altitude float64 // meters
}
```
#### type [SIMCONNECT\_DATA\_FACILITY\_NDB](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L207) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_NDB "Go to SIMCONNECT_DATA_FACILITY_NDB")
```
type SIMCONNECT_DATA_FACILITY_NDB struct {
SIMCONNECT_DATA_FACILITY_WAYPOINT
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_DATA\_FACILITY\_VOR](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L217) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_VOR "Go to SIMCONNECT_DATA_FACILITY_VOR")
```
type SIMCONNECT_DATA_FACILITY_VOR struct {
SIMCONNECT_DATA_FACILITY_NDB
Flags uint32 // SIMCONNECT_VOR_FLAGS
GlideLat float64 // Glide Slope Location (deg, deg, meters)
GlideLon float64
GlideAlt float64
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_DATA\_FACILITY\_WAYPOINT](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L197) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_WAYPOINT "Go to SIMCONNECT_DATA_FACILITY_WAYPOINT")
```
type SIMCONNECT_DATA_FACILITY_WAYPOINT struct {
SIMCONNECT_DATA_FACILITY_AIRPORT
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_DATA\_INITPOSITION](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L232) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_INITPOSITION "Go to SIMCONNECT_DATA_INITPOSITION")
```
type SIMCONNECT_DATA_INITPOSITION struct {
Latitude float64 // degrees
Longitude float64 // degrees
Altitude float64 // feet
Pitch float64 // degrees
Bank float64 // degrees
Heading float64 // degrees
OnGround uint32 // 1=force to be on the ground
Airspeed uint32 // knots
}
```
#### type [SIMCONNECT\_DATA\_LATLONALT](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L257) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_LATLONALT "Go to SIMCONNECT_DATA_LATLONALT")
```
type SIMCONNECT_DATA_LATLONALT struct {
Latitude float64
Longitude float64
Altitude float64 // actualy found the result in meter on FS2020
}
```
#### func (SIMCONNECT\_DATA\_LATLONALT) [GetFeets](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L263) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_LATLONALT.GetFeets "Go to SIMCONNECT_DATA_LATLONALT.GetFeets")
```
func (s SIMCONNECT_DATA_LATLONALT) GetFeets() int
```
#### type [SIMCONNECT\_DATA\_MARKERSTATE](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L243) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_MARKERSTATE "Go to SIMCONNECT_DATA_MARKERSTATE")
```
type SIMCONNECT_DATA_MARKERSTATE struct {
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_DATA\_RACE\_RESULT](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L80) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_RACE_RESULT "Go to SIMCONNECT_DATA_RACE_RESULT")
```
type SIMCONNECT_DATA_RACE_RESULT struct {
MissionGUID *GUID // The name of the mission to execute, NULL if no mission
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_DATA\_WAYPOINT](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L248) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_WAYPOINT "Go to SIMCONNECT_DATA_WAYPOINT")
```
type SIMCONNECT_DATA_WAYPOINT struct {
Latitude float64 // degrees
Longitude float64 // degrees
Altitude float64 // feet
Flags uint64
KtsSpeed float64 // knots
PercentThrottle float64
}
```
#### type [SIMCONNECT\_DATA\_XYZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L267) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_XYZ "Go to SIMCONNECT_DATA_XYZ")
```
type SIMCONNECT_DATA_XYZ struct {
X float64
Y float64
Z float64
}
```
#### type [SIMCONNECT\_RECV](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L5) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV "Go to SIMCONNECT_RECV")
```
type SIMCONNECT_RECV struct {
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_AIRPORT\_LIST](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L192) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_AIRPORT_LIST "Go to SIMCONNECT_RECV_AIRPORT_LIST")
```
type SIMCONNECT_RECV_AIRPORT_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_ASSIGNED\_OBJECT\_ID](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L144) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_ASSIGNED_OBJECT_ID "Go to SIMCONNECT_RECV_ASSIGNED_OBJECT_ID")
```
type SIMCONNECT_RECV_ASSIGNED_OBJECT_ID struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
when dwID == SIMCONNECT\_RECV\_ID\_ASSIGNED\_OBJECT\_ID
#### type [SIMCONNECT\_RECV\_CLIENT\_DATA](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L120) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CLIENT_DATA "Go to SIMCONNECT_RECV_CLIENT_DATA")
```
type SIMCONNECT_RECV_CLIENT_DATA struct {
SIMCONNECT_RECV_SIMOBJECT_DATA
}
```
#### type [SIMCONNECT\_RECV\_CLOUD\_STATE](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L136) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CLOUD_STATE "Go to SIMCONNECT_RECV_CLOUD_STATE")
```
type SIMCONNECT_RECV_CLOUD_STATE struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
when dwID == SIMCONNECT\_RECV\_ID\_CLOUD\_STATE
#### type [SIMCONNECT\_RECV\_CUSTOM\_ACTION](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L166) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CUSTOM_ACTION "Go to SIMCONNECT_RECV_CUSTOM_ACTION")
```
type SIMCONNECT_RECV_CUSTOM_ACTION struct {
SIMCONNECT_RECV_EVENT
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_EVENT](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L37) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT "Go to SIMCONNECT_RECV_EVENT")
```
type SIMCONNECT_RECV_EVENT struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_FILENAME](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L44) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_FILENAME "Go to SIMCONNECT_RECV_EVENT_FILENAME")
```
type SIMCONNECT_RECV_EVENT_FILENAME struct {
SIMCONNECT_RECV_EVENT
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_FRAME](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L55) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_FRAME "Go to SIMCONNECT_RECV_EVENT_FRAME")
```
type SIMCONNECT_RECV_EVENT_FRAME struct {
SIMCONNECT_RECV_EVENT
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_CLIENT\_STARTED](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L65) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED "Go to SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED")
```
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED struct {
SIMCONNECT_RECV_EVENT
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_SERVER\_STARTED](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L61) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED "Go to SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED")
```
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED struct {
SIMCONNECT_RECV_EVENT
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_SESSION\_ENDED](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L69) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED "Go to SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED")
```
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED struct {
SIMCONNECT_RECV_EVENT
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_OBJECT\_ADDREMOVE](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L50) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE "Go to SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE")
```
type SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE struct {
SIMCONNECT_RECV_EVENT
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_RACE\_END](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L92) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_RACE_END "Go to SIMCONNECT_RECV_EVENT_RACE_END")
```
type SIMCONNECT_RECV_EVENT_RACE_END struct {
SIMCONNECT_RECV_EVENT
RacerData SIMCONNECT_DATA_RACE_RESULT
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_RACE\_LAP](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L98) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_RACE_LAP "Go to SIMCONNECT_RECV_EVENT_RACE_LAP")
```
type SIMCONNECT_RECV_EVENT_RACE_LAP struct {
SIMCONNECT_RECV_EVENT
RacerData SIMCONNECT_DATA_RACE_RESULT
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_EVENT\_WEATHER\_MODE](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L173) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_WEATHER_MODE "Go to SIMCONNECT_RECV_EVENT_WEATHER_MODE")
```
type SIMCONNECT_RECV_EVENT_WEATHER_MODE struct {
SIMCONNECT_RECV_EVENT
}
```
#### type [SIMCONNECT\_RECV\_EXCEPTION](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L11) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EXCEPTION "Go to SIMCONNECT_RECV_EXCEPTION")
```
type SIMCONNECT_RECV_EXCEPTION struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_FACILITIES\_LIST](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L177) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_FACILITIES_LIST "Go to SIMCONNECT_RECV_FACILITIES_LIST")
```
type SIMCONNECT_RECV_FACILITIES_LIST struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_NDB\_LIST](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L212) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_NDB_LIST "Go to SIMCONNECT_RECV_NDB_LIST")
```
type SIMCONNECT_RECV_NDB_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_OPEN](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L18) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_OPEN "Go to SIMCONNECT_RECV_OPEN")
```
type SIMCONNECT_RECV_OPEN struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_QUIT](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L33) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_QUIT "Go to SIMCONNECT_RECV_QUIT")
```
type SIMCONNECT_RECV_QUIT struct {
SIMCONNECT_RECV
}
```
#### type [SIMCONNECT\_RECV\_RESERVED\_KEY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L151) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_RESERVED_KEY "Go to SIMCONNECT_RECV_RESERVED_KEY")
```
type SIMCONNECT_RECV_RESERVED_KEY struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
when dwID == SIMCONNECT\_RECV\_ID\_RESERVED\_KEY
#### type [SIMCONNECT\_RECV\_SIMOBJECT\_DATA](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L104) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SIMOBJECT_DATA "Go to SIMCONNECT_RECV_SIMOBJECT_DATA")
```
type SIMCONNECT_RECV_SIMOBJECT_DATA struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_SIMOBJECT\_DATA\_BYTYPE](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L116) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE "Go to SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE")
```
type SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE struct {
SIMCONNECT_RECV_SIMOBJECT_DATA
}
```
#### type [SIMCONNECT\_RECV\_SYSTEM\_STATE](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L158) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SYSTEM_STATE "Go to SIMCONNECT_RECV_SYSTEM_STATE")
```
type SIMCONNECT_RECV_SYSTEM_STATE struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
when dwID == SIMCONNECT\_RECV\_ID\_SYSTEM\_STATE
#### type [SIMCONNECT\_RECV\_VOR\_LIST](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L227) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_VOR_LIST "Go to SIMCONNECT_RECV_VOR_LIST")
```
type SIMCONNECT_RECV_VOR_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_WAYPOINT\_LIST](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L202) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_WAYPOINT_LIST "Go to SIMCONNECT_RECV_WAYPOINT_LIST")
```
type SIMCONNECT_RECV_WAYPOINT_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
// contains filtered or unexported fields
}
```
#### type [SIMCONNECT\_RECV\_WEATHER\_OBSERVATION](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L124) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_WEATHER_OBSERVATION "Go to SIMCONNECT_RECV_WEATHER_OBSERVATION")
```
type SIMCONNECT_RECV_WEATHER_OBSERVATION struct {
SIMCONNECT_RECV
// contains filtered or unexported fields
}
```
#### type [ScrollColor](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L181) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#ScrollColor "Go to ScrollColor")
```
type ScrollColor uint32
```
#### type [SimConnect](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L25) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect "Go to SimConnect")
```
type SimConnect struct {
// contains filtered or unexported fields
}
```
SimConnect golang interface
#### func [NewSimConnect](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L31) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewSimConnect "Go to NewSimConnect")
```
func NewSimConnect() (*SimConnect, error)
```
NewSimConnect get instance of SimConnect
#### func (\*SimConnect) [AICreateEnrouteATCAircraft](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L257) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateEnrouteATCAircraft "Go to SimConnect.AICreateEnrouteATCAircraft")
```
func (sc *SimConnect) AICreateEnrouteATCAircraft(szContainerTitle string, szTailNumber string, iFlightNumber int, szFlightPlanPath string, dFlightPlanPosition float64, bTouchAndGo uint32, RequestID uint32) (error, uint32)
```
AICreateEnrouteATCAircraft SimConnect\_AICreateEnrouteATCAircraft(HANDLE hSimConnect, const char \* szContainerTitle, const char \* szTailNumber, int iFlightNumber, const char \* szFlightPlanPath, double dFlightPlanPosition, BOOL bTouchAndGo, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [AICreateNonATCAircraft](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L262) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateNonATCAircraft "Go to SimConnect.AICreateNonATCAircraft")
```
func (sc *SimConnect) AICreateNonATCAircraft(szContainerTitle string, szTailNumber string, InitPos uint32, RequestID uint32) (error, uint32)
```
AICreateNonATCAircraft SimConnect\_AICreateNonATCAircraft(HANDLE hSimConnect, const char \* szContainerTitle, const char \* szTailNumber, SIMCONNECT\_DATA\_INITPOSITION InitPos, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [AICreateParkedATCAircraft](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L252) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateParkedATCAircraft "Go to SimConnect.AICreateParkedATCAircraft")
```
func (sc *SimConnect) AICreateParkedATCAircraft(szContainerTitle string, szTailNumber string, szAirportID string, RequestID uint32) (error, uint32)
```
AICreateParkedATCAircraft SimConnect\_AICreateParkedATCAircraft(HANDLE hSimConnect, const char \* szContainerTitle, const char \* szTailNumber, const char \* szAirportID, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [AICreateSimulatedObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L267) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateSimulatedObject "Go to SimConnect.AICreateSimulatedObject")
```
func (sc *SimConnect) AICreateSimulatedObject(szContainerTitle string, InitPos uint32, RequestID uint32) (error, uint32)
```
AICreateSimulatedObject SimConnect\_AICreateSimulatedObject(HANDLE hSimConnect, const char \* szContainerTitle, SIMCONNECT\_DATA\_INITPOSITION InitPos, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [AIReleaseControl](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L272) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AIReleaseControl "Go to SimConnect.AIReleaseControl")
```
func (sc *SimConnect) AIReleaseControl(ObjectID uint32, RequestID uint32) (error, uint32)
```
AIReleaseControl SimConnect\_AIReleaseControl(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [AIRemoveObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L277) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AIRemoveObject "Go to SimConnect.AIRemoveObject")
```
func (sc *SimConnect) AIRemoveObject(ObjectID uint32, RequestID uint32) (error, uint32)
```
AIRemoveObject SimConnect\_AIRemoveObject(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [AISetAircraftFlightPlan](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L282) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AISetAircraftFlightPlan "Go to SimConnect.AISetAircraftFlightPlan")
```
func (sc *SimConnect) AISetAircraftFlightPlan(ObjectID uint32, szFlightPlanPath string, RequestID uint32) (error, uint32)
```
AISetAircraftFlightPlan SimConnect\_AISetAircraftFlightPlan(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID, const char \* szFlightPlanPath, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [AddClientEventToNotificationGroup](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L63) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddClientEventToNotificationGroup "Go to SimConnect.AddClientEventToNotificationGroup")
```
func (sc *SimConnect) AddClientEventToNotificationGroup(GroupID uint32, EventID uint32, bMaskable bool) (error, uint32)
```
AddClientEventToNotificationGroup SimConnect\_AddClientEventToNotificationGroup(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, BOOL bMaskable = FALSE);
#### func (\*SimConnect) [AddToClientDataDefinition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L395) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddToClientDataDefinition "Go to SimConnect.AddToClientDataDefinition")
```
func (sc *SimConnect) AddToClientDataDefinition(DefineID uint32, dwOffset uint32, dwSizeOrType uint32, fEpsilon float32, DatumID uint32) (error, uint32)
```
AddToClientDataDefinition SimConnect\_AddToClientDataDefinition(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_DEFINITION\_ID DefineID, DWORD dwOffset, DWORD dwSizeOrType, float fEpsilon = 0, DWORD DatumID = SIMCONNECT\_UNUSED);
#### func (\*SimConnect) [AddToDataDefinition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L91) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddToDataDefinition "Go to SimConnect.AddToDataDefinition")
```
func (sc *SimConnect) AddToDataDefinition(DefineID uint32, DatumName string, UnitsName string, DatumType uint32, fEpsilon float32, DatumID uint32) (error, uint32)
```
AddToDataDefinition SimConnect\_AddToDataDefinition(HANDLE hSimConnect, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID, const char \* DatumName, const char \* UnitsName, SIMCONNECT\_DATATYPE DatumType = SIMCONNECT\_DATATYPE\_FLOAT64, float fEpsilon = 0, DWORD DatumID = SIMCONNECT\_UNUSED);
#### func (\*SimConnect) [CameraSetRelative6DOF](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L350) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CameraSetRelative6DOF "Go to SimConnect.CameraSetRelative6DOF")
```
func (sc *SimConnect) CameraSetRelative6DOF(fDeltaX float32, fDeltaY float32, fDeltaZ float32, fPitchDeg float32, fBankDeg float32, fHeadingDeg float32) (error, uint32)
```
CameraSetRelative6DOF SimConnect\_CameraSetRelative6DOF(HANDLE hSimConnect, float fDeltaX, float fDeltaY, float fDeltaZ, float fPitchDeg, float fBankDeg, float fHeadingDeg);
#### func (\*SimConnect) [ClearClientDataDefinition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L400) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearClientDataDefinition "Go to SimConnect.ClearClientDataDefinition")
```
func (sc *SimConnect) ClearClientDataDefinition(DefineID uint32) (error, uint32)
```
ClearClientDataDefinition SimConnect\_ClearClientDataDefinition(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_DEFINITION\_ID DefineID);
#### func (\*SimConnect) [ClearDataDefinition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L99) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearDataDefinition "Go to SimConnect.ClearDataDefinition")
```
func (sc *SimConnect) ClearDataDefinition(DefineID uint32) (error, uint32)
```
ClearDataDefinition SimConnect\_ClearDataDefinition(HANDLE hSimConnect, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID);
#### func (\*SimConnect) [ClearInputGroup](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L151) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearInputGroup "Go to SimConnect.ClearInputGroup")
```
func (sc *SimConnect) ClearInputGroup(GroupID uint32) (error, uint32)
```
ClearInputGroup SimConnect\_ClearInputGroup(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID);
#### func (\*SimConnect) [ClearNotificationGroup](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L81) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearNotificationGroup "Go to SimConnect.ClearNotificationGroup")
```
func (sc *SimConnect) ClearNotificationGroup(GroupID uint32) (error, uint32)
```
ClearNotificationGroup SimConnect\_ClearNotificationGroup(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID);
#### func (\*SimConnect) [Close](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L297) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Close "Go to SimConnect.Close")
```
func (sc *SimConnect) Close() (error, uint32)
```
Close SimConnect\_Close(HANDLE hSimConnect);
#### func (\*SimConnect) [CompleteCustomMissionAction](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L292) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CompleteCustomMissionAction "Go to SimConnect.CompleteCustomMissionAction")
```
func (sc *SimConnect) CompleteCustomMissionAction(guidInstanceID GUID) (error, uint32)
```
CompleteCustomMissionAction SimConnect\_CompleteCustomMissionAction(HANDLE hSimConnect, const GUID guidInstanceId);
#### func (\*SimConnect) [CreateClientData](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L390) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CreateClientData "Go to SimConnect.CreateClientData")
```
func (sc *SimConnect) CreateClientData(ClientDataID uint32, dwSize uint32, Flags uint32) (error, uint32)
```
CreateClientData SimConnect\_CreateClientData(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_ID ClientDataID, DWORD dwSize, SIMCONNECT\_CREATE\_CLIENT\_DATA\_FLAG Flags);
#### func (\*SimConnect) [ExecuteMissionAction](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L287) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ExecuteMissionAction "Go to SimConnect.ExecuteMissionAction")
```
func (sc *SimConnect) ExecuteMissionAction(guidInstanceID GUID) (error, uint32)
```
ExecuteMissionAction SimConnect\_ExecuteMissionAction(HANDLE hSimConnect, const GUID guidInstanceId);
#### func (\*SimConnect) [FlightLoad](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L415) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightLoad "Go to SimConnect.FlightLoad")
```
func (sc *SimConnect) FlightLoad(szFileName string) (error, uint32)
```
FlightLoad SimConnect\_FlightLoad(HANDLE hSimConnect, const char \* szFileName);
#### func (\*SimConnect) [FlightPlanLoad](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L425) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightPlanLoad "Go to SimConnect.FlightPlanLoad")
```
func (sc *SimConnect) FlightPlanLoad(szFileName string) (error, uint32)
```
FlightPlanLoad SimConnect\_FlightPlanLoad(HANDLE hSimConnect, const char \* szFileName);
#### func (\*SimConnect) [FlightSave](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L420) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightSave "Go to SimConnect.FlightSave")
```
func (sc *SimConnect) FlightSave(szFileName string, szTitle string, szDescription string, Flags uint32) (error, uint32)
```
FlightSave SimConnect\_FlightSave(HANDLE hSimConnect, const char \* szFileName, const char \* szTitle, const char \* szDescription, DWORD Flags);
#### func (\*SimConnect) [GetLastSentPacketID](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L310) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.GetLastSentPacketID "Go to SimConnect.GetLastSentPacketID")
```
func (sc *SimConnect) GetLastSentPacketID(pdwError *uint32) error
```
GetLastSentPacketID SimConnect\_GetLastSentPacketID(HANDLE hSimConnect, DWORD \* pdwError);
#### func (\*SimConnect) [GetNextDispatch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L332) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.GetNextDispatch "Go to SimConnect.GetNextDispatch")
```
func (sc *SimConnect) GetNextDispatch(ppData *unsafe.Pointer, pcbData *uint32) (error, uint32)
```
GetNextDispatch SimConnect\_GetNextDispatch(HANDLE hSimConnect, SIMCONNECT\_RECV \*\* ppData, DWORD \* pcbData);
#### func (\*SimConnect) [InsertString](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L345) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.InsertString "Go to SimConnect.InsertString")
```
func (sc *SimConnect) InsertString(pDest string, cbDest uint32, ppEnd *uint32, pcbStringV *uint32, pSource string) (error, uint32)
```
InsertString SimConnect\_InsertString(char \* pDest, DWORD cbDest, void \*\* ppEnd, DWORD \* pcbStringV, const char \* pSource);
#### func (\*SimConnect) [MapClientDataNameToID](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L385) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapClientDataNameToID "Go to SimConnect.MapClientDataNameToID")
```
func (sc *SimConnect) MapClientDataNameToID(szClientDataName string, ClientDataID uint32) (error, uint32)
```
MapClientDataNameToID SimConnect\_MapClientDataNameToID(HANDLE hSimConnect, const char \* szClientDataName, SIMCONNECT\_CLIENT\_DATA\_ID ClientDataID);
#### func (\*SimConnect) [MapClientEventToSimEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L42) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapClientEventToSimEvent "Go to SimConnect.MapClientEventToSimEvent")
```
func (sc *SimConnect) MapClientEventToSimEvent(EventID uint32, EventName string) (error, uint32)
```
MapClientEventToSimEvent SimConnect\_MapClientEventToSimEvent(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, const char \* EventName = "")
#### func (\*SimConnect) [MapInputEventToClientEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L132) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapInputEventToClientEvent "Go to SimConnect.MapInputEventToClientEvent")
```
func (sc *SimConnect) MapInputEventToClientEvent(GroupID uint32, szInputDefinition string, DownEventID uint32, DownValue uint32, UpEventID uint32, UpValue uint32, bMaskable bool) (error, uint32)
```
MapInputEventToClientEvent SimConnect\_MapInputEventToClientEvent(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID, const char \* szInputDefinition, SIMCONNECT\_CLIENT\_EVENT\_ID DownEventID, DWORD DownValue = 0, SIMCONNECT\_CLIENT\_EVENT\_ID UpEventID = (SIMCONNECT\_CLIENT\_EVENT\_ID)SIMCONNECT\_UNUSED, DWORD UpValue = 0, BOOL bMaskable = FALSE);
#### func (\*SimConnect) [MenuAddItem](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L355) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuAddItem "Go to SimConnect.MenuAddItem")
```
func (sc *SimConnect) MenuAddItem(szMenuItem string, MenuEventID uint32, dwData uint32) (error, uint32)
```
MenuAddItem SimConnect\_MenuAddItem(HANDLE hSimConnect, const char \* szMenuItem, SIMCONNECT\_CLIENT\_EVENT\_ID MenuEventID, DWORD dwData);
#### func (\*SimConnect) [MenuAddSubItem](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L365) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuAddSubItem "Go to SimConnect.MenuAddSubItem")
```
func (sc *SimConnect) MenuAddSubItem(MenuEventID uint32, szMenuItem string, SubMenuEventID uint32, dwData uint32) (error, uint32)
```
MenuAddSubItem SimConnect\_MenuAddSubItem(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID MenuEventID, const char \* szMenuItem, SIMCONNECT\_CLIENT\_EVENT\_ID SubMenuEventID, DWORD dwData);
#### func (\*SimConnect) [MenuDeleteItem](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L360) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuDeleteItem "Go to SimConnect.MenuDeleteItem")
```
func (sc *SimConnect) MenuDeleteItem(MenuEventID uint32) (error, uint32)
```
MenuDeleteItem SimConnect\_MenuDeleteItem(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID MenuEventID);
#### func (\*SimConnect) [MenuDeleteSubItem](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L370) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuDeleteSubItem "Go to SimConnect.MenuDeleteSubItem")
```
func (sc *SimConnect) MenuDeleteSubItem(MenuEventID uint32, constSubMenuEventID uint32) (error, uint32)
```
MenuDeleteSubItem SimConnect\_MenuDeleteSubItem(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID MenuEventID, const SIMCONNECT\_CLIENT\_EVENT\_ID SubMenuEventID);
#### func (\*SimConnect) [Open](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L317) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Open "Go to SimConnect.Open")
```
func (sc *SimConnect) Open(appTitle string) (error, uint32)
```
Open SimConnect\_Open(HANDLE \* phSimConnect, LPCSTR szName, HWND hWnd, DWORD UserEventWin32, HANDLE hEventHandle, DWORD ConfigIndex);
#### func (\*SimConnect) [RemoveClientEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L71) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RemoveClientEvent "Go to SimConnect.RemoveClientEvent")
```
func (sc *SimConnect) RemoveClientEvent(GroupID uint32, EventID uint32) (error, uint32)
```
RemoveClientEvent SimConnect\_RemoveClientEvent(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, SIMCONNECT\_CLIENT\_EVENT\_ID EventID);
#### func (\*SimConnect) [RemoveInputEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L146) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RemoveInputEvent "Go to SimConnect.RemoveInputEvent")
```
func (sc *SimConnect) RemoveInputEvent(GroupID uint32, szInputDefinition string) (error, uint32)
```
RemoveInputEvent SimConnect\_RemoveInputEvent(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID, const char \* szInputDefinition);
#### func (\*SimConnect) [RequestClientData](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L405) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestClientData "Go to SimConnect.RequestClientData")
```
func (sc *SimConnect) RequestClientData(ClientDataID uint32, RequestID uint32, DefineID uint32, Period uint32, Flags uint32, origin uint32, interval uint32, limit uint32) (error, uint32)
```
RequestClientData SimConnect\_RequestClientData(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_ID ClientDataID, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, SIMCONNECT\_CLIENT\_DATA\_DEFINITION\_ID DefineID, SIMCONNECT\_CLIENT\_DATA\_PERIOD Period = SIMCONNECT\_CLIENT\_DATA\_PERIOD\_ONCE, SIMCONNECT\_CLIENT\_DATA\_REQUEST\_FLAG Flags = 0, DWORD origin = 0, DWORD interval = 0, DWORD limit = 0);
#### func (\*SimConnect) [RequestDataOnSimObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L107) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestDataOnSimObject "Go to SimConnect.RequestDataOnSimObject")
```
func (sc *SimConnect) RequestDataOnSimObject(RequestID uint32, DefineID uint32, ObjectID uint32, Period uint32, Flags uint32, origin uint32, interval uint32, limit uint32) (error, uint32)
```
RequestDataOnSimObject SimConnect\_RequestDataOnSimObject(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_PERIOD Period, SIMCONNECT\_DATA\_REQUEST\_FLAG Flags = 0, DWORD origin = 0, DWORD interval = 0, DWORD limit = 0);
#### func (\*SimConnect) [RequestDataOnSimObjectType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L112) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestDataOnSimObjectType "Go to SimConnect.RequestDataOnSimObjectType")
```
func (sc *SimConnect) RequestDataOnSimObjectType(RequestID uint32, DefineID uint32, dwRadiusMeters uint32, t uint32) (error, uint32)
```
RequestDataOnSimObjectType SimConnect\_RequestDataOnSimObjectType(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID, DWORD dwRadiusMeters, SIMCONNECT\_SIMOBJECT\_TYPE type);
#### func (\*SimConnect) [RequestFacilitiesList](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L450) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestFacilitiesList "Go to SimConnect.RequestFacilitiesList")
```
func (sc *SimConnect) RequestFacilitiesList(t uint32, RequestID uint32) (error, uint32)
```
RequestFacilitiesList SimConnect\_RequestFacilitiesList(HANDLE hSimConnect, SIMCONNECT\_FACILITY\_LIST\_TYPE type, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [RequestNotificationGroup](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L86) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestNotificationGroup "Go to SimConnect.RequestNotificationGroup")
```
func (sc *SimConnect) RequestNotificationGroup(GroupID uint32, dwReserved uint32, Flags uint32) (error, uint32)
```
RequestNotificationGroup SimConnect\_RequestNotificationGroup(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, DWORD dwReserved = 0, DWORD Flags = 0);
#### func (\*SimConnect) [RequestReservedKey](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L164) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestReservedKey "Go to SimConnect.RequestReservedKey")
```
func (sc *SimConnect) RequestReservedKey(EventID uint32, szKeyChoice1 string, szKeyChoice2 string, szKeyChoice3 string) (error, uint32)
```
RequestReservedKey SimConnect\_RequestReservedKey(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, const char \* szKeyChoice1 = "", const char \* szKeyChoice2 = "", const char \* szKeyChoice3 = "");
#### func (\*SimConnect) [RequestResponseTimes](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L340) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestResponseTimes "Go to SimConnect.RequestResponseTimes")
```
func (sc *SimConnect) RequestResponseTimes(nCount uint32, fElapsedSeconds *float32) (error, uint32)
```
RequestResponseTimes SimConnect\_RequestResponseTimes(HANDLE hSimConnect, DWORD nCount, float \* fElapsedSeconds);
#### func (\*SimConnect) [RequestSystemState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L375) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestSystemState "Go to SimConnect.RequestSystemState")
```
func (sc *SimConnect) RequestSystemState(RequestID uint32, szState string) (error, uint32)
```
RequestSystemState SimConnect\_RequestSystemState(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, const char \* szState);
#### func (\*SimConnect) [RetrieveString](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L305) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RetrieveString "Go to SimConnect.RetrieveString")
```
func (sc *SimConnect) RetrieveString(pData *uint32, cbData uint32, pStringV string, pszString **string, pcbString *uint32) (error, uint32)
```
RetrieveString SimConnect\_RetrieveString(SIMCONNECT\_RECV \* pData, DWORD cbData, void \* pStringV, char \*\* pszString, DWORD \* pcbString);
#### func (\*SimConnect) [SetClientData](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L410) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetClientData "Go to SimConnect.SetClientData")
```
func (sc *SimConnect) SetClientData(ClientDataID uint32, DefineID uint32, Flags uint32, dwReserved uint32, cbUnitSize uint32, pDataSet *uint32) (error, uint32)
```
SetClientData SimConnect\_SetClientData(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_ID ClientDataID, SIMCONNECT\_CLIENT\_DATA\_DEFINITION\_ID DefineID, SIMCONNECT\_CLIENT\_DATA\_SET\_FLAG Flags, DWORD dwReserved, DWORD cbUnitSize, void \* pDataSet);
#### func (\*SimConnect) [SetDataOnSimObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L120) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetDataOnSimObject "Go to SimConnect.SetDataOnSimObject")
```
func (sc *SimConnect) SetDataOnSimObject(DefineID uint32, ObjectID uint32, Flags uint32, ArrayCount uint32, cbUnitSize uint32, pDataSet []byte) (error, uint32)
```
SetDataOnSimObject SimConnect\_SetDataOnSimObject(HANDLE hSimConnect, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_DATA\_SET\_FLAG Flags, DWORD ArrayCount, DWORD cbUnitSize, void \* pDataSet);
#### func (\*SimConnect) [SetInputGroupPriority](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L141) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetInputGroupPriority "Go to SimConnect.SetInputGroupPriority")
```
func (sc *SimConnect) SetInputGroupPriority(GroupID uint32, uPriority uint32) (error, uint32)
```
SetInputGroupPriority SimConnect\_SetInputGroupPriority(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID, DWORD uPriority);
#### func (\*SimConnect) [SetInputGroupState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L156) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetInputGroupState "Go to SimConnect.SetInputGroupState")
```
func (sc *SimConnect) SetInputGroupState(GroupID uint32, dwState SimConnectStat) (error, uint32)
```
SetInputGroupState SimConnect\_SetInputGroupState(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID, DWORD dwState);
#### func (\*SimConnect) [SetNotificationGroupPriority](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L76) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetNotificationGroupPriority "Go to SimConnect.SetNotificationGroupPriority")
```
func (sc *SimConnect) SetNotificationGroupPriority(GroupID uint32, uPriority GroupPriority) (error, uint32)
```
SetNotificationGroupPriority SimConnect\_SetNotificationGroupPriority(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, DWORD uPriority);
#### func (\*SimConnect) [SetSystemEventState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L58) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetSystemEventState "Go to SimConnect.SetSystemEventState")
```
func (sc *SimConnect) SetSystemEventState(EventID uint32, dwState uint32) (error, uint32)
```
SetSystemEventState SimConnect\_SetSystemEventState(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, SIMCONNECT\_STATE dwState);
#### func (\*SimConnect) [SetSystemState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L380) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetSystemState "Go to SimConnect.SetSystemState")
```
func (sc *SimConnect) SetSystemState(szState string, dwInteger uint32, fFloat float32, szString string) (error, uint32)
```
SetSystemState SimConnect\_SetSystemState(HANDLE hSimConnect, const char \* szState, DWORD dwInteger, float fFloat, const char \* szString);
#### func (\*SimConnect) [SubscribeToFacilities](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L440) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SubscribeToFacilities "Go to SimConnect.SubscribeToFacilities")
```
func (sc *SimConnect) SubscribeToFacilities(t uint32, RequestID uint32) (error, uint32)
```
SubscribeToFacilities SimConnect\_SubscribeToFacilities(HANDLE hSimConnect, SIMCONNECT\_FACILITY\_LIST\_TYPE type, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
#### func (\*SimConnect) [SubscribeToSystemEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L169) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SubscribeToSystemEvent "Go to SimConnect.SubscribeToSystemEvent")
```
func (sc *SimConnect) SubscribeToSystemEvent(EventID uint32, SystemEventName SystemEvent) (error, uint32)
```
SubscribeToSystemEvent SimConnect\_SubscribeToSystemEvent(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, const char \* SystemEventName);
#### func (\*SimConnect) [Text](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L430) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Text "Go to SimConnect.Text")
```
func (sc *SimConnect) Text(t uint32, fTimeSeconds float32, EventID uint32, pDataSet string) (error, uint32)
```
Text SimConnect\_Text(HANDLE hSimConnect, SIMCONNECT\_TEXT\_TYPE type, float fTimeSeconds, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, DWORD cbUnitSize, void \* pDataSet);
#### func (\*SimConnect) [TransmitClientEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L50) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.TransmitClientEvent "Go to SimConnect.TransmitClientEvent")
```
func (sc *SimConnect) TransmitClientEvent(ObjectID uint32, EventID uint32, dwData int, GroupID GroupPriority, Flags EventFlag) (error, uint32)
```
TransmitClientEvent SimConnect\_TransmitClientEvent(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, DWORD dwData, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, SIMCONNECT\_EVENT\_FLAG Flags);
#### func (\*SimConnect) [UnsubscribeFromSystemEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L177) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.UnsubscribeFromSystemEvent "Go to SimConnect.UnsubscribeFromSystemEvent")
```
func (sc *SimConnect) UnsubscribeFromSystemEvent(EventID uint32) (error, uint32)
```
UnsubscribeFromSystemEvent SimConnect\_UnsubscribeFromSystemEvent(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID);
#### func (\*SimConnect) [UnsubscribeToFacilities](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L445) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.UnsubscribeToFacilities "Go to SimConnect.UnsubscribeToFacilities")
```
func (sc *SimConnect) UnsubscribeToFacilities(t uint32) (error, uint32)
```
UnsubscribeToFacilities SimConnect\_UnsubscribeToFacilities(HANDLE hSimConnect, SIMCONNECT\_FACILITY\_LIST\_TYPE type);
#### func (\*SimConnect) [WeatherCreateStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L197) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherCreateStation "Go to SimConnect.WeatherCreateStation")
```
func (sc *SimConnect) WeatherCreateStation(RequestID uint32, szICAO string, szName string, lat float32, lon float32, alt float32) (error, uint32)
```
WeatherCreateStation SimConnect\_WeatherCreateStation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, const char \* szICAO, const char \* szName, float lat, float lon, float alt);
#### func (\*SimConnect) [WeatherCreateThermal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L242) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherCreateThermal "Go to SimConnect.WeatherCreateThermal")
```
func (sc *SimConnect) WeatherCreateThermal(RequestID uint32, lat float32, lon float32, alt float32, radius float32, height float32, coreRate float32, coreTurbulence float32, sinkRate float32, sinkTurbulence float32, coreSize float32, coreTransitionSize float32, sinkLayerSize float32, sinkTransitionSize float32) (error, uint32)
```
WeatherCreateThermal SimConnect\_WeatherCreateThermal(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, float lat, float lon, float alt, float radius, float height, float coreRate = 3.0f, float coreTurbulence = 0.05f, float sinkRate = 3.0f, float sinkTurbulence = 0.2f, float coreSize = 0.4f, float coreTransitionSize = 0.1f, float sinkLayerSize = 0.4f, float sinkTransitionSize = 0.1f);
#### func (\*SimConnect) [WeatherRemoveStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L202) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRemoveStation "Go to SimConnect.WeatherRemoveStation")
```
func (sc *SimConnect) WeatherRemoveStation(RequestID uint32, szICAO string) (error, uint32)
```
WeatherRemoveStation SimConnect\_WeatherRemoveStation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, const char \* szICAO);
#### func (\*SimConnect) [WeatherRemoveThermal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L247) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRemoveThermal "Go to SimConnect.WeatherRemoveThermal")
```
func (sc *SimConnect) WeatherRemoveThermal(ObjectID uint32) (error, uint32)
```
WeatherRemoveThermal SimConnect\_WeatherRemoveThermal(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID);
#### func (\*SimConnect) [WeatherRequestCloudState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L237) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestCloudState "Go to SimConnect.WeatherRequestCloudState")
```
func (sc *SimConnect) WeatherRequestCloudState(RequestID uint32, minLat float32, minLon float32, minAlt float32, maxLat float32, maxLon float32, maxAlt float32, dwFlags uint32) (error, uint32)
```
WeatherRequestCloudState SimConnect\_WeatherRequestCloudState(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, float minLat, float minLon, float minAlt, float maxLat, float maxLon, float maxAlt, DWORD dwFlags = 0);
#### func (\*SimConnect) [WeatherRequestInterpolatedObservation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L182) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestInterpolatedObservation "Go to SimConnect.WeatherRequestInterpolatedObservation")
```
func (sc *SimConnect) WeatherRequestInterpolatedObservation(RequestID uint32, lat float32, lon float32, alt float32) (error, uint32)
```
WeatherRequestInterpolatedObservation SimConnect\_WeatherRequestInterpolatedObservation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, float lat, float lon, float alt);
#### func (\*SimConnect) [WeatherRequestObservationAtNearestStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L192) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestObservationAtNearestStation "Go to SimConnect.WeatherRequestObservationAtNearestStation")
```
func (sc *SimConnect) WeatherRequestObservationAtNearestStation(RequestID uint32, lat float32, lon float32) (error, uint32)
```
WeatherRequestObservationAtNearestStation SimConnect\_WeatherRequestObservationAtNearestStation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, float lat, float lon);
#### func (\*SimConnect) [WeatherRequestObservationAtStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L187) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestObservationAtStation "Go to SimConnect.WeatherRequestObservationAtStation")
```
func (sc *SimConnect) WeatherRequestObservationAtStation(RequestID uint32, szICAO string) (error, uint32)
```
WeatherRequestObservationAtStation SimConnect\_WeatherRequestObservationAtStation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, const char \* szICAO);
#### func (\*SimConnect) [WeatherSetDynamicUpdateRate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L232) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetDynamicUpdateRate "Go to SimConnect.WeatherSetDynamicUpdateRate")
```
func (sc *SimConnect) WeatherSetDynamicUpdateRate(dwRate uint32) (error, uint32)
```
WeatherSetDynamicUpdateRate SimConnect\_WeatherSetDynamicUpdateRate(HANDLE hSimConnect, DWORD dwRate);
#### func (\*SimConnect) [WeatherSetModeCustom](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L227) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeCustom "Go to SimConnect.WeatherSetModeCustom")
```
func (sc *SimConnect) WeatherSetModeCustom() (error, uint32)
```
WeatherSetModeCustom SimConnect\_WeatherSetModeCustom(HANDLE hSimConnect);
#### func (\*SimConnect) [WeatherSetModeGlobal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L222) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeGlobal "Go to SimConnect.WeatherSetModeGlobal")
```
func (sc *SimConnect) WeatherSetModeGlobal() (error, uint32)
```
WeatherSetModeGlobal SimConnect\_WeatherSetModeGlobal(HANDLE hSimConnect);
#### func (\*SimConnect) [WeatherSetModeServer](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L212) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeServer "Go to SimConnect.WeatherSetModeServer")
```
func (sc *SimConnect) WeatherSetModeServer(dwPort uint32, dwSeconds uint32) (error, uint32)
```
WeatherSetModeServer SimConnect\_WeatherSetModeServer(HANDLE hSimConnect, DWORD dwPort, DWORD dwSeconds);
#### func (\*SimConnect) [WeatherSetModeTheme](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L217) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeTheme "Go to SimConnect.WeatherSetModeTheme")
```
func (sc *SimConnect) WeatherSetModeTheme(szThemeName string) (error, uint32)
```
WeatherSetModeTheme SimConnect\_WeatherSetModeTheme(HANDLE hSimConnect, const char \* szThemeName);
#### func (\*SimConnect) [WeatherSetObservation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go#L207) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetObservation "Go to SimConnect.WeatherSetObservation")
```
func (sc *SimConnect) WeatherSetObservation(Seconds uint32, szMETAR string) (error, uint32)
```
WeatherSetObservation SimConnect\_WeatherSetObservation(HANDLE hSimConnect, DWORD Seconds, const char \* szMETAR);
#### type [SimConnectStat](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L151) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnectStat "Go to SimConnectStat")
```
type SimConnectStat int
```
```
const (
SIMCONNECT_STATE_OFF SimConnectStat = iota
SIMCONNECT_STATE_ON
)
```
#### type [SimEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L459) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent "Go to SimEvent")
```
type SimEvent struct {
Mapping KeySimEvent
Value int
// contains filtered or unexported fields
}
```
SimEvent Use for generate action in the simulator
#### func (SimEvent) [Run](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L468) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent.Run "Go to SimEvent.Run")
```
func (s SimEvent) Run() <-chan int32
```
Run return chan bool when receive the event is finish
#### func (SimEvent) [RunWithValue](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L474) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent.RunWithValue "Go to SimEvent.RunWithValue")
```
func (s SimEvent) RunWithValue(value int) <-chan int32
```
RunWithValue return chan bool when receive the event is finish
#### type [SimVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L99) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar "Go to SimVar")
```
type SimVar struct {
Name string
Unit SimVarUnit
Settable bool
Index int
// contains filtered or unexported fields
}
```
SimVar is usued for all SimVar describtion
#### func [SimVarAbsoluteTime](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10014) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAbsoluteTime "Go to SimVarAbsoluteTime")
```
func SimVarAbsoluteTime(args ...interface{}) SimVar
```
SimVarAbsoluteTime Simvar args contain optional index and/or unit
#### func [SimVarAccelerationBodyX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3516) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyX "Go to SimVarAccelerationBodyX")
```
func SimVarAccelerationBodyX(args ...interface{}) SimVar
```
SimVarAccelerationBodyX Simvar args contain optional index and/or unit
#### func [SimVarAccelerationBodyY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3528) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyY "Go to SimVarAccelerationBodyY")
```
func SimVarAccelerationBodyY(args ...interface{}) SimVar
```
SimVarAccelerationBodyY Simvar args contain optional index and/or unit
#### func [SimVarAccelerationBodyZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3540) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyZ "Go to SimVarAccelerationBodyZ")
```
func SimVarAccelerationBodyZ(args ...interface{}) SimVar
```
SimVarAccelerationBodyZ Simvar args contain optional index and/or unit
#### func [SimVarAccelerationWorldX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3480) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldX "Go to SimVarAccelerationWorldX")
```
func SimVarAccelerationWorldX(args ...interface{}) SimVar
```
SimVarAccelerationWorldX Simvar args contain optional index and/or unit
#### func [SimVarAccelerationWorldY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3492) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldY "Go to SimVarAccelerationWorldY")
```
func SimVarAccelerationWorldY(args ...interface{}) SimVar
```
SimVarAccelerationWorldY Simvar args contain optional index and/or unit
#### func [SimVarAccelerationWorldZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3504) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldZ "Go to SimVarAccelerationWorldZ")
```
func SimVarAccelerationWorldZ(args ...interface{}) SimVar
```
SimVarAccelerationWorldZ Simvar args contain optional index and/or unit
#### func [SimVarAdfActiveFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4704) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfActiveFrequency "Go to SimVarAdfActiveFrequency")
```
func SimVarAdfActiveFrequency(args ...interface{}) SimVar
```
SimVarAdfActiveFrequency Simvar args contain optional index and/or unit
#### func [SimVarAdfAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5603) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfAvailable "Go to SimVarAdfAvailable")
```
func SimVarAdfAvailable(args ...interface{}) SimVar
```
SimVarAdfAvailable Simvar args contain optional index and/or unit
#### func [SimVarAdfCard](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4824) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfCard "Go to SimVarAdfCard")
```
func SimVarAdfCard(args ...interface{}) SimVar
```
SimVarAdfCard Simvar args contain optional index and/or unit
#### func [SimVarAdfExtFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5627) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfExtFrequency "Go to SimVarAdfExtFrequency")
```
func SimVarAdfExtFrequency(args ...interface{}) SimVar
```
SimVarAdfExtFrequency Simvar args contain optional index and/or unit
#### func [SimVarAdfFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5615) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfFrequency "Go to SimVarAdfFrequency")
```
func SimVarAdfFrequency(args ...interface{}) SimVar
```
SimVarAdfFrequency Simvar args contain optional index and/or unit
#### func [SimVarAdfIdent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5639) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfIdent "Go to SimVarAdfIdent")
```
func SimVarAdfIdent(args ...interface{}) SimVar
```
SimVarAdfIdent Simvar args contain optional index and/or unit
#### func [SimVarAdfLatlonalt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1002) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfLatlonalt "Go to SimVarAdfLatlonalt")
```
func SimVarAdfLatlonalt(args ...interface{}) SimVar
```
SimVarAdfLatlonalt Simvar args contain optional index and/or unit
#### func [SimVarAdfName](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5651) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfName "Go to SimVarAdfName")
```
func SimVarAdfName(args ...interface{}) SimVar
```
SimVarAdfName Simvar args contain optional index and/or unit
#### func [SimVarAdfRadial](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4728) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfRadial "Go to SimVarAdfRadial")
```
func SimVarAdfRadial(args ...interface{}) SimVar
```
SimVarAdfRadial Simvar args contain optional index and/or unit
#### func [SimVarAdfSignal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4740) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfSignal "Go to SimVarAdfSignal")
```
func SimVarAdfSignal(args ...interface{}) SimVar
```
SimVarAdfSignal Simvar args contain optional index and/or unit
#### func [SimVarAdfSound](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4368) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfSound "Go to SimVarAdfSound")
```
func SimVarAdfSound(args ...interface{}) SimVar
```
SimVarAdfSound Simvar args contain optional index and/or unit
#### func [SimVarAdfStandbyFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4716) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfStandbyFrequency "Go to SimVarAdfStandbyFrequency")
```
func SimVarAdfStandbyFrequency(args ...interface{}) SimVar
```
SimVarAdfStandbyFrequency Simvar args contain optional index and/or unit
#### func [SimVarAiCurrentWaypoint](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L786) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiCurrentWaypoint "Go to SimVarAiCurrentWaypoint")
```
func SimVarAiCurrentWaypoint(args ...interface{}) SimVar
```
SimVarAiCurrentWaypoint Simvar args contain optional index and/or unit
#### func [SimVarAiDesiredHeading](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L798) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiDesiredHeading "Go to SimVarAiDesiredHeading")
```
func SimVarAiDesiredHeading(args ...interface{}) SimVar
```
SimVarAiDesiredHeading Simvar args contain optional index and/or unit
#### func [SimVarAiDesiredSpeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L762) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiDesiredSpeed "Go to SimVarAiDesiredSpeed")
```
func SimVarAiDesiredSpeed(args ...interface{}) SimVar
```
SimVarAiDesiredSpeed Simvar args contain optional index and/or unit
#### func [SimVarAiGroundcruisespeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L822) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundcruisespeed "Go to SimVarAiGroundcruisespeed")
```
func SimVarAiGroundcruisespeed(args ...interface{}) SimVar
```
SimVarAiGroundcruisespeed Simvar args contain optional index and/or unit
#### func [SimVarAiGroundturnspeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L834) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundturnspeed "Go to SimVarAiGroundturnspeed")
```
func SimVarAiGroundturnspeed(args ...interface{}) SimVar
```
SimVarAiGroundturnspeed Simvar args contain optional index and/or unit
#### func [SimVarAiGroundturntime](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L810) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundturntime "Go to SimVarAiGroundturntime")
```
func SimVarAiGroundturntime(args ...interface{}) SimVar
```
SimVarAiGroundturntime Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficAssignedParking](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L894) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficAssignedParking "Go to SimVarAiTrafficAssignedParking")
```
func SimVarAiTrafficAssignedParking(args ...interface{}) SimVar
```
SimVarAiTrafficAssignedParking Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficAssignedRunway](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L882) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficAssignedRunway "Go to SimVarAiTrafficAssignedRunway")
```
func SimVarAiTrafficAssignedRunway(args ...interface{}) SimVar
```
SimVarAiTrafficAssignedRunway Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficCurrentAirport](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L870) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficCurrentAirport "Go to SimVarAiTrafficCurrentAirport")
```
func SimVarAiTrafficCurrentAirport(args ...interface{}) SimVar
```
SimVarAiTrafficCurrentAirport Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficEta](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L942) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficEta "Go to SimVarAiTrafficEta")
```
func SimVarAiTrafficEta(args ...interface{}) SimVar
```
SimVarAiTrafficEta Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficEtd](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L930) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficEtd "Go to SimVarAiTrafficEtd")
```
func SimVarAiTrafficEtd(args ...interface{}) SimVar
```
SimVarAiTrafficEtd Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficFromairport](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L906) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficFromairport "Go to SimVarAiTrafficFromairport")
```
func SimVarAiTrafficFromairport(args ...interface{}) SimVar
```
SimVarAiTrafficFromairport Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficIsifr](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L846) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficIsifr "Go to SimVarAiTrafficIsifr")
```
func SimVarAiTrafficIsifr(args ...interface{}) SimVar
```
SimVarAiTrafficIsifr Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L858) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficState "Go to SimVarAiTrafficState")
```
func SimVarAiTrafficState(args ...interface{}) SimVar
```
SimVarAiTrafficState Simvar args contain optional index and/or unit
#### func [SimVarAiTrafficToairport](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L918) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficToairport "Go to SimVarAiTrafficToairport")
```
func SimVarAiTrafficToairport(args ...interface{}) SimVar
```
SimVarAiTrafficToairport Simvar args contain optional index and/or unit
#### func [SimVarAiWaypointList](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L774) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiWaypointList "Go to SimVarAiWaypointList")
```
func SimVarAiWaypointList(args ...interface{}) SimVar
```
SimVarAiWaypointList Actually not supported args contain optional index and/or unit
#### func [SimVarAileronAverageDeflection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6611) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronAverageDeflection "Go to SimVarAileronAverageDeflection")
```
func SimVarAileronAverageDeflection(args ...interface{}) SimVar
```
SimVarAileronAverageDeflection Simvar args contain optional index and/or unit
#### func [SimVarAileronLeftDeflection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6563) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronLeftDeflection "Go to SimVarAileronLeftDeflection")
```
func SimVarAileronLeftDeflection(args ...interface{}) SimVar
```
SimVarAileronLeftDeflection Simvar args contain optional index and/or unit
#### func [SimVarAileronLeftDeflectionPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6575) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronLeftDeflectionPct "Go to SimVarAileronLeftDeflectionPct")
```
func SimVarAileronLeftDeflectionPct(args ...interface{}) SimVar
```
SimVarAileronLeftDeflectionPct Simvar args contain optional index and/or unit
#### func [SimVarAileronPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5843) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronPosition "Go to SimVarAileronPosition")
```
func SimVarAileronPosition(args ...interface{}) SimVar
```
SimVarAileronPosition Simvar args contain optional index and/or unit
#### func [SimVarAileronRightDeflection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6587) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronRightDeflection "Go to SimVarAileronRightDeflection")
```
func SimVarAileronRightDeflection(args ...interface{}) SimVar
```
SimVarAileronRightDeflection Simvar args contain optional index and/or unit
#### func [SimVarAileronRightDeflectionPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6599) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronRightDeflectionPct "Go to SimVarAileronRightDeflectionPct")
```
func SimVarAileronRightDeflectionPct(args ...interface{}) SimVar
```
SimVarAileronRightDeflectionPct Simvar args contain optional index and/or unit
#### func [SimVarAileronTrim](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6623) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronTrim "Go to SimVarAileronTrim")
```
func SimVarAileronTrim(args ...interface{}) SimVar
```
SimVarAileronTrim Simvar args contain optional index and/or unit
#### func [SimVarAileronTrimPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L558) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronTrimPct "Go to SimVarAileronTrimPct")
```
func SimVarAileronTrimPct(args ...interface{}) SimVar
```
SimVarAileronTrimPct Simvar args contain optional index and/or unit
#### func [SimVarAircraftWindX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7402) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindX "Go to SimVarAircraftWindX")
```
func SimVarAircraftWindX(args ...interface{}) SimVar
```
SimVarAircraftWindX Simvar args contain optional index and/or unit
#### func [SimVarAircraftWindY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7414) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindY "Go to SimVarAircraftWindY")
```
func SimVarAircraftWindY(args ...interface{}) SimVar
```
SimVarAircraftWindY Simvar args contain optional index and/or unit
#### func [SimVarAircraftWindZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7426) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindZ "Go to SimVarAircraftWindZ")
```
func SimVarAircraftWindZ(args ...interface{}) SimVar
```
SimVarAircraftWindZ Simvar args contain optional index and/or unit
#### func [SimVarAirspeedBarberPole](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3828) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedBarberPole "Go to SimVarAirspeedBarberPole")
```
func SimVarAirspeedBarberPole(args ...interface{}) SimVar
```
SimVarAirspeedBarberPole Simvar args contain optional index and/or unit
#### func [SimVarAirspeedIndicated](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3804) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedIndicated "Go to SimVarAirspeedIndicated")
```
func SimVarAirspeedIndicated(args ...interface{}) SimVar
```
SimVarAirspeedIndicated Simvar args contain optional index and/or unit
#### func [SimVarAirspeedMach](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3840) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedMach "Go to SimVarAirspeedMach")
```
func SimVarAirspeedMach(args ...interface{}) SimVar
```
SimVarAirspeedMach Simvar args contain optional index and/or unit
#### func [SimVarAirspeedSelectIndicatedOrTrue](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8542) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedSelectIndicatedOrTrue "Go to SimVarAirspeedSelectIndicatedOrTrue")
```
func SimVarAirspeedSelectIndicatedOrTrue(args ...interface{}) SimVar
```
SimVarAirspeedSelectIndicatedOrTrue Simvar args contain optional index and/or unit
#### func [SimVarAirspeedTrue](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3792) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedTrue "Go to SimVarAirspeedTrue")
```
func SimVarAirspeedTrue(args ...interface{}) SimVar
```
SimVarAirspeedTrue Simvar args contain optional index and/or unit
#### func [SimVarAirspeedTrueCalibrate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3816) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedTrueCalibrate "Go to SimVarAirspeedTrueCalibrate")
```
func SimVarAirspeedTrueCalibrate(args ...interface{}) SimVar
```
SimVarAirspeedTrueCalibrate Simvar args contain optional index and/or unit
#### func [SimVarAlternateStaticSourceOpen](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L546) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAlternateStaticSourceOpen "Go to SimVarAlternateStaticSourceOpen")
```
func SimVarAlternateStaticSourceOpen(args ...interface{}) SimVar
```
SimVarAlternateStaticSourceOpen Simvar args contain optional index and/or unit
#### func [SimVarAmbientDensity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7294) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientDensity "Go to SimVarAmbientDensity")
```
func SimVarAmbientDensity(args ...interface{}) SimVar
```
SimVarAmbientDensity Simvar args contain optional index and/or unit
#### func [SimVarAmbientInCloud](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7486) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientInCloud "Go to SimVarAmbientInCloud")
```
func SimVarAmbientInCloud(args ...interface{}) SimVar
```
SimVarAmbientInCloud Simvar args contain optional index and/or unit
#### func [SimVarAmbientPrecipState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7390) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientPrecipState "Go to SimVarAmbientPrecipState")
```
func SimVarAmbientPrecipState(args ...interface{}) SimVar
```
SimVarAmbientPrecipState Simvar args contain optional index and/or unit
#### func [SimVarAmbientPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7318) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientPressure "Go to SimVarAmbientPressure")
```
func SimVarAmbientPressure(args ...interface{}) SimVar
```
SimVarAmbientPressure Simvar args contain optional index and/or unit
#### func [SimVarAmbientTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7306) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientTemperature "Go to SimVarAmbientTemperature")
```
func SimVarAmbientTemperature(args ...interface{}) SimVar
```
SimVarAmbientTemperature Simvar args contain optional index and/or unit
#### func [SimVarAmbientVisibility](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7498) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientVisibility "Go to SimVarAmbientVisibility")
```
func SimVarAmbientVisibility(args ...interface{}) SimVar
```
SimVarAmbientVisibility Simvar args contain optional index and/or unit
#### func [SimVarAmbientWindDirection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7342) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindDirection "Go to SimVarAmbientWindDirection")
```
func SimVarAmbientWindDirection(args ...interface{}) SimVar
```
SimVarAmbientWindDirection Simvar args contain optional index and/or unit
#### func [SimVarAmbientWindVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7330) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindVelocity "Go to SimVarAmbientWindVelocity")
```
func SimVarAmbientWindVelocity(args ...interface{}) SimVar
```
SimVarAmbientWindVelocity Simvar args contain optional index and/or unit
#### func [SimVarAmbientWindX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7354) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindX "Go to SimVarAmbientWindX")
```
func SimVarAmbientWindX(args ...interface{}) SimVar
```
SimVarAmbientWindX Simvar args contain optional index and/or unit
#### func [SimVarAmbientWindY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7366) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindY "Go to SimVarAmbientWindY")
```
func SimVarAmbientWindY(args ...interface{}) SimVar
```
SimVarAmbientWindY Simvar args contain optional index and/or unit
#### func [SimVarAmbientWindZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7378) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindZ "Go to SimVarAmbientWindZ")
```
func SimVarAmbientWindZ(args ...interface{}) SimVar
```
SimVarAmbientWindZ Simvar args contain optional index and/or unit
#### func [SimVarAnemometerPctRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9476) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAnemometerPctRpm "Go to SimVarAnemometerPctRpm")
```
func SimVarAnemometerPctRpm(args ...interface{}) SimVar
```
SimVarAnemometerPctRpm Simvar args contain optional index and/or unit
#### func [SimVarAngleOfAttackIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4068) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAngleOfAttackIndicator "Go to SimVarAngleOfAttackIndicator")
```
func SimVarAngleOfAttackIndicator(args ...interface{}) SimVar
```
SimVarAngleOfAttackIndicator Simvar args contain optional index and/or unit
#### func [SimVarAntiskidBrakesActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7234) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAntiskidBrakesActive "Go to SimVarAntiskidBrakesActive")
```
func SimVarAntiskidBrakesActive(args ...interface{}) SimVar
```
SimVarAntiskidBrakesActive Simvar args contain optional index and/or unit
#### func [SimVarApplyHeatToSystems](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L990) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApplyHeatToSystems "Go to SimVarApplyHeatToSystems")
```
func SimVarApplyHeatToSystems(args ...interface{}) SimVar
```
SimVarApplyHeatToSystems Simvar args contain optional index and/or unit
#### func [SimVarApuGeneratorActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9702) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuGeneratorActive "Go to SimVarApuGeneratorActive")
```
func SimVarApuGeneratorActive(args ...interface{}) SimVar
```
SimVarApuGeneratorActive Simvar args contain optional index and/or unit
#### func [SimVarApuGeneratorSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9690) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuGeneratorSwitch "Go to SimVarApuGeneratorSwitch")
```
func SimVarApuGeneratorSwitch(args ...interface{}) SimVar
```
SimVarApuGeneratorSwitch Simvar args contain optional index and/or unit
#### func [SimVarApuOnFireDetected](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9714) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuOnFireDetected "Go to SimVarApuOnFireDetected")
```
func SimVarApuOnFireDetected(args ...interface{}) SimVar
```
SimVarApuOnFireDetected Simvar args contain optional index and/or unit
#### func [SimVarApuPctRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9654) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuPctRpm "Go to SimVarApuPctRpm")
```
func SimVarApuPctRpm(args ...interface{}) SimVar
```
SimVarApuPctRpm Simvar args contain optional index and/or unit
#### func [SimVarApuPctStarter](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9666) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuPctStarter "Go to SimVarApuPctStarter")
```
func SimVarApuPctStarter(args ...interface{}) SimVar
```
SimVarApuPctStarter Simvar args contain optional index and/or unit
#### func [SimVarApuVolts](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9678) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuVolts "Go to SimVarApuVolts")
```
func SimVarApuVolts(args ...interface{}) SimVar
```
SimVarApuVolts Simvar args contain optional index and/or unit
#### func [SimVarArtificialGroundElevation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9332) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarArtificialGroundElevation "Go to SimVarArtificialGroundElevation")
```
func SimVarArtificialGroundElevation(args ...interface{}) SimVar
```
SimVarArtificialGroundElevation Simvar args contain optional index and/or unit
#### func [SimVarAtcAirline](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9930) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcAirline "Go to SimVarAtcAirline")
```
func SimVarAtcAirline(args ...interface{}) SimVar
```
SimVarAtcAirline Simvar args contain optional index and/or unit
#### func [SimVarAtcFlightNumber](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9942) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcFlightNumber "Go to SimVarAtcFlightNumber")
```
func SimVarAtcFlightNumber(args ...interface{}) SimVar
```
SimVarAtcFlightNumber Simvar args contain optional index and/or unit
#### func [SimVarAtcHeavy](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8278) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcHeavy "Go to SimVarAtcHeavy")
```
func SimVarAtcHeavy(args ...interface{}) SimVar
```
SimVarAtcHeavy Simvar args contain optional index and/or unit
#### func [SimVarAtcId](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9918) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcId "Go to SimVarAtcId")
```
func SimVarAtcId(args ...interface{}) SimVar
```
SimVarAtcId Simvar args contain optional index and/or unit
#### func [SimVarAtcModel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9906) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcModel "Go to SimVarAtcModel")
```
func SimVarAtcModel(args ...interface{}) SimVar
```
SimVarAtcModel Simvar args contain optional index and/or unit
#### func [SimVarAtcSuggestedMinRwyLanding](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8422) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyLanding "Go to SimVarAtcSuggestedMinRwyLanding")
```
func SimVarAtcSuggestedMinRwyLanding(args ...interface{}) SimVar
```
SimVarAtcSuggestedMinRwyLanding Simvar args contain optional index and/or unit
#### func [SimVarAtcSuggestedMinRwyTakeoff](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8410) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyTakeoff "Go to SimVarAtcSuggestedMinRwyTakeoff")
```
func SimVarAtcSuggestedMinRwyTakeoff(args ...interface{}) SimVar
```
SimVarAtcSuggestedMinRwyTakeoff Simvar args contain optional index and/or unit
#### func [SimVarAtcType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9894) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcType "Go to SimVarAtcType")
```
func SimVarAtcType(args ...interface{}) SimVar
```
SimVarAtcType Simvar args contain optional index and/or unit
#### func [SimVarAttitudeBarsPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3972) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeBarsPosition "Go to SimVarAttitudeBarsPosition")
```
func SimVarAttitudeBarsPosition(args ...interface{}) SimVar
```
SimVarAttitudeBarsPosition Simvar args contain optional index and/or unit
#### func [SimVarAttitudeCage](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3984) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeCage "Go to SimVarAttitudeCage")
```
func SimVarAttitudeCage(args ...interface{}) SimVar
```
SimVarAttitudeCage Simvar args contain optional index and/or unit
#### func [SimVarAttitudeIndicatorBankDegrees](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3960) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeIndicatorBankDegrees "Go to SimVarAttitudeIndicatorBankDegrees")
```
func SimVarAttitudeIndicatorBankDegrees(args ...interface{}) SimVar
```
SimVarAttitudeIndicatorBankDegrees Simvar args contain optional index and/or unit
#### func [SimVarAttitudeIndicatorPitchDegrees](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3948) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeIndicatorPitchDegrees "Go to SimVarAttitudeIndicatorPitchDegrees")
```
func SimVarAttitudeIndicatorPitchDegrees(args ...interface{}) SimVar
```
SimVarAttitudeIndicatorPitchDegrees Simvar args contain optional index and/or unit
#### func [SimVarAutoBrakeSwitchCb](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6323) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutoBrakeSwitchCb "Go to SimVarAutoBrakeSwitchCb")
```
func SimVarAutoBrakeSwitchCb(args ...interface{}) SimVar
```
SimVarAutoBrakeSwitchCb Simvar args contain optional index and/or unit
#### func [SimVarAutoCoordination](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8290) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutoCoordination "Go to SimVarAutoCoordination")
```
func SimVarAutoCoordination(args ...interface{}) SimVar
```
SimVarAutoCoordination Simvar args contain optional index and/or unit
#### func [SimVarAutopilotAirspeedHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6971) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAirspeedHold "Go to SimVarAutopilotAirspeedHold")
```
func SimVarAutopilotAirspeedHold(args ...interface{}) SimVar
```
SimVarAutopilotAirspeedHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotAirspeedHoldVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6983) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAirspeedHoldVar "Go to SimVarAutopilotAirspeedHoldVar")
```
func SimVarAutopilotAirspeedHoldVar(args ...interface{}) SimVar
```
SimVarAutopilotAirspeedHoldVar Simvar args contain optional index and/or unit
#### func [SimVarAutopilotAltitudeLock](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6839) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAltitudeLock "Go to SimVarAutopilotAltitudeLock")
```
func SimVarAutopilotAltitudeLock(args ...interface{}) SimVar
```
SimVarAutopilotAltitudeLock Simvar args contain optional index and/or unit
#### func [SimVarAutopilotAltitudeLockVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6851) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAltitudeLockVar "Go to SimVarAutopilotAltitudeLockVar")
```
func SimVarAutopilotAltitudeLockVar(args ...interface{}) SimVar
```
SimVarAutopilotAltitudeLockVar Simvar args contain optional index and/or unit
#### func [SimVarAutopilotApproachHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6899) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotApproachHold "Go to SimVarAutopilotApproachHold")
```
func SimVarAutopilotApproachHold(args ...interface{}) SimVar
```
SimVarAutopilotApproachHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotAttitudeHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6863) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAttitudeHold "Go to SimVarAutopilotAttitudeHold")
```
func SimVarAutopilotAttitudeHold(args ...interface{}) SimVar
```
SimVarAutopilotAttitudeHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6767) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAvailable "Go to SimVarAutopilotAvailable")
```
func SimVarAutopilotAvailable(args ...interface{}) SimVar
```
SimVarAutopilotAvailable Simvar args contain optional index and/or unit
#### func [SimVarAutopilotBackcourseHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6911) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotBackcourseHold "Go to SimVarAutopilotBackcourseHold")
```
func SimVarAutopilotBackcourseHold(args ...interface{}) SimVar
```
SimVarAutopilotBackcourseHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotFlightDirectorActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6935) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorActive "Go to SimVarAutopilotFlightDirectorActive")
```
func SimVarAutopilotFlightDirectorActive(args ...interface{}) SimVar
```
SimVarAutopilotFlightDirectorActive Simvar args contain optional index and/or unit
#### func [SimVarAutopilotFlightDirectorBank](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6959) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorBank "Go to SimVarAutopilotFlightDirectorBank")
```
func SimVarAutopilotFlightDirectorBank(args ...interface{}) SimVar
```
SimVarAutopilotFlightDirectorBank Simvar args contain optional index and/or unit
#### func [SimVarAutopilotFlightDirectorPitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6947) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorPitch "Go to SimVarAutopilotFlightDirectorPitch")
```
func SimVarAutopilotFlightDirectorPitch(args ...interface{}) SimVar
```
SimVarAutopilotFlightDirectorPitch Simvar args contain optional index and/or unit
#### func [SimVarAutopilotGlideslopeHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6875) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotGlideslopeHold "Go to SimVarAutopilotGlideslopeHold")
```
func SimVarAutopilotGlideslopeHold(args ...interface{}) SimVar
```
SimVarAutopilotGlideslopeHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotHeadingLock](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6815) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotHeadingLock "Go to SimVarAutopilotHeadingLock")
```
func SimVarAutopilotHeadingLock(args ...interface{}) SimVar
```
SimVarAutopilotHeadingLock Simvar args contain optional index and/or unit
#### func [SimVarAutopilotHeadingLockDir](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6827) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotHeadingLockDir "Go to SimVarAutopilotHeadingLockDir")
```
func SimVarAutopilotHeadingLockDir(args ...interface{}) SimVar
```
SimVarAutopilotHeadingLockDir Simvar args contain optional index and/or unit
#### func [SimVarAutopilotMachHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6995) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMachHold "Go to SimVarAutopilotMachHold")
```
func SimVarAutopilotMachHold(args ...interface{}) SimVar
```
SimVarAutopilotMachHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotMachHoldVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7007) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMachHoldVar "Go to SimVarAutopilotMachHoldVar")
```
func SimVarAutopilotMachHoldVar(args ...interface{}) SimVar
```
SimVarAutopilotMachHoldVar Simvar args contain optional index and/or unit
#### func [SimVarAutopilotMaster](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6779) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMaster "Go to SimVarAutopilotMaster")
```
func SimVarAutopilotMaster(args ...interface{}) SimVar
```
SimVarAutopilotMaster Simvar args contain optional index and/or unit
#### func [SimVarAutopilotMaxBank](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7114) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMaxBank "Go to SimVarAutopilotMaxBank")
```
func SimVarAutopilotMaxBank(args ...interface{}) SimVar
```
SimVarAutopilotMaxBank Simvar args contain optional index and/or unit
#### func [SimVarAutopilotNav1Lock](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7078) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotNav1Lock "Go to SimVarAutopilotNav1Lock")
```
func SimVarAutopilotNav1Lock(args ...interface{}) SimVar
```
SimVarAutopilotNav1Lock Simvar
#### func [SimVarAutopilotNavSelected](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6791) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotNavSelected "Go to SimVarAutopilotNavSelected")
```
func SimVarAutopilotNavSelected(args ...interface{}) SimVar
```
SimVarAutopilotNavSelected Simvar args contain optional index and/or unit
#### func [SimVarAutopilotPitchHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L246) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotPitchHold "Go to SimVarAutopilotPitchHold")
```
func SimVarAutopilotPitchHold(args ...interface{}) SimVar
```
SimVarAutopilotPitchHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotPitchHoldRef](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6887) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotPitchHoldRef "Go to SimVarAutopilotPitchHoldRef")
```
func SimVarAutopilotPitchHoldRef(args ...interface{}) SimVar
```
SimVarAutopilotPitchHoldRef Simvar args contain optional index and/or unit
#### func [SimVarAutopilotRpmHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7102) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotRpmHold "Go to SimVarAutopilotRpmHold")
```
func SimVarAutopilotRpmHold(args ...interface{}) SimVar
```
SimVarAutopilotRpmHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotRpmHoldVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7031) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotRpmHoldVar "Go to SimVarAutopilotRpmHoldVar")
```
func SimVarAutopilotRpmHoldVar(args ...interface{}) SimVar
```
SimVarAutopilotRpmHoldVar Simvar args contain optional index and/or unit
#### func [SimVarAutopilotTakeoffPowerActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7055) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotTakeoffPowerActive "Go to SimVarAutopilotTakeoffPowerActive")
```
func SimVarAutopilotTakeoffPowerActive(args ...interface{}) SimVar
```
SimVarAutopilotTakeoffPowerActive Simvar args contain optional index and/or unit
#### func [SimVarAutopilotThrottleArm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7043) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotThrottleArm "Go to SimVarAutopilotThrottleArm")
```
func SimVarAutopilotThrottleArm(args ...interface{}) SimVar
```
SimVarAutopilotThrottleArm Simvar args contain optional index and/or unit
#### func [SimVarAutopilotVerticalHold](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7090) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotVerticalHold "Go to SimVarAutopilotVerticalHold")
```
func SimVarAutopilotVerticalHold(args ...interface{}) SimVar
```
SimVarAutopilotVerticalHold Simvar args contain optional index and/or unit
#### func [SimVarAutopilotVerticalHoldVar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6923) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotVerticalHoldVar "Go to SimVarAutopilotVerticalHoldVar")
```
func SimVarAutopilotVerticalHoldVar(args ...interface{}) SimVar
```
SimVarAutopilotVerticalHoldVar Simvar args contain optional index and/or unit
#### func [SimVarAutopilotWingLeveler](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6803) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotWingLeveler "Go to SimVarAutopilotWingLeveler")
```
func SimVarAutopilotWingLeveler(args ...interface{}) SimVar
```
SimVarAutopilotWingLeveler Simvar args contain optional index and/or unit
#### func [SimVarAutopilotYawDamper](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7019) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotYawDamper "Go to SimVarAutopilotYawDamper")
```
func SimVarAutopilotYawDamper(args ...interface{}) SimVar
```
SimVarAutopilotYawDamper Simvar args contain optional index and/or unit
#### func [SimVarAutothrottleActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7067) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutothrottleActive "Go to SimVarAutothrottleActive")
```
func SimVarAutothrottleActive(args ...interface{}) SimVar
```
SimVarAutothrottleActive Simvar args contain optional index and/or unit
#### func [SimVarAuxWheelRotationAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7198) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAuxWheelRotationAngle "Go to SimVarAuxWheelRotationAngle")
```
func SimVarAuxWheelRotationAngle(args ...interface{}) SimVar
```
SimVarAuxWheelRotationAngle Simvar args contain optional index and/or unit
#### func [SimVarAuxWheelRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7138) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAuxWheelRpm "Go to SimVarAuxWheelRpm")
```
func SimVarAuxWheelRpm(args ...interface{}) SimVar
```
SimVarAuxWheelRpm Simvar args contain optional index and/or unit
#### func [SimVarAvionicsMasterSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4332) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAvionicsMasterSwitch "Go to SimVarAvionicsMasterSwitch")
```
func SimVarAvionicsMasterSwitch(args ...interface{}) SimVar
```
SimVarAvionicsMasterSwitch Simvar args contain optional index and/or unit
#### func [SimVarBarberPoleMach](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3900) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBarberPoleMach "Go to SimVarBarberPoleMach")
```
func SimVarBarberPoleMach(args ...interface{}) SimVar
```
SimVarBarberPoleMach Simvar args contain optional index and/or unit
#### func [SimVarBarometerPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7438) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBarometerPressure "Go to SimVarBarometerPressure")
```
func SimVarBarometerPressure(args ...interface{}) SimVar
```
SimVarBarometerPressure Simvar args contain optional index and/or unit
#### func [SimVarBetaDot](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8732) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBetaDot "Go to SimVarBetaDot")
```
func SimVarBetaDot(args ...interface{}) SimVar
```
SimVarBetaDot Simvar args contain optional index and/or unit
#### func [SimVarBlastShieldPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L306) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBlastShieldPosition "Go to SimVarBlastShieldPosition")
```
func SimVarBlastShieldPosition(args ...interface{}) SimVar
```
SimVarBlastShieldPosition Simvar args contain optional index and/or unit
#### func [SimVarBleedAirSourceControl](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9152) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBleedAirSourceControl "Go to SimVarBleedAirSourceControl")
```
func SimVarBleedAirSourceControl(args ...interface{}) SimVar
```
SimVarBleedAirSourceControl Simvar args contain optional index and/or unit
#### func [SimVarBrakeDependentHydraulicPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8684) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeDependentHydraulicPressure "Go to SimVarBrakeDependentHydraulicPressure")
```
func SimVarBrakeDependentHydraulicPressure(args ...interface{}) SimVar
```
SimVarBrakeDependentHydraulicPressure Simvar args contain optional index and/or unit
#### func [SimVarBrakeIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5915) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeIndicator "Go to SimVarBrakeIndicator")
```
func SimVarBrakeIndicator(args ...interface{}) SimVar
```
SimVarBrakeIndicator Simvar args contain optional index and/or unit
#### func [SimVarBrakeLeftPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5891) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeLeftPosition "Go to SimVarBrakeLeftPosition")
```
func SimVarBrakeLeftPosition(args ...interface{}) SimVar
```
SimVarBrakeLeftPosition Simvar args contain optional index and/or unit
#### func [SimVarBrakeParkingIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5939) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeParkingIndicator "Go to SimVarBrakeParkingIndicator")
```
func SimVarBrakeParkingIndicator(args ...interface{}) SimVar
```
SimVarBrakeParkingIndicator Simvar args contain optional index and/or unit
#### func [SimVarBrakeParkingPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5927) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeParkingPosition "Go to SimVarBrakeParkingPosition")
```
func SimVarBrakeParkingPosition(args ...interface{}) SimVar
```
SimVarBrakeParkingPosition Simvar args contain optional index and/or unit
#### func [SimVarBrakeRightPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5903) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeRightPosition "Go to SimVarBrakeRightPosition")
```
func SimVarBrakeRightPosition(args ...interface{}) SimVar
```
SimVarBrakeRightPosition Simvar args contain optional index and/or unit
#### func [SimVarCabinNoSmokingAlertSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9810) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCabinNoSmokingAlertSwitch "Go to SimVarCabinNoSmokingAlertSwitch")
```
func SimVarCabinNoSmokingAlertSwitch(args ...interface{}) SimVar
```
SimVarCabinNoSmokingAlertSwitch Simvar args contain optional index and/or unit
#### func [SimVarCabinSeatbeltsAlertSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9822) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCabinSeatbeltsAlertSwitch "Go to SimVarCabinSeatbeltsAlertSwitch")
```
func SimVarCabinSeatbeltsAlertSwitch(args ...interface{}) SimVar
```
SimVarCabinSeatbeltsAlertSwitch Simvar args contain optional index and/or unit
#### func [SimVarCanopyOpen](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7702) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCanopyOpen "Go to SimVarCanopyOpen")
```
func SimVarCanopyOpen(args ...interface{}) SimVar
```
SimVarCanopyOpen Simvar args contain optional index and/or unit
#### func [SimVarCarbHeatAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7762) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCarbHeatAvailable "Go to SimVarCarbHeatAvailable")
```
func SimVarCarbHeatAvailable(args ...interface{}) SimVar
```
SimVarCarbHeatAvailable Simvar args contain optional index and/or unit
#### func [SimVarCategory](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8494) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCategory "Go to SimVarCategory")
```
func SimVarCategory(args ...interface{}) SimVar
```
SimVarCategory Simvar args contain optional index and/or unit
#### func [SimVarCenterWheelRotationAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7162) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCenterWheelRotationAngle "Go to SimVarCenterWheelRotationAngle")
```
func SimVarCenterWheelRotationAngle(args ...interface{}) SimVar
```
SimVarCenterWheelRotationAngle Simvar args contain optional index and/or unit
#### func [SimVarCenterWheelRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6731) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCenterWheelRpm "Go to SimVarCenterWheelRpm")
```
func SimVarCenterWheelRpm(args ...interface{}) SimVar
```
SimVarCenterWheelRpm Simvar args contain optional index and/or unit
#### func [SimVarCgAftLimit](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8780) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgAftLimit "Go to SimVarCgAftLimit")
```
func SimVarCgAftLimit(args ...interface{}) SimVar
```
SimVarCgAftLimit Simvar args contain optional index and/or unit
#### func [SimVarCgFwdLimit](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8792) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgFwdLimit "Go to SimVarCgFwdLimit")
```
func SimVarCgFwdLimit(args ...interface{}) SimVar
```
SimVarCgFwdLimit Simvar args contain optional index and/or unit
#### func [SimVarCgMaxMach](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8804) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgMaxMach "Go to SimVarCgMaxMach")
```
func SimVarCgMaxMach(args ...interface{}) SimVar
```
SimVarCgMaxMach Simvar args contain optional index and/or unit
#### func [SimVarCgMinMach](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8816) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgMinMach "Go to SimVarCgMinMach")
```
func SimVarCgMinMach(args ...interface{}) SimVar
```
SimVarCgMinMach Simvar args contain optional index and/or unit
#### func [SimVarCgPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8362) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgPercent "Go to SimVarCgPercent")
```
func SimVarCgPercent(args ...interface{}) SimVar
```
SimVarCgPercent Simvar args contain optional index and/or unit
#### func [SimVarCgPercentLateral](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8374) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgPercentLateral "Go to SimVarCgPercentLateral")
```
func SimVarCgPercentLateral(args ...interface{}) SimVar
```
SimVarCgPercentLateral Simvar args contain optional index and/or unit
#### func [SimVarCircuitAutoBrakesOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8098) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutoBrakesOn "Go to SimVarCircuitAutoBrakesOn")
```
func SimVarCircuitAutoBrakesOn(args ...interface{}) SimVar
```
SimVarCircuitAutoBrakesOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitAutoFeatherOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8086) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutoFeatherOn "Go to SimVarCircuitAutoFeatherOn")
```
func SimVarCircuitAutoFeatherOn(args ...interface{}) SimVar
```
SimVarCircuitAutoFeatherOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitAutopilotOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8038) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutopilotOn "Go to SimVarCircuitAutopilotOn")
```
func SimVarCircuitAutopilotOn(args ...interface{}) SimVar
```
SimVarCircuitAutopilotOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitAvionicsOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8050) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAvionicsOn "Go to SimVarCircuitAvionicsOn")
```
func SimVarCircuitAvionicsOn(args ...interface{}) SimVar
```
SimVarCircuitAvionicsOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitFlapMotorOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8014) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitFlapMotorOn "Go to SimVarCircuitFlapMotorOn")
```
func SimVarCircuitFlapMotorOn(args ...interface{}) SimVar
```
SimVarCircuitFlapMotorOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitGearMotorOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8026) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGearMotorOn "Go to SimVarCircuitGearMotorOn")
```
func SimVarCircuitGearMotorOn(args ...interface{}) SimVar
```
SimVarCircuitGearMotorOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitGearWarningOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8134) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGearWarningOn "Go to SimVarCircuitGearWarningOn")
```
func SimVarCircuitGearWarningOn(args ...interface{}) SimVar
```
SimVarCircuitGearWarningOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitGeneralPanelOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8002) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGeneralPanelOn "Go to SimVarCircuitGeneralPanelOn")
```
func SimVarCircuitGeneralPanelOn(args ...interface{}) SimVar
```
SimVarCircuitGeneralPanelOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitHydraulicPumpOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8146) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitHydraulicPumpOn "Go to SimVarCircuitHydraulicPumpOn")
```
func SimVarCircuitHydraulicPumpOn(args ...interface{}) SimVar
```
SimVarCircuitHydraulicPumpOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitMarkerBeaconOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8122) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitMarkerBeaconOn "Go to SimVarCircuitMarkerBeaconOn")
```
func SimVarCircuitMarkerBeaconOn(args ...interface{}) SimVar
```
SimVarCircuitMarkerBeaconOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitPitotHeatOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8062) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitPitotHeatOn "Go to SimVarCircuitPitotHeatOn")
```
func SimVarCircuitPitotHeatOn(args ...interface{}) SimVar
```
SimVarCircuitPitotHeatOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitPropSyncOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8074) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitPropSyncOn "Go to SimVarCircuitPropSyncOn")
```
func SimVarCircuitPropSyncOn(args ...interface{}) SimVar
```
SimVarCircuitPropSyncOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitStandyVacuumOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8110) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitStandyVacuumOn "Go to SimVarCircuitStandyVacuumOn")
```
func SimVarCircuitStandyVacuumOn(args ...interface{}) SimVar
```
SimVarCircuitStandyVacuumOn Simvar args contain optional index and/or unit
#### func [SimVarComActiveFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4416) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComActiveFrequency "Go to SimVarComActiveFrequency")
```
func SimVarComActiveFrequency(args ...interface{}) SimVar
```
SimVarComActiveFrequency Simvar args contain optional index and/or unit
#### func [SimVarComAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5567) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComAvailable "Go to SimVarComAvailable")
```
func SimVarComAvailable(args ...interface{}) SimVar
```
SimVarComAvailable Simvar args contain optional index and/or unit
#### func [SimVarComReceiveAll](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5555) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComReceiveAll "Go to SimVarComReceiveAll")
```
func SimVarComReceiveAll(args ...interface{}) SimVar
```
SimVarComReceiveAll Simvar args contain optional index and/or unit
#### func [SimVarComRecieveAll](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4404) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComRecieveAll "Go to SimVarComRecieveAll")
```
func SimVarComRecieveAll(args ...interface{}) SimVar
```
SimVarComRecieveAll Simvar args contain optional index and/or unit
#### func [SimVarComStandbyFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4428) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStandbyFrequency "Go to SimVarComStandbyFrequency")
```
func SimVarComStandbyFrequency(args ...interface{}) SimVar
```
SimVarComStandbyFrequency Simvar args contain optional index and/or unit
#### func [SimVarComStatus](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4440) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStatus "Go to SimVarComStatus")
```
func SimVarComStatus(args ...interface{}) SimVar
```
SimVarComStatus Simvar args contain optional index and/or unit
#### func [SimVarComTest](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5579) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComTest "Go to SimVarComTest")
```
func SimVarComTest(args ...interface{}) SimVar
```
SimVarComTest Simvar args contain optional index and/or unit
#### func [SimVarComTransmit](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4392) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComTransmit "Go to SimVarComTransmit")
```
func SimVarComTransmit(args ...interface{}) SimVar
```
SimVarComTransmit Simvar args contain optional index and/or unit
#### func [SimVarConcordeNoseAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9212) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeNoseAngle "Go to SimVarConcordeNoseAngle")
```
func SimVarConcordeNoseAngle(args ...interface{}) SimVar
```
SimVarConcordeNoseAngle Simvar args contain optional index and/or unit
#### func [SimVarConcordeVisorNoseHandle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9188) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorNoseHandle "Go to SimVarConcordeVisorNoseHandle")
```
func SimVarConcordeVisorNoseHandle(args ...interface{}) SimVar
```
SimVarConcordeVisorNoseHandle Simvar args contain optional index and/or unit
#### func [SimVarConcordeVisorPositionPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9200) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorPositionPercent "Go to SimVarConcordeVisorPositionPercent")
```
func SimVarConcordeVisorPositionPercent(args ...interface{}) SimVar
```
SimVarConcordeVisorPositionPercent Simvar args contain optional index and/or unit
#### func [SimVarCrashFlag](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9618) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCrashFlag "Go to SimVarCrashFlag")
```
func SimVarCrashFlag(args ...interface{}) SimVar
```
SimVarCrashFlag Simvar args contain optional index and/or unit
#### func [SimVarCrashSequence](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9606) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCrashSequence "Go to SimVarCrashSequence")
```
func SimVarCrashSequence(args ...interface{}) SimVar
```
SimVarCrashSequence Simvar args contain optional index and/or unit
#### func [SimVarDecisionAltitudeMsl](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8912) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDecisionAltitudeMsl "Go to SimVarDecisionAltitudeMsl")
```
func SimVarDecisionAltitudeMsl(args ...interface{}) SimVar
```
SimVarDecisionAltitudeMsl Simvar args contain optional index and/or unit
#### func [SimVarDecisionHeight](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8900) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDecisionHeight "Go to SimVarDecisionHeight")
```
func SimVarDecisionHeight(args ...interface{}) SimVar
```
SimVarDecisionHeight Simvar args contain optional index and/or unit
#### func [SimVarDeltaHeadingRate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4044) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDeltaHeadingRate "Go to SimVarDeltaHeadingRate")
```
func SimVarDeltaHeadingRate(args ...interface{}) SimVar
```
SimVarDeltaHeadingRate Simvar args contain optional index and/or unit
#### func [SimVarDesignSpeedVc](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8326) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVc "Go to SimVarDesignSpeedVc")
```
func SimVarDesignSpeedVc(args ...interface{}) SimVar
```
SimVarDesignSpeedVc Simvar args contain optional index and/or unit
#### func [SimVarDesignSpeedVs0](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8577) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVs0 "Go to SimVarDesignSpeedVs0")
```
func SimVarDesignSpeedVs0(args ...interface{}) SimVar
```
SimVarDesignSpeedVs0 Simvar
#### func [SimVarDesignSpeedVs1](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8588) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVs1 "Go to SimVarDesignSpeedVs1")
```
func SimVarDesignSpeedVs1(args ...interface{}) SimVar
```
SimVarDesignSpeedVs1 Simvar
#### func [SimVarDiskBankAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9512) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskBankAngle "Go to SimVarDiskBankAngle")
```
func SimVarDiskBankAngle(args ...interface{}) SimVar
```
SimVarDiskBankAngle Simvar args contain optional index and/or unit
#### func [SimVarDiskBankPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9536) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskBankPct "Go to SimVarDiskBankPct")
```
func SimVarDiskBankPct(args ...interface{}) SimVar
```
SimVarDiskBankPct Simvar args contain optional index and/or unit
#### func [SimVarDiskConingPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9548) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskConingPct "Go to SimVarDiskConingPct")
```
func SimVarDiskConingPct(args ...interface{}) SimVar
```
SimVarDiskConingPct Simvar args contain optional index and/or unit
#### func [SimVarDiskPitchAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9500) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskPitchAngle "Go to SimVarDiskPitchAngle")
```
func SimVarDiskPitchAngle(args ...interface{}) SimVar
```
SimVarDiskPitchAngle Simvar args contain optional index and/or unit
#### func [SimVarDiskPitchPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9524) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskPitchPct "Go to SimVarDiskPitchPct")
```
func SimVarDiskPitchPct(args ...interface{}) SimVar
```
SimVarDiskPitchPct Simvar args contain optional index and/or unit
#### func [SimVarDmeSound](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4356) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDmeSound "Go to SimVarDmeSound")
```
func SimVarDmeSound(args ...interface{}) SimVar
```
SimVarDmeSound Simvar args contain optional index and/or unit
#### func [SimVarDroppableObjectsCount](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L966) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsCount "Go to SimVarDroppableObjectsCount")
```
func SimVarDroppableObjectsCount(args ...interface{}) SimVar
```
SimVarDroppableObjectsCount Simvar args contain optional index and/or unit
#### func [SimVarDroppableObjectsType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L954) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsType "Go to SimVarDroppableObjectsType")
```
func SimVarDroppableObjectsType(args ...interface{}) SimVar
```
SimVarDroppableObjectsType Simvar args contain optional index and/or unit
#### func [SimVarDroppableObjectsUiName](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9128) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsUiName "Go to SimVarDroppableObjectsUiName")
```
func SimVarDroppableObjectsUiName(args ...interface{}) SimVar
```
SimVarDroppableObjectsUiName Simvar args contain optional index and/or unit
#### func [SimVarDynamicPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8518) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDynamicPressure "Go to SimVarDynamicPressure")
```
func SimVarDynamicPressure(args ...interface{}) SimVar
```
SimVarDynamicPressure Simvar args contain optional index and/or unit
#### func [SimVarElectricalAvionicsBusAmps](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7918) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalAvionicsBusAmps "Go to SimVarElectricalAvionicsBusAmps")
```
func SimVarElectricalAvionicsBusAmps(args ...interface{}) SimVar
```
SimVarElectricalAvionicsBusAmps Simvar args contain optional index and/or unit
#### func [SimVarElectricalAvionicsBusVoltage](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7906) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalAvionicsBusVoltage "Go to SimVarElectricalAvionicsBusVoltage")
```
func SimVarElectricalAvionicsBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalAvionicsBusVoltage Simvar args contain optional index and/or unit
#### func [SimVarElectricalBatteryBusAmps](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7966) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryBusAmps "Go to SimVarElectricalBatteryBusAmps")
```
func SimVarElectricalBatteryBusAmps(args ...interface{}) SimVar
```
SimVarElectricalBatteryBusAmps Simvar args contain optional index and/or unit
#### func [SimVarElectricalBatteryBusVoltage](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7954) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryBusVoltage "Go to SimVarElectricalBatteryBusVoltage")
```
func SimVarElectricalBatteryBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalBatteryBusVoltage Simvar args contain optional index and/or unit
#### func [SimVarElectricalBatteryLoad](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7858) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryLoad "Go to SimVarElectricalBatteryLoad")
```
func SimVarElectricalBatteryLoad(args ...interface{}) SimVar
```
SimVarElectricalBatteryLoad Simvar args contain optional index and/or unit
#### func [SimVarElectricalBatteryVoltage](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7870) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryVoltage "Go to SimVarElectricalBatteryVoltage")
```
func SimVarElectricalBatteryVoltage(args ...interface{}) SimVar
```
SimVarElectricalBatteryVoltage Simvar args contain optional index and/or unit
#### func [SimVarElectricalGenaltBusAmps](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7990) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalGenaltBusAmps "Go to SimVarElectricalGenaltBusAmps")
```
func SimVarElectricalGenaltBusAmps(args ...interface{}) SimVar
```
SimVarElectricalGenaltBusAmps Simvar args contain optional index and/or unit
#### func [SimVarElectricalGenaltBusVoltage](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7978) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalGenaltBusVoltage "Go to SimVarElectricalGenaltBusVoltage")
```
func SimVarElectricalGenaltBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalGenaltBusVoltage Simvar args contain optional index and/or unit
#### func [SimVarElectricalHotBatteryBusAmps](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7942) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalHotBatteryBusAmps "Go to SimVarElectricalHotBatteryBusAmps")
```
func SimVarElectricalHotBatteryBusAmps(args ...interface{}) SimVar
```
SimVarElectricalHotBatteryBusAmps Simvar args contain optional index and/or unit
#### func [SimVarElectricalHotBatteryBusVoltage](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7930) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalHotBatteryBusVoltage "Go to SimVarElectricalHotBatteryBusVoltage")
```
func SimVarElectricalHotBatteryBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalHotBatteryBusVoltage Simvar args contain optional index and/or unit
#### func [SimVarElectricalMainBusAmps](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7894) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusAmps "Go to SimVarElectricalMainBusAmps")
```
func SimVarElectricalMainBusAmps(args ...interface{}) SimVar
```
SimVarElectricalMainBusAmps Simvar args contain optional index and/or unit
#### func [SimVarElectricalMainBusVoltage](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7882) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusVoltage "Go to SimVarElectricalMainBusVoltage")
```
func SimVarElectricalMainBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalMainBusVoltage Simvar args contain optional index and/or unit
#### func [SimVarElectricalMasterBattery](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7834) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMasterBattery "Go to SimVarElectricalMasterBattery")
```
func SimVarElectricalMasterBattery(args ...interface{}) SimVar
```
SimVarElectricalMasterBattery Simvar args contain optional index and/or unit
#### func [SimVarElectricalOldChargingAmps](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9164) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalOldChargingAmps "Go to SimVarElectricalOldChargingAmps")
```
func SimVarElectricalOldChargingAmps(args ...interface{}) SimVar
```
SimVarElectricalOldChargingAmps Simvar args contain optional index and/or unit
#### func [SimVarElectricalTotalLoadAmps](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7846) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalTotalLoadAmps "Go to SimVarElectricalTotalLoadAmps")
```
func SimVarElectricalTotalLoadAmps(args ...interface{}) SimVar
```
SimVarElectricalTotalLoadAmps Simvar args contain optional index and/or unit
#### func [SimVarElevatorDeflection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6347) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorDeflection "Go to SimVarElevatorDeflection")
```
func SimVarElevatorDeflection(args ...interface{}) SimVar
```
SimVarElevatorDeflection Simvar args contain optional index and/or unit
#### func [SimVarElevatorDeflectionPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6359) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorDeflectionPct "Go to SimVarElevatorDeflectionPct")
```
func SimVarElevatorDeflectionPct(args ...interface{}) SimVar
```
SimVarElevatorDeflectionPct Simvar args contain optional index and/or unit
#### func [SimVarElevatorPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5831) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorPosition "Go to SimVarElevatorPosition")
```
func SimVarElevatorPosition(args ...interface{}) SimVar
```
SimVarElevatorPosition Simvar args contain optional index and/or unit
#### func [SimVarElevatorTrimIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5867) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimIndicator "Go to SimVarElevatorTrimIndicator")
```
func SimVarElevatorTrimIndicator(args ...interface{}) SimVar
```
SimVarElevatorTrimIndicator Simvar args contain optional index and/or unit
#### func [SimVarElevatorTrimPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5879) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimPct "Go to SimVarElevatorTrimPct")
```
func SimVarElevatorTrimPct(args ...interface{}) SimVar
```
SimVarElevatorTrimPct Simvar args contain optional index and/or unit
#### func [SimVarElevatorTrimPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5855) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimPosition "Go to SimVarElevatorTrimPosition")
```
func SimVarElevatorTrimPosition(args ...interface{}) SimVar
```
SimVarElevatorTrimPosition Simvar args contain optional index and/or unit
#### func [SimVarElevonDeflection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8840) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevonDeflection "Go to SimVarElevonDeflection")
```
func SimVarElevonDeflection(args ...interface{}) SimVar
```
SimVarElevonDeflection Simvar args contain optional index and/or unit
#### func [SimVarEmptyWeight](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8230) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeight "Go to SimVarEmptyWeight")
```
func SimVarEmptyWeight(args ...interface{}) SimVar
```
SimVarEmptyWeight Simvar args contain optional index and/or unit
#### func [SimVarEmptyWeightCrossCoupledMoi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8960) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightCrossCoupledMoi "Go to SimVarEmptyWeightCrossCoupledMoi")
```
func SimVarEmptyWeightCrossCoupledMoi(args ...interface{}) SimVar
```
SimVarEmptyWeightCrossCoupledMoi Simvar args contain optional index and/or unit
#### func [SimVarEmptyWeightPitchMoi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8924) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightPitchMoi "Go to SimVarEmptyWeightPitchMoi")
```
func SimVarEmptyWeightPitchMoi(args ...interface{}) SimVar
```
SimVarEmptyWeightPitchMoi Simvar args contain optional index and/or unit
#### func [SimVarEmptyWeightRollMoi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8936) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightRollMoi "Go to SimVarEmptyWeightRollMoi")
```
func SimVarEmptyWeightRollMoi(args ...interface{}) SimVar
```
SimVarEmptyWeightRollMoi Simvar args contain optional index and/or unit
#### func [SimVarEmptyWeightYawMoi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8948) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightYawMoi "Go to SimVarEmptyWeightYawMoi")
```
func SimVarEmptyWeightYawMoi(args ...interface{}) SimVar
```
SimVarEmptyWeightYawMoi Simvar args contain optional index and/or unit
#### func [SimVarEngAntiIce](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2388) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngAntiIce "Go to SimVarEngAntiIce")
```
func SimVarEngAntiIce(args ...interface{}) SimVar
```
SimVarEngAntiIce Simvar args contain optional index and/or unit
#### func [SimVarEngCombustion](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2330) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngCombustion "Go to SimVarEngCombustion")
```
func SimVarEngCombustion(args ...interface{}) SimVar
```
SimVarEngCombustion Simvar args contain optional index and/or unit
#### func [SimVarEngCylinderHeadTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2436) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngCylinderHeadTemperature "Go to SimVarEngCylinderHeadTemperature")
```
func SimVarEngCylinderHeadTemperature(args ...interface{}) SimVar
```
SimVarEngCylinderHeadTemperature Simvar args contain optional index and/or unit
#### func [SimVarEngElectricalLoad](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2580) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngElectricalLoad "Go to SimVarEngElectricalLoad")
```
func SimVarEngElectricalLoad(args ...interface{}) SimVar
```
SimVarEngElectricalLoad Simvar args contain optional index and/or unit
#### func [SimVarEngExhaustGasTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2412) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngExhaustGasTemperature "Go to SimVarEngExhaustGasTemperature")
```
func SimVarEngExhaustGasTemperature(args ...interface{}) SimVar
```
SimVarEngExhaustGasTemperature Simvar args contain optional index and/or unit
#### func [SimVarEngExhaustGasTemperatureGes](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2424) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngExhaustGasTemperatureGes "Go to SimVarEngExhaustGasTemperatureGes")
```
func SimVarEngExhaustGasTemperatureGes(args ...interface{}) SimVar
```
SimVarEngExhaustGasTemperatureGes Simvar args contain optional index and/or unit
#### func [SimVarEngFailed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2138) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFailed "Go to SimVarEngFailed")
```
func SimVarEngFailed(args ...interface{}) SimVar
```
SimVarEngFailed Simvar args contain optional index and/or unit
#### func [SimVarEngFuelFlowBugPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2174) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelFlowBugPosition "Go to SimVarEngFuelFlowBugPosition")
```
func SimVarEngFuelFlowBugPosition(args ...interface{}) SimVar
```
SimVarEngFuelFlowBugPosition Simvar args contain optional index and/or unit
#### func [SimVarEngFuelFlowPph](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2364) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelFlowPph "Go to SimVarEngFuelFlowPph")
```
func SimVarEngFuelFlowPph(args ...interface{}) SimVar
```
SimVarEngFuelFlowPph Simvar args contain optional index and/or unit
#### func [SimVarEngFuelPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2568) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelPressure "Go to SimVarEngFuelPressure")
```
func SimVarEngFuelPressure(args ...interface{}) SimVar
```
SimVarEngFuelPressure Simvar args contain optional index and/or unit
#### func [SimVarEngHydraulicPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2484) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngHydraulicPressure "Go to SimVarEngHydraulicPressure")
```
func SimVarEngHydraulicPressure(args ...interface{}) SimVar
```
SimVarEngHydraulicPressure Simvar args contain optional index and/or unit
#### func [SimVarEngHydraulicQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2496) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngHydraulicQuantity "Go to SimVarEngHydraulicQuantity")
```
func SimVarEngHydraulicQuantity(args ...interface{}) SimVar
```
SimVarEngHydraulicQuantity Simvar args contain optional index and/or unit
#### func [SimVarEngManifoldPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2508) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngManifoldPressure "Go to SimVarEngManifoldPressure")
```
func SimVarEngManifoldPressure(args ...interface{}) SimVar
```
SimVarEngManifoldPressure Simvar args contain optional index and/or unit
#### func [SimVarEngMaxRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2628) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngMaxRpm "Go to SimVarEngMaxRpm")
```
func SimVarEngMaxRpm(args ...interface{}) SimVar
```
SimVarEngMaxRpm Simvar args contain optional index and/or unit
#### func [SimVarEngN1Rpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2341) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngN1Rpm "Go to SimVarEngN1Rpm")
```
func SimVarEngN1Rpm(args ...interface{}) SimVar
```
SimVarEngN1Rpm Simvar
#### func [SimVarEngN2Rpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2352) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngN2Rpm "Go to SimVarEngN2Rpm")
```
func SimVarEngN2Rpm(args ...interface{}) SimVar
```
SimVarEngN2Rpm Simvar
#### func [SimVarEngOilPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2460) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilPressure "Go to SimVarEngOilPressure")
```
func SimVarEngOilPressure(args ...interface{}) SimVar
```
SimVarEngOilPressure Simvar args contain optional index and/or unit
#### func [SimVarEngOilQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2472) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilQuantity "Go to SimVarEngOilQuantity")
```
func SimVarEngOilQuantity(args ...interface{}) SimVar
```
SimVarEngOilQuantity Simvar args contain optional index and/or unit
#### func [SimVarEngOilTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2448) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilTemperature "Go to SimVarEngOilTemperature")
```
func SimVarEngOilTemperature(args ...interface{}) SimVar
```
SimVarEngOilTemperature Simvar args contain optional index and/or unit
#### func [SimVarEngOnFire](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2162) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOnFire "Go to SimVarEngOnFire")
```
func SimVarEngOnFire(args ...interface{}) SimVar
```
SimVarEngOnFire Simvar args contain optional index and/or unit
#### func [SimVarEngPressureRatio](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2400) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngPressureRatio "Go to SimVarEngPressureRatio")
```
func SimVarEngPressureRatio(args ...interface{}) SimVar
```
SimVarEngPressureRatio Simvar args contain optional index and/or unit
#### func [SimVarEngRotorRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2616) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRotorRpm "Go to SimVarEngRotorRpm")
```
func SimVarEngRotorRpm(args ...interface{}) SimVar
```
SimVarEngRotorRpm Simvar args contain optional index and/or unit
#### func [SimVarEngRpmAnimationPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2150) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRpmAnimationPercent "Go to SimVarEngRpmAnimationPercent")
```
func SimVarEngRpmAnimationPercent(args ...interface{}) SimVar
```
SimVarEngRpmAnimationPercent Simvar args contain optional index and/or unit
#### func [SimVarEngRpmScaler](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2532) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRpmScaler "Go to SimVarEngRpmScaler")
```
func SimVarEngRpmScaler(args ...interface{}) SimVar
```
SimVarEngRpmScaler Simvar args contain optional index and/or unit
#### func [SimVarEngTorque](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2376) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTorque "Go to SimVarEngTorque")
```
func SimVarEngTorque(args ...interface{}) SimVar
```
SimVarEngTorque Simvar args contain optional index and/or unit
#### func [SimVarEngTorquePercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2556) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTorquePercent "Go to SimVarEngTorquePercent")
```
func SimVarEngTorquePercent(args ...interface{}) SimVar
```
SimVarEngTorquePercent Simvar args contain optional index and/or unit
#### func [SimVarEngTransmissionPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2592) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTransmissionPressure "Go to SimVarEngTransmissionPressure")
```
func SimVarEngTransmissionPressure(args ...interface{}) SimVar
```
SimVarEngTransmissionPressure Simvar args contain optional index and/or unit
#### func [SimVarEngTransmissionTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2604) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTransmissionTemperature "Go to SimVarEngTransmissionTemperature")
```
func SimVarEngTransmissionTemperature(args ...interface{}) SimVar
```
SimVarEngTransmissionTemperature Simvar args contain optional index and/or unit
#### func [SimVarEngTurbineTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2544) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTurbineTemperature "Go to SimVarEngTurbineTemperature")
```
func SimVarEngTurbineTemperature(args ...interface{}) SimVar
```
SimVarEngTurbineTemperature Simvar args contain optional index and/or unit
#### func [SimVarEngVibration](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2520) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngVibration "Go to SimVarEngVibration")
```
func SimVarEngVibration(args ...interface{}) SimVar
```
SimVarEngVibration Simvar args contain optional index and/or unit
#### func [SimVarEngineControlSelect](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1314) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineControlSelect "Go to SimVarEngineControlSelect")
```
func SimVarEngineControlSelect(args ...interface{}) SimVar
```
SimVarEngineControlSelect Simvar args contain optional index and/or unit
#### func [SimVarEngineMixureAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7750) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineMixureAvailable "Go to SimVarEngineMixureAvailable")
```
func SimVarEngineMixureAvailable(args ...interface{}) SimVar
```
SimVarEngineMixureAvailable Simvar args contain optional index and/or unit
#### func [SimVarEngineType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1338) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineType "Go to SimVarEngineType")
```
func SimVarEngineType(args ...interface{}) SimVar
```
SimVarEngineType Simvar args contain optional index and/or unit
#### func [SimVarEstimatedCruiseSpeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8350) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEstimatedCruiseSpeed "Go to SimVarEstimatedCruiseSpeed")
```
func SimVarEstimatedCruiseSpeed(args ...interface{}) SimVar
```
SimVarEstimatedCruiseSpeed Simvar args contain optional index and/or unit
#### func [SimVarEstimatedFuelFlow](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3252) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEstimatedFuelFlow "Go to SimVarEstimatedFuelFlow")
```
func SimVarEstimatedFuelFlow(args ...interface{}) SimVar
```
SimVarEstimatedFuelFlow Simvar args contain optional index and/or unit
#### func [SimVarExitOpen](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7726) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitOpen "Go to SimVarExitOpen")
```
func SimVarExitOpen(args ...interface{}) SimVar
```
SimVarExitOpen Simvar args contain optional index and/or unit
#### func [SimVarExitPosx](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8864) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosx "Go to SimVarExitPosx")
```
func SimVarExitPosx(args ...interface{}) SimVar
```
SimVarExitPosx Simvar args contain optional index and/or unit
#### func [SimVarExitPosy](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8876) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosy "Go to SimVarExitPosy")
```
func SimVarExitPosy(args ...interface{}) SimVar
```
SimVarExitPosy Simvar args contain optional index and/or unit
#### func [SimVarExitPosz](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8888) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosz "Go to SimVarExitPosz")
```
func SimVarExitPosz(args ...interface{}) SimVar
```
SimVarExitPosz Simvar args contain optional index and/or unit
#### func [SimVarExitType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8852) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitType "Go to SimVarExitType")
```
func SimVarExitType(args ...interface{}) SimVar
```
SimVarExitType Simvar args contain optional index and/or unit
#### func [SimVarEyepointPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1218) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEyepointPosition "Go to SimVarEyepointPosition")
```
func SimVarEyepointPosition(args ...interface{}) SimVar
```
SimVarEyepointPosition Simvar args contain optional index and/or unit
#### func [SimVarFireBottleDischarged](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9798) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFireBottleDischarged "Go to SimVarFireBottleDischarged")
```
func SimVarFireBottleDischarged(args ...interface{}) SimVar
```
SimVarFireBottleDischarged Simvar args contain optional index and/or unit
#### func [SimVarFireBottleSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9786) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFireBottleSwitch "Go to SimVarFireBottleSwitch")
```
func SimVarFireBottleSwitch(args ...interface{}) SimVar
```
SimVarFireBottleSwitch Simvar args contain optional index and/or unit
#### func [SimVarFlapDamageBySpeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6707) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapDamageBySpeed "Go to SimVarFlapDamageBySpeed")
```
func SimVarFlapDamageBySpeed(args ...interface{}) SimVar
```
SimVarFlapDamageBySpeed Simvar args contain optional index and/or unit
#### func [SimVarFlapSpeedExceeded](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6719) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapSpeedExceeded "Go to SimVarFlapSpeedExceeded")
```
func SimVarFlapSpeedExceeded(args ...interface{}) SimVar
```
SimVarFlapSpeedExceeded Simvar args contain optional index and/or unit
#### func [SimVarFlapsAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6671) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsAvailable "Go to SimVarFlapsAvailable")
```
func SimVarFlapsAvailable(args ...interface{}) SimVar
```
SimVarFlapsAvailable Simvar args contain optional index and/or unit
#### func [SimVarFlapsHandleIndex](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6011) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandleIndex "Go to SimVarFlapsHandleIndex")
```
func SimVarFlapsHandleIndex(args ...interface{}) SimVar
```
SimVarFlapsHandleIndex Simvar args contain optional index and/or unit
#### func [SimVarFlapsHandlePercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5999) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandlePercent "Go to SimVarFlapsHandlePercent")
```
func SimVarFlapsHandlePercent(args ...interface{}) SimVar
```
SimVarFlapsHandlePercent Simvar args contain optional index and/or unit
#### func [SimVarFlapsNumHandlePositions](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6023) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsNumHandlePositions "Go to SimVarFlapsNumHandlePositions")
```
func SimVarFlapsNumHandlePositions(args ...interface{}) SimVar
```
SimVarFlapsNumHandlePositions Simvar args contain optional index and/or unit
#### func [SimVarFlyByWireElacFailed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1266) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireElacFailed "Go to SimVarFlyByWireElacFailed")
```
func SimVarFlyByWireElacFailed(args ...interface{}) SimVar
```
SimVarFlyByWireElacFailed Simvar args contain optional index and/or unit
#### func [SimVarFlyByWireElacSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1230) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireElacSwitch "Go to SimVarFlyByWireElacSwitch")
```
func SimVarFlyByWireElacSwitch(args ...interface{}) SimVar
```
SimVarFlyByWireElacSwitch Simvar args contain optional index and/or unit
#### func [SimVarFlyByWireFacFailed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1278) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireFacFailed "Go to SimVarFlyByWireFacFailed")
```
func SimVarFlyByWireFacFailed(args ...interface{}) SimVar
```
SimVarFlyByWireFacFailed Simvar args contain optional index and/or unit
#### func [SimVarFlyByWireFacSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1242) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireFacSwitch "Go to SimVarFlyByWireFacSwitch")
```
func SimVarFlyByWireFacSwitch(args ...interface{}) SimVar
```
SimVarFlyByWireFacSwitch Simvar args contain optional index and/or unit
#### func [SimVarFlyByWireSecFailed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1290) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireSecFailed "Go to SimVarFlyByWireSecFailed")
```
func SimVarFlyByWireSecFailed(args ...interface{}) SimVar
```
SimVarFlyByWireSecFailed Simvar args contain optional index and/or unit
#### func [SimVarFlyByWireSecSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1254) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireSecSwitch "Go to SimVarFlyByWireSecSwitch")
```
func SimVarFlyByWireSecSwitch(args ...interface{}) SimVar
```
SimVarFlyByWireSecSwitch Simvar args contain optional index and/or unit
#### func [SimVarFoldingWingLeftPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7678) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFoldingWingLeftPercent "Go to SimVarFoldingWingLeftPercent")
```
func SimVarFoldingWingLeftPercent(args ...interface{}) SimVar
```
SimVarFoldingWingLeftPercent Simvar args contain optional index and/or unit
#### func [SimVarFoldingWingRightPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7690) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFoldingWingRightPercent "Go to SimVarFoldingWingRightPercent")
```
func SimVarFoldingWingRightPercent(args ...interface{}) SimVar
```
SimVarFoldingWingRightPercent Simvar args contain optional index and/or unit
#### func [SimVarFuelCrossFeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3168) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelCrossFeed "Go to SimVarFuelCrossFeed")
```
func SimVarFuelCrossFeed(args ...interface{}) SimVar
```
SimVarFuelCrossFeed Simvar args contain optional index and/or unit
#### func [SimVarFuelLeftCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2956) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelLeftCapacity "Go to SimVarFuelLeftCapacity")
```
func SimVarFuelLeftCapacity(args ...interface{}) SimVar
```
SimVarFuelLeftCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelLeftQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3108) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelLeftQuantity "Go to SimVarFuelLeftQuantity")
```
func SimVarFuelLeftQuantity(args ...interface{}) SimVar
```
SimVarFuelLeftQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelRightCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2968) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelRightCapacity "Go to SimVarFuelRightCapacity")
```
func SimVarFuelRightCapacity(args ...interface{}) SimVar
```
SimVarFuelRightCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelRightQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3120) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelRightQuantity "Go to SimVarFuelRightQuantity")
```
func SimVarFuelRightQuantity(args ...interface{}) SimVar
```
SimVarFuelRightQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelSelectedQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3204) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedQuantity "Go to SimVarFuelSelectedQuantity")
```
func SimVarFuelSelectedQuantity(args ...interface{}) SimVar
```
SimVarFuelSelectedQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelSelectedQuantityPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3192) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedQuantityPercent "Go to SimVarFuelSelectedQuantityPercent")
```
func SimVarFuelSelectedQuantityPercent(args ...interface{}) SimVar
```
SimVarFuelSelectedQuantityPercent Simvar args contain optional index and/or unit
#### func [SimVarFuelSelectedTransferMode](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9116) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedTransferMode "Go to SimVarFuelSelectedTransferMode")
```
func SimVarFuelSelectedTransferMode(args ...interface{}) SimVar
```
SimVarFuelSelectedTransferMode Simvar args contain optional index and/or unit
#### func [SimVarFuelTankCenter2Capacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2839) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Capacity "Go to SimVarFuelTankCenter2Capacity")
```
func SimVarFuelTankCenter2Capacity(args ...interface{}) SimVar
```
SimVarFuelTankCenter2Capacity Simvar
#### func [SimVarFuelTankCenter2Level](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2711) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Level "Go to SimVarFuelTankCenter2Level")
```
func SimVarFuelTankCenter2Level(args ...interface{}) SimVar
```
SimVarFuelTankCenter2Level Simvar
#### func [SimVarFuelTankCenter2Quantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2991) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Quantity "Go to SimVarFuelTankCenter2Quantity")
```
func SimVarFuelTankCenter2Quantity(args ...interface{}) SimVar
```
SimVarFuelTankCenter2Quantity Simvar
#### func [SimVarFuelTankCenter3Capacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2850) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Capacity "Go to SimVarFuelTankCenter3Capacity")
```
func SimVarFuelTankCenter3Capacity(args ...interface{}) SimVar
```
SimVarFuelTankCenter3Capacity Simvar
#### func [SimVarFuelTankCenter3Level](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2722) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Level "Go to SimVarFuelTankCenter3Level")
```
func SimVarFuelTankCenter3Level(args ...interface{}) SimVar
```
SimVarFuelTankCenter3Level Simvar
#### func [SimVarFuelTankCenter3Quantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3002) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Quantity "Go to SimVarFuelTankCenter3Quantity")
```
func SimVarFuelTankCenter3Quantity(args ...interface{}) SimVar
```
SimVarFuelTankCenter3Quantity Simvar
#### func [SimVarFuelTankCenterCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2828) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterCapacity "Go to SimVarFuelTankCenterCapacity")
```
func SimVarFuelTankCenterCapacity(args ...interface{}) SimVar
```
SimVarFuelTankCenterCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankCenterLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2700) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterLevel "Go to SimVarFuelTankCenterLevel")
```
func SimVarFuelTankCenterLevel(args ...interface{}) SimVar
```
SimVarFuelTankCenterLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankCenterQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2980) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterQuantity "Go to SimVarFuelTankCenterQuantity")
```
func SimVarFuelTankCenterQuantity(args ...interface{}) SimVar
```
SimVarFuelTankCenterQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankExternal1Capacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2933) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Capacity "Go to SimVarFuelTankExternal1Capacity")
```
func SimVarFuelTankExternal1Capacity(args ...interface{}) SimVar
```
SimVarFuelTankExternal1Capacity Simvar
#### func [SimVarFuelTankExternal1Level](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2805) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Level "Go to SimVarFuelTankExternal1Level")
```
func SimVarFuelTankExternal1Level(args ...interface{}) SimVar
```
SimVarFuelTankExternal1Level Simvar
#### func [SimVarFuelTankExternal1Quantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3085) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Quantity "Go to SimVarFuelTankExternal1Quantity")
```
func SimVarFuelTankExternal1Quantity(args ...interface{}) SimVar
```
SimVarFuelTankExternal1Quantity Simvar
#### func [SimVarFuelTankExternal2Capacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2944) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Capacity "Go to SimVarFuelTankExternal2Capacity")
```
func SimVarFuelTankExternal2Capacity(args ...interface{}) SimVar
```
SimVarFuelTankExternal2Capacity Simvar
#### func [SimVarFuelTankExternal2Level](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2816) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Level "Go to SimVarFuelTankExternal2Level")
```
func SimVarFuelTankExternal2Level(args ...interface{}) SimVar
```
SimVarFuelTankExternal2Level Simvar
#### func [SimVarFuelTankExternal2Quantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3096) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Quantity "Go to SimVarFuelTankExternal2Quantity")
```
func SimVarFuelTankExternal2Quantity(args ...interface{}) SimVar
```
SimVarFuelTankExternal2Quantity Simvar
#### func [SimVarFuelTankLeftAuxCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2874) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxCapacity "Go to SimVarFuelTankLeftAuxCapacity")
```
func SimVarFuelTankLeftAuxCapacity(args ...interface{}) SimVar
```
SimVarFuelTankLeftAuxCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftAuxLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2746) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxLevel "Go to SimVarFuelTankLeftAuxLevel")
```
func SimVarFuelTankLeftAuxLevel(args ...interface{}) SimVar
```
SimVarFuelTankLeftAuxLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftAuxQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3026) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxQuantity "Go to SimVarFuelTankLeftAuxQuantity")
```
func SimVarFuelTankLeftAuxQuantity(args ...interface{}) SimVar
```
SimVarFuelTankLeftAuxQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftMainCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2862) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainCapacity "Go to SimVarFuelTankLeftMainCapacity")
```
func SimVarFuelTankLeftMainCapacity(args ...interface{}) SimVar
```
SimVarFuelTankLeftMainCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftMainLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2734) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainLevel "Go to SimVarFuelTankLeftMainLevel")
```
func SimVarFuelTankLeftMainLevel(args ...interface{}) SimVar
```
SimVarFuelTankLeftMainLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftMainQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3014) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainQuantity "Go to SimVarFuelTankLeftMainQuantity")
```
func SimVarFuelTankLeftMainQuantity(args ...interface{}) SimVar
```
SimVarFuelTankLeftMainQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftTipCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2886) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipCapacity "Go to SimVarFuelTankLeftTipCapacity")
```
func SimVarFuelTankLeftTipCapacity(args ...interface{}) SimVar
```
SimVarFuelTankLeftTipCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftTipLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2758) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipLevel "Go to SimVarFuelTankLeftTipLevel")
```
func SimVarFuelTankLeftTipLevel(args ...interface{}) SimVar
```
SimVarFuelTankLeftTipLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftTipQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3038) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipQuantity "Go to SimVarFuelTankLeftTipQuantity")
```
func SimVarFuelTankLeftTipQuantity(args ...interface{}) SimVar
```
SimVarFuelTankLeftTipQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightAuxCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2910) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxCapacity "Go to SimVarFuelTankRightAuxCapacity")
```
func SimVarFuelTankRightAuxCapacity(args ...interface{}) SimVar
```
SimVarFuelTankRightAuxCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightAuxLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2782) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxLevel "Go to SimVarFuelTankRightAuxLevel")
```
func SimVarFuelTankRightAuxLevel(args ...interface{}) SimVar
```
SimVarFuelTankRightAuxLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightAuxQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3062) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxQuantity "Go to SimVarFuelTankRightAuxQuantity")
```
func SimVarFuelTankRightAuxQuantity(args ...interface{}) SimVar
```
SimVarFuelTankRightAuxQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightMainCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2898) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainCapacity "Go to SimVarFuelTankRightMainCapacity")
```
func SimVarFuelTankRightMainCapacity(args ...interface{}) SimVar
```
SimVarFuelTankRightMainCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightMainLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2770) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainLevel "Go to SimVarFuelTankRightMainLevel")
```
func SimVarFuelTankRightMainLevel(args ...interface{}) SimVar
```
SimVarFuelTankRightMainLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightMainQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3050) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainQuantity "Go to SimVarFuelTankRightMainQuantity")
```
func SimVarFuelTankRightMainQuantity(args ...interface{}) SimVar
```
SimVarFuelTankRightMainQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightTipCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2922) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipCapacity "Go to SimVarFuelTankRightTipCapacity")
```
func SimVarFuelTankRightTipCapacity(args ...interface{}) SimVar
```
SimVarFuelTankRightTipCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightTipLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2794) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipLevel "Go to SimVarFuelTankRightTipLevel")
```
func SimVarFuelTankRightTipLevel(args ...interface{}) SimVar
```
SimVarFuelTankRightTipLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightTipQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3074) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipQuantity "Go to SimVarFuelTankRightTipQuantity")
```
func SimVarFuelTankRightTipQuantity(args ...interface{}) SimVar
```
SimVarFuelTankRightTipQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankSelector](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3156) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankSelector "Go to SimVarFuelTankSelector")
```
func SimVarFuelTankSelector(args ...interface{}) SimVar
```
SimVarFuelTankSelector Simvar args contain optional index and/or unit
#### func [SimVarFuelTotalCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3180) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalCapacity "Go to SimVarFuelTotalCapacity")
```
func SimVarFuelTotalCapacity(args ...interface{}) SimVar
```
SimVarFuelTotalCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTotalQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3132) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalQuantity "Go to SimVarFuelTotalQuantity")
```
func SimVarFuelTotalQuantity(args ...interface{}) SimVar
```
SimVarFuelTotalQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTotalQuantityWeight](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3216) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalQuantityWeight "Go to SimVarFuelTotalQuantityWeight")
```
func SimVarFuelTotalQuantityWeight(args ...interface{}) SimVar
```
SimVarFuelTotalQuantityWeight Simvar args contain optional index and/or unit
#### func [SimVarFuelWeightPerGallon](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3144) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelWeightPerGallon "Go to SimVarFuelWeightPerGallon")
```
func SimVarFuelWeightPerGallon(args ...interface{}) SimVar
```
SimVarFuelWeightPerGallon Simvar args contain optional index and/or unit
#### func [SimVarFullThrottleThrustToWeightRatio](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9044) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFullThrottleThrustToWeightRatio "Go to SimVarFullThrottleThrustToWeightRatio")
```
func SimVarFullThrottleThrustToWeightRatio(args ...interface{}) SimVar
```
SimVarFullThrottleThrustToWeightRatio Simvar args contain optional index and/or unit
#### func [SimVarGForce](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8266) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGForce "Go to SimVarGForce")
```
func SimVarGForce(args ...interface{}) SimVar
```
SimVarGForce Simvar args contain optional index and/or unit
#### func [SimVarGearAnimationPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6299) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAnimationPosition "Go to SimVarGearAnimationPosition")
```
func SimVarGearAnimationPosition(args ...interface{}) SimVar
```
SimVarGearAnimationPosition Simvar args contain optional index and/or unit
#### func [SimVarGearAuxPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6275) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxPosition "Go to SimVarGearAuxPosition")
```
func SimVarGearAuxPosition(args ...interface{}) SimVar
```
SimVarGearAuxPosition Simvar args contain optional index and/or unit
#### func [SimVarGearAuxSteerAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6431) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxSteerAngle "Go to SimVarGearAuxSteerAngle")
```
func SimVarGearAuxSteerAngle(args ...interface{}) SimVar
```
SimVarGearAuxSteerAngle Simvar args contain optional index and/or unit
#### func [SimVarGearAuxSteerAnglePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6515) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxSteerAnglePct "Go to SimVarGearAuxSteerAnglePct")
```
func SimVarGearAuxSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearAuxSteerAnglePct Simvar args contain optional index and/or unit
#### func [SimVarGearCenterPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6227) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterPosition "Go to SimVarGearCenterPosition")
```
func SimVarGearCenterPosition(args ...interface{}) SimVar
```
SimVarGearCenterPosition Simvar args contain optional index and/or unit
#### func [SimVarGearCenterSteerAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6395) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterSteerAngle "Go to SimVarGearCenterSteerAngle")
```
func SimVarGearCenterSteerAngle(args ...interface{}) SimVar
```
SimVarGearCenterSteerAngle Simvar args contain optional index and/or unit
#### func [SimVarGearCenterSteerAnglePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6479) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterSteerAnglePct "Go to SimVarGearCenterSteerAnglePct")
```
func SimVarGearCenterSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearCenterSteerAnglePct Simvar args contain optional index and/or unit
#### func [SimVarGearDamageBySpeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6683) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearDamageBySpeed "Go to SimVarGearDamageBySpeed")
```
func SimVarGearDamageBySpeed(args ...interface{}) SimVar
```
SimVarGearDamageBySpeed Simvar args contain optional index and/or unit
#### func [SimVarGearEmergencyHandlePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7210) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearEmergencyHandlePosition "Go to SimVarGearEmergencyHandlePosition")
```
func SimVarGearEmergencyHandlePosition(args ...interface{}) SimVar
```
SimVarGearEmergencyHandlePosition Simvar args contain optional index and/or unit
#### func [SimVarGearHandlePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6191) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHandlePosition "Go to SimVarGearHandlePosition")
```
func SimVarGearHandlePosition(args ...interface{}) SimVar
```
SimVarGearHandlePosition Simvar args contain optional index and/or unit
#### func [SimVarGearHydraulicPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6203) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHydraulicPressure "Go to SimVarGearHydraulicPressure")
```
func SimVarGearHydraulicPressure(args ...interface{}) SimVar
```
SimVarGearHydraulicPressure Simvar args contain optional index and/or unit
#### func [SimVarGearLeftPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6239) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftPosition "Go to SimVarGearLeftPosition")
```
func SimVarGearLeftPosition(args ...interface{}) SimVar
```
SimVarGearLeftPosition Simvar args contain optional index and/or unit
#### func [SimVarGearLeftSteerAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6407) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftSteerAngle "Go to SimVarGearLeftSteerAngle")
```
func SimVarGearLeftSteerAngle(args ...interface{}) SimVar
```
SimVarGearLeftSteerAngle Simvar args contain optional index and/or unit
#### func [SimVarGearLeftSteerAnglePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6491) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftSteerAnglePct "Go to SimVarGearLeftSteerAnglePct")
```
func SimVarGearLeftSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearLeftSteerAnglePct Simvar args contain optional index and/or unit
#### func [SimVarGearPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6287) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearPosition "Go to SimVarGearPosition")
```
func SimVarGearPosition(args ...interface{}) SimVar
```
SimVarGearPosition Simvar args contain optional index and/or unit
#### func [SimVarGearRightPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6251) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightPosition "Go to SimVarGearRightPosition")
```
func SimVarGearRightPosition(args ...interface{}) SimVar
```
SimVarGearRightPosition Simvar args contain optional index and/or unit
#### func [SimVarGearRightSteerAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6419) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightSteerAngle "Go to SimVarGearRightSteerAngle")
```
func SimVarGearRightSteerAngle(args ...interface{}) SimVar
```
SimVarGearRightSteerAngle Simvar args contain optional index and/or unit
#### func [SimVarGearRightSteerAnglePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6503) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightSteerAnglePct "Go to SimVarGearRightSteerAnglePct")
```
func SimVarGearRightSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearRightSteerAnglePct Simvar args contain optional index and/or unit
#### func [SimVarGearSpeedExceeded](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6695) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSpeedExceeded "Go to SimVarGearSpeedExceeded")
```
func SimVarGearSpeedExceeded(args ...interface{}) SimVar
```
SimVarGearSpeedExceeded Simvar args contain optional index and/or unit
#### func [SimVarGearSteerAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6443) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSteerAngle "Go to SimVarGearSteerAngle")
```
func SimVarGearSteerAngle(args ...interface{}) SimVar
```
SimVarGearSteerAngle Simvar args contain optional index and/or unit
#### func [SimVarGearSteerAnglePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6527) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSteerAnglePct "Go to SimVarGearSteerAnglePct")
```
func SimVarGearSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearSteerAnglePct Simvar args contain optional index and/or unit
#### func [SimVarGearTailPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6263) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearTailPosition "Go to SimVarGearTailPosition")
```
func SimVarGearTailPosition(args ...interface{}) SimVar
```
SimVarGearTailPosition Simvar args contain optional index and/or unit
#### func [SimVarGearTotalPctExtended](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6311) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearTotalPctExtended "Go to SimVarGearTotalPctExtended")
```
func SimVarGearTotalPctExtended(args ...interface{}) SimVar
```
SimVarGearTotalPctExtended Simvar args contain optional index and/or unit
#### func [SimVarGearWarning](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7222) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearWarning "Go to SimVarGearWarning")
```
func SimVarGearWarning(args ...interface{}) SimVar
```
SimVarGearWarning Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngAntiIcePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1602) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngAntiIcePosition "Go to SimVarGeneralEngAntiIcePosition")
```
func SimVarGeneralEngAntiIcePosition(args ...interface{}) SimVar
```
SimVarGeneralEngAntiIcePosition Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngCombustion](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1362) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngCombustion "Go to SimVarGeneralEngCombustion")
```
func SimVarGeneralEngCombustion(args ...interface{}) SimVar
```
SimVarGeneralEngCombustion Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngCombustionSoundPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1530) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngCombustionSoundPercent "Go to SimVarGeneralEngCombustionSoundPercent")
```
func SimVarGeneralEngCombustionSoundPercent(args ...interface{}) SimVar
```
SimVarGeneralEngCombustionSoundPercent Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngDamagePercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1542) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngDamagePercent "Go to SimVarGeneralEngDamagePercent")
```
func SimVarGeneralEngDamagePercent(args ...interface{}) SimVar
```
SimVarGeneralEngDamagePercent Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngElapsedTime](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1638) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngElapsedTime "Go to SimVarGeneralEngElapsedTime")
```
func SimVarGeneralEngElapsedTime(args ...interface{}) SimVar
```
SimVarGeneralEngElapsedTime Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngExhaustGasTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1494) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngExhaustGasTemperature "Go to SimVarGeneralEngExhaustGasTemperature")
```
func SimVarGeneralEngExhaustGasTemperature(args ...interface{}) SimVar
```
SimVarGeneralEngExhaustGasTemperature Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngFailed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1566) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFailed "Go to SimVarGeneralEngFailed")
```
func SimVarGeneralEngFailed(args ...interface{}) SimVar
```
SimVarGeneralEngFailed Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngFuelPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1626) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPressure "Go to SimVarGeneralEngFuelPressure")
```
func SimVarGeneralEngFuelPressure(args ...interface{}) SimVar
```
SimVarGeneralEngFuelPressure Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngFuelPumpOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1398) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPumpOn "Go to SimVarGeneralEngFuelPumpOn")
```
func SimVarGeneralEngFuelPumpOn(args ...interface{}) SimVar
```
SimVarGeneralEngFuelPumpOn Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngFuelPumpSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1386) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPumpSwitch "Go to SimVarGeneralEngFuelPumpSwitch")
```
func SimVarGeneralEngFuelPumpSwitch(args ...interface{}) SimVar
```
SimVarGeneralEngFuelPumpSwitch Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngFuelUsedSinceStart](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2652) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelUsedSinceStart "Go to SimVarGeneralEngFuelUsedSinceStart")
```
func SimVarGeneralEngFuelUsedSinceStart(args ...interface{}) SimVar
```
SimVarGeneralEngFuelUsedSinceStart Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngFuelValve](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1614) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelValve "Go to SimVarGeneralEngFuelValve")
```
func SimVarGeneralEngFuelValve(args ...interface{}) SimVar
```
SimVarGeneralEngFuelValve Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngGeneratorActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1590) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngGeneratorActive "Go to SimVarGeneralEngGeneratorActive")
```
func SimVarGeneralEngGeneratorActive(args ...interface{}) SimVar
```
SimVarGeneralEngGeneratorActive Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngGeneratorSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1578) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngGeneratorSwitch "Go to SimVarGeneralEngGeneratorSwitch")
```
func SimVarGeneralEngGeneratorSwitch(args ...interface{}) SimVar
```
SimVarGeneralEngGeneratorSwitch Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngMasterAlternator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1374) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMasterAlternator "Go to SimVarGeneralEngMasterAlternator")
```
func SimVarGeneralEngMasterAlternator(args ...interface{}) SimVar
```
SimVarGeneralEngMasterAlternator Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngMaxReachedRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1434) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMaxReachedRpm "Go to SimVarGeneralEngMaxReachedRpm")
```
func SimVarGeneralEngMaxReachedRpm(args ...interface{}) SimVar
```
SimVarGeneralEngMaxReachedRpm Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngMixtureLeverPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1458) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMixtureLeverPosition "Go to SimVarGeneralEngMixtureLeverPosition")
```
func SimVarGeneralEngMixtureLeverPosition(args ...interface{}) SimVar
```
SimVarGeneralEngMixtureLeverPosition Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngOilLeakedPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1518) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilLeakedPercent "Go to SimVarGeneralEngOilLeakedPercent")
```
func SimVarGeneralEngOilLeakedPercent(args ...interface{}) SimVar
```
SimVarGeneralEngOilLeakedPercent Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngOilPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1506) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilPressure "Go to SimVarGeneralEngOilPressure")
```
func SimVarGeneralEngOilPressure(args ...interface{}) SimVar
```
SimVarGeneralEngOilPressure Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngOilTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1554) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilTemperature "Go to SimVarGeneralEngOilTemperature")
```
func SimVarGeneralEngOilTemperature(args ...interface{}) SimVar
```
SimVarGeneralEngOilTemperature Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngPctMaxRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1422) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngPctMaxRpm "Go to SimVarGeneralEngPctMaxRpm")
```
func SimVarGeneralEngPctMaxRpm(args ...interface{}) SimVar
```
SimVarGeneralEngPctMaxRpm Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngPropellerLeverPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1470) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngPropellerLeverPosition "Go to SimVarGeneralEngPropellerLeverPosition")
```
func SimVarGeneralEngPropellerLeverPosition(args ...interface{}) SimVar
```
SimVarGeneralEngPropellerLeverPosition Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1410) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngRpm "Go to SimVarGeneralEngRpm")
```
func SimVarGeneralEngRpm(args ...interface{}) SimVar
```
SimVarGeneralEngRpm Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngStarter](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1482) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngStarter "Go to SimVarGeneralEngStarter")
```
func SimVarGeneralEngStarter(args ...interface{}) SimVar
```
SimVarGeneralEngStarter Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngStarterActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2640) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngStarterActive "Go to SimVarGeneralEngStarterActive")
```
func SimVarGeneralEngStarterActive(args ...interface{}) SimVar
```
SimVarGeneralEngStarterActive Simvar args contain optional index and/or unit
#### func [SimVarGeneralEngThrottleLeverPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1446) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngThrottleLeverPosition "Go to SimVarGeneralEngThrottleLeverPosition")
```
func SimVarGeneralEngThrottleLeverPosition(args ...interface{}) SimVar
```
SimVarGeneralEngThrottleLeverPosition Simvar args contain optional index and/or unit
#### func [SimVarGenerator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/tools.go#L66) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGenerator "Go to SimVarGenerator")
```
func SimVarGenerator(iFace interface{}) ([]SimVar, error)
```
#### func [SimVarGpsApproachAirportId](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9978) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachAirportId "Go to SimVarGpsApproachAirportId")
```
func SimVarGpsApproachAirportId(args ...interface{}) SimVar
```
SimVarGpsApproachAirportId Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachApproachId](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9990) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachId "Go to SimVarGpsApproachApproachId")
```
func SimVarGpsApproachApproachId(args ...interface{}) SimVar
```
SimVarGpsApproachApproachId Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachApproachIndex](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5448) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachIndex "Go to SimVarGpsApproachApproachIndex")
```
func SimVarGpsApproachApproachIndex(args ...interface{}) SimVar
```
SimVarGpsApproachApproachIndex Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachApproachType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5460) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachType "Go to SimVarGpsApproachApproachType")
```
func SimVarGpsApproachApproachType(args ...interface{}) SimVar
```
SimVarGpsApproachApproachType Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachIsFinal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5484) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsFinal "Go to SimVarGpsApproachIsFinal")
```
func SimVarGpsApproachIsFinal(args ...interface{}) SimVar
```
SimVarGpsApproachIsFinal Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachIsMissed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5496) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsMissed "Go to SimVarGpsApproachIsMissed")
```
func SimVarGpsApproachIsMissed(args ...interface{}) SimVar
```
SimVarGpsApproachIsMissed Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachIsWpRunway](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5424) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsWpRunway "Go to SimVarGpsApproachIsWpRunway")
```
func SimVarGpsApproachIsWpRunway(args ...interface{}) SimVar
```
SimVarGpsApproachIsWpRunway Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachMode](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5400) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachMode "Go to SimVarGpsApproachMode")
```
func SimVarGpsApproachMode(args ...interface{}) SimVar
```
SimVarGpsApproachMode Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachSegmentType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5436) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachSegmentType "Go to SimVarGpsApproachSegmentType")
```
func SimVarGpsApproachSegmentType(args ...interface{}) SimVar
```
SimVarGpsApproachSegmentType Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachTimezoneDeviation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5508) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTimezoneDeviation "Go to SimVarGpsApproachTimezoneDeviation")
```
func SimVarGpsApproachTimezoneDeviation(args ...interface{}) SimVar
```
SimVarGpsApproachTimezoneDeviation Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachTransitionId](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10002) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTransitionId "Go to SimVarGpsApproachTransitionId")
```
func SimVarGpsApproachTransitionId(args ...interface{}) SimVar
```
SimVarGpsApproachTransitionId Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachTransitionIndex](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5472) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTransitionIndex "Go to SimVarGpsApproachTransitionIndex")
```
func SimVarGpsApproachTransitionIndex(args ...interface{}) SimVar
```
SimVarGpsApproachTransitionIndex Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachWpCount](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5532) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpCount "Go to SimVarGpsApproachWpCount")
```
func SimVarGpsApproachWpCount(args ...interface{}) SimVar
```
SimVarGpsApproachWpCount Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachWpIndex](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5520) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpIndex "Go to SimVarGpsApproachWpIndex")
```
func SimVarGpsApproachWpIndex(args ...interface{}) SimVar
```
SimVarGpsApproachWpIndex Simvar args contain optional index and/or unit
#### func [SimVarGpsApproachWpType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5412) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpType "Go to SimVarGpsApproachWpType")
```
func SimVarGpsApproachWpType(args ...interface{}) SimVar
```
SimVarGpsApproachWpType Simvar args contain optional index and/or unit
#### func [SimVarGpsCourseToSteer](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5328) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsCourseToSteer "Go to SimVarGpsCourseToSteer")
```
func SimVarGpsCourseToSteer(args ...interface{}) SimVar
```
SimVarGpsCourseToSteer Simvar args contain optional index and/or unit
#### func [SimVarGpsDrivesNav1](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5543) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsDrivesNav1 "Go to SimVarGpsDrivesNav1")
```
func SimVarGpsDrivesNav1(args ...interface{}) SimVar
```
SimVarGpsDrivesNav1 Simvar
#### func [SimVarGpsEta](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5208) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsEta "Go to SimVarGpsEta")
```
func SimVarGpsEta(args ...interface{}) SimVar
```
SimVarGpsEta Simvar args contain optional index and/or unit
#### func [SimVarGpsEte](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5196) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsEte "Go to SimVarGpsEte")
```
func SimVarGpsEte(args ...interface{}) SimVar
```
SimVarGpsEte Simvar args contain optional index and/or unit
#### func [SimVarGpsFlightPlanWpCount](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5352) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsFlightPlanWpCount "Go to SimVarGpsFlightPlanWpCount")
```
func SimVarGpsFlightPlanWpCount(args ...interface{}) SimVar
```
SimVarGpsFlightPlanWpCount Simvar args contain optional index and/or unit
#### func [SimVarGpsFlightPlanWpIndex](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5340) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsFlightPlanWpIndex "Go to SimVarGpsFlightPlanWpIndex")
```
func SimVarGpsFlightPlanWpIndex(args ...interface{}) SimVar
```
SimVarGpsFlightPlanWpIndex Simvar args contain optional index and/or unit
#### func [SimVarGpsGroundMagneticTrack](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5076) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundMagneticTrack "Go to SimVarGpsGroundMagneticTrack")
```
func SimVarGpsGroundMagneticTrack(args ...interface{}) SimVar
```
SimVarGpsGroundMagneticTrack Simvar args contain optional index and/or unit
#### func [SimVarGpsGroundSpeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5052) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundSpeed "Go to SimVarGpsGroundSpeed")
```
func SimVarGpsGroundSpeed(args ...interface{}) SimVar
```
SimVarGpsGroundSpeed Simvar args contain optional index and/or unit
#### func [SimVarGpsGroundTrueHeading](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5064) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundTrueHeading "Go to SimVarGpsGroundTrueHeading")
```
func SimVarGpsGroundTrueHeading(args ...interface{}) SimVar
```
SimVarGpsGroundTrueHeading Simvar args contain optional index and/or unit
#### func [SimVarGpsGroundTrueTrack](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5088) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundTrueTrack "Go to SimVarGpsGroundTrueTrack")
```
func SimVarGpsGroundTrueTrack(args ...interface{}) SimVar
```
SimVarGpsGroundTrueTrack Simvar args contain optional index and/or unit
#### func [SimVarGpsIsActiveFlightPlan](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5004) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveFlightPlan "Go to SimVarGpsIsActiveFlightPlan")
```
func SimVarGpsIsActiveFlightPlan(args ...interface{}) SimVar
```
SimVarGpsIsActiveFlightPlan Simvar args contain optional index and/or unit
#### func [SimVarGpsIsActiveWayPoint](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5016) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveWayPoint "Go to SimVarGpsIsActiveWayPoint")
```
func SimVarGpsIsActiveWayPoint(args ...interface{}) SimVar
```
SimVarGpsIsActiveWayPoint Simvar args contain optional index and/or unit
#### func [SimVarGpsIsActiveWpLocked](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5364) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveWpLocked "Go to SimVarGpsIsActiveWpLocked")
```
func SimVarGpsIsActiveWpLocked(args ...interface{}) SimVar
```
SimVarGpsIsActiveWpLocked Simvar args contain optional index and/or unit
#### func [SimVarGpsIsApproachActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5388) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsApproachActive "Go to SimVarGpsIsApproachActive")
```
func SimVarGpsIsApproachActive(args ...interface{}) SimVar
```
SimVarGpsIsApproachActive Simvar args contain optional index and/or unit
#### func [SimVarGpsIsApproachLoaded](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5376) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsApproachLoaded "Go to SimVarGpsIsApproachLoaded")
```
func SimVarGpsIsApproachLoaded(args ...interface{}) SimVar
```
SimVarGpsIsApproachLoaded Simvar args contain optional index and/or unit
#### func [SimVarGpsIsArrived](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5028) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsArrived "Go to SimVarGpsIsArrived")
```
func SimVarGpsIsArrived(args ...interface{}) SimVar
```
SimVarGpsIsArrived Simvar args contain optional index and/or unit
#### func [SimVarGpsIsDirecttoFlightplan](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5040) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsDirecttoFlightplan "Go to SimVarGpsIsDirecttoFlightplan")
```
func SimVarGpsIsDirecttoFlightplan(args ...interface{}) SimVar
```
SimVarGpsIsDirecttoFlightplan Simvar args contain optional index and/or unit
#### func [SimVarGpsMagvar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4992) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsMagvar "Go to SimVarGpsMagvar")
```
func SimVarGpsMagvar(args ...interface{}) SimVar
```
SimVarGpsMagvar Simvar args contain optional index and/or unit
#### func [SimVarGpsPositionAlt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4980) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionAlt "Go to SimVarGpsPositionAlt")
```
func SimVarGpsPositionAlt(args ...interface{}) SimVar
```
SimVarGpsPositionAlt Simvar args contain optional index and/or unit
#### func [SimVarGpsPositionLat](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4956) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionLat "Go to SimVarGpsPositionLat")
```
func SimVarGpsPositionLat(args ...interface{}) SimVar
```
SimVarGpsPositionLat Simvar args contain optional index and/or unit
#### func [SimVarGpsPositionLon](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4968) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionLon "Go to SimVarGpsPositionLon")
```
func SimVarGpsPositionLon(args ...interface{}) SimVar
```
SimVarGpsPositionLon Simvar args contain optional index and/or unit
#### func [SimVarGpsTargetAltitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5771) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsTargetAltitude "Go to SimVarGpsTargetAltitude")
```
func SimVarGpsTargetAltitude(args ...interface{}) SimVar
```
SimVarGpsTargetAltitude Simvar args contain optional index and/or unit
#### func [SimVarGpsTargetDistance](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5759) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsTargetDistance "Go to SimVarGpsTargetDistance")
```
func SimVarGpsTargetDistance(args ...interface{}) SimVar
```
SimVarGpsTargetDistance Simvar args contain optional index and/or unit
#### func [SimVarGpsWpBearing](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5112) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpBearing "Go to SimVarGpsWpBearing")
```
func SimVarGpsWpBearing(args ...interface{}) SimVar
```
SimVarGpsWpBearing Simvar args contain optional index and/or unit
#### func [SimVarGpsWpCrossTrk](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5136) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpCrossTrk "Go to SimVarGpsWpCrossTrk")
```
func SimVarGpsWpCrossTrk(args ...interface{}) SimVar
```
SimVarGpsWpCrossTrk Simvar args contain optional index and/or unit
#### func [SimVarGpsWpDesiredTrack](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5148) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpDesiredTrack "Go to SimVarGpsWpDesiredTrack")
```
func SimVarGpsWpDesiredTrack(args ...interface{}) SimVar
```
SimVarGpsWpDesiredTrack Simvar args contain optional index and/or unit
#### func [SimVarGpsWpDistance](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5100) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpDistance "Go to SimVarGpsWpDistance")
```
func SimVarGpsWpDistance(args ...interface{}) SimVar
```
SimVarGpsWpDistance Simvar args contain optional index and/or unit
#### func [SimVarGpsWpEta](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5316) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpEta "Go to SimVarGpsWpEta")
```
func SimVarGpsWpEta(args ...interface{}) SimVar
```
SimVarGpsWpEta Simvar args contain optional index and/or unit
#### func [SimVarGpsWpEte](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5304) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpEte "Go to SimVarGpsWpEte")
```
func SimVarGpsWpEte(args ...interface{}) SimVar
```
SimVarGpsWpEte Simvar args contain optional index and/or unit
#### func [SimVarGpsWpNextAlt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5244) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextAlt "Go to SimVarGpsWpNextAlt")
```
func SimVarGpsWpNextAlt(args ...interface{}) SimVar
```
SimVarGpsWpNextAlt Simvar args contain optional index and/or unit
#### func [SimVarGpsWpNextId](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5735) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextId "Go to SimVarGpsWpNextId")
```
func SimVarGpsWpNextId(args ...interface{}) SimVar
```
SimVarGpsWpNextId Simvar args contain optional index and/or unit
#### func [SimVarGpsWpNextLat](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5220) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextLat "Go to SimVarGpsWpNextLat")
```
func SimVarGpsWpNextLat(args ...interface{}) SimVar
```
SimVarGpsWpNextLat Simvar args contain optional index and/or unit
#### func [SimVarGpsWpNextLon](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5232) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextLon "Go to SimVarGpsWpNextLon")
```
func SimVarGpsWpNextLon(args ...interface{}) SimVar
```
SimVarGpsWpNextLon Simvar args contain optional index and/or unit
#### func [SimVarGpsWpPrevAlt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5292) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevAlt "Go to SimVarGpsWpPrevAlt")
```
func SimVarGpsWpPrevAlt(args ...interface{}) SimVar
```
SimVarGpsWpPrevAlt Simvar args contain optional index and/or unit
#### func [SimVarGpsWpPrevId](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5747) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevId "Go to SimVarGpsWpPrevId")
```
func SimVarGpsWpPrevId(args ...interface{}) SimVar
```
SimVarGpsWpPrevId Simvar args contain optional index and/or unit
#### func [SimVarGpsWpPrevLat](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5268) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevLat "Go to SimVarGpsWpPrevLat")
```
func SimVarGpsWpPrevLat(args ...interface{}) SimVar
```
SimVarGpsWpPrevLat Simvar args contain optional index and/or unit
#### func [SimVarGpsWpPrevLon](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5280) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevLon "Go to SimVarGpsWpPrevLon")
```
func SimVarGpsWpPrevLon(args ...interface{}) SimVar
```
SimVarGpsWpPrevLon Simvar args contain optional index and/or unit
#### func [SimVarGpsWpPrevValid](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5256) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevValid "Go to SimVarGpsWpPrevValid")
```
func SimVarGpsWpPrevValid(args ...interface{}) SimVar
```
SimVarGpsWpPrevValid Simvar args contain optional index and/or unit
#### func [SimVarGpsWpTrackAngleError](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5184) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrackAngleError "Go to SimVarGpsWpTrackAngleError")
```
func SimVarGpsWpTrackAngleError(args ...interface{}) SimVar
```
SimVarGpsWpTrackAngleError Simvar args contain optional index and/or unit
#### func [SimVarGpsWpTrueBearing](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5124) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrueBearing "Go to SimVarGpsWpTrueBearing")
```
func SimVarGpsWpTrueBearing(args ...interface{}) SimVar
```
SimVarGpsWpTrueBearing Simvar args contain optional index and/or unit
#### func [SimVarGpsWpTrueReqHdg](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5160) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrueReqHdg "Go to SimVarGpsWpTrueReqHdg")
```
func SimVarGpsWpTrueReqHdg(args ...interface{}) SimVar
```
SimVarGpsWpTrueReqHdg Simvar args contain optional index and/or unit
#### func [SimVarGpsWpVerticalSpeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5172) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpVerticalSpeed "Go to SimVarGpsWpVerticalSpeed")
```
func SimVarGpsWpVerticalSpeed(args ...interface{}) SimVar
```
SimVarGpsWpVerticalSpeed Simvar args contain optional index and/or unit
#### func [SimVarGpwsSystemActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9846) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpwsSystemActive "Go to SimVarGpwsSystemActive")
```
func SimVarGpwsSystemActive(args ...interface{}) SimVar
```
SimVarGpwsSystemActive Simvar args contain optional index and/or unit
#### func [SimVarGpwsWarning](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9834) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpwsWarning "Go to SimVarGpwsWarning")
```
func SimVarGpwsWarning(args ...interface{}) SimVar
```
SimVarGpwsWarning Simvar args contain optional index and/or unit
#### func [SimVarGroundAltitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3732) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGroundAltitude "Go to SimVarGroundAltitude")
```
func SimVarGroundAltitude(args ...interface{}) SimVar
```
SimVarGroundAltitude Simvar args contain optional index and/or unit
#### func [SimVarGroundVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3384) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGroundVelocity "Go to SimVarGroundVelocity")
```
func SimVarGroundVelocity(args ...interface{}) SimVar
```
SimVarGroundVelocity Simvar args contain optional index and/or unit
#### func [SimVarGyroDriftError](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4032) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGyroDriftError "Go to SimVarGyroDriftError")
```
func SimVarGyroDriftError(args ...interface{}) SimVar
```
SimVarGyroDriftError Simvar args contain optional index and/or unit
#### func [SimVarHeadingIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4020) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHeadingIndicator "Go to SimVarHeadingIndicator")
```
func SimVarHeadingIndicator(args ...interface{}) SimVar
```
SimVarHeadingIndicator Simvar args contain optional index and/or unit
#### func [SimVarHoldbackBarInstalled](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L294) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHoldbackBarInstalled "Go to SimVarHoldbackBarInstalled")
```
func SimVarHoldbackBarInstalled(args ...interface{}) SimVar
```
SimVarHoldbackBarInstalled Simvar args contain optional index and/or unit
#### func [SimVarHsiBearing](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4908) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiBearing "Go to SimVarHsiBearing")
```
func SimVarHsiBearing(args ...interface{}) SimVar
```
SimVarHsiBearing Simvar args contain optional index and/or unit
#### func [SimVarHsiBearingValid](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4896) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiBearingValid "Go to SimVarHsiBearingValid")
```
func SimVarHsiBearingValid(args ...interface{}) SimVar
```
SimVarHsiBearingValid Simvar args contain optional index and/or unit
#### func [SimVarHsiCdiNeedle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4836) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiCdiNeedle "Go to SimVarHsiCdiNeedle")
```
func SimVarHsiCdiNeedle(args ...interface{}) SimVar
```
SimVarHsiCdiNeedle Simvar args contain optional index and/or unit
#### func [SimVarHsiCdiNeedleValid](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4860) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiCdiNeedleValid "Go to SimVarHsiCdiNeedleValid")
```
func SimVarHsiCdiNeedleValid(args ...interface{}) SimVar
```
SimVarHsiCdiNeedleValid Simvar args contain optional index and/or unit
#### func [SimVarHsiDistance](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4944) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiDistance "Go to SimVarHsiDistance")
```
func SimVarHsiDistance(args ...interface{}) SimVar
```
SimVarHsiDistance Simvar args contain optional index and/or unit
#### func [SimVarHsiGsiNeedle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4848) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiGsiNeedle "Go to SimVarHsiGsiNeedle")
```
func SimVarHsiGsiNeedle(args ...interface{}) SimVar
```
SimVarHsiGsiNeedle Simvar args contain optional index and/or unit
#### func [SimVarHsiGsiNeedleValid](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4872) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiGsiNeedleValid "Go to SimVarHsiGsiNeedleValid")
```
func SimVarHsiGsiNeedleValid(args ...interface{}) SimVar
```
SimVarHsiGsiNeedleValid Simvar args contain optional index and/or unit
#### func [SimVarHsiHasLocalizer](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4920) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiHasLocalizer "Go to SimVarHsiHasLocalizer")
```
func SimVarHsiHasLocalizer(args ...interface{}) SimVar
```
SimVarHsiHasLocalizer Simvar args contain optional index and/or unit
#### func [SimVarHsiSpeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4932) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiSpeed "Go to SimVarHsiSpeed")
```
func SimVarHsiSpeed(args ...interface{}) SimVar
```
SimVarHsiSpeed Simvar args contain optional index and/or unit
#### func [SimVarHsiStationIdent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9966) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiStationIdent "Go to SimVarHsiStationIdent")
```
func SimVarHsiStationIdent(args ...interface{}) SimVar
```
SimVarHsiStationIdent Simvar args contain optional index and/or unit
#### func [SimVarHsiTfFlags](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4884) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiTfFlags "Go to SimVarHsiTfFlags")
```
func SimVarHsiTfFlags(args ...interface{}) SimVar
```
SimVarHsiTfFlags Simvar args contain optional index and/or unit
#### func [SimVarHydraulicPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8158) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicPressure "Go to SimVarHydraulicPressure")
```
func SimVarHydraulicPressure(args ...interface{}) SimVar
```
SimVarHydraulicPressure Simvar args contain optional index and/or unit
#### func [SimVarHydraulicReservoirPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8170) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicReservoirPercent "Go to SimVarHydraulicReservoirPercent")
```
func SimVarHydraulicReservoirPercent(args ...interface{}) SimVar
```
SimVarHydraulicReservoirPercent Simvar args contain optional index and/or unit
#### func [SimVarHydraulicSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9176) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicSwitch "Go to SimVarHydraulicSwitch")
```
func SimVarHydraulicSwitch(args ...interface{}) SimVar
```
SimVarHydraulicSwitch Simvar args contain optional index and/or unit
#### func [SimVarHydraulicSystemIntegrity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8182) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicSystemIntegrity "Go to SimVarHydraulicSystemIntegrity")
```
func SimVarHydraulicSystemIntegrity(args ...interface{}) SimVar
```
SimVarHydraulicSystemIntegrity Simvar args contain optional index and/or unit
#### func [SimVarIncidenceAlpha](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3768) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIncidenceAlpha "Go to SimVarIncidenceAlpha")
```
func SimVarIncidenceAlpha(args ...interface{}) SimVar
```
SimVarIncidenceAlpha Simvar args contain optional index and/or unit
#### func [SimVarIncidenceBeta](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3780) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIncidenceBeta "Go to SimVarIncidenceBeta")
```
func SimVarIncidenceBeta(args ...interface{}) SimVar
```
SimVarIncidenceBeta Simvar args contain optional index and/or unit
#### func [SimVarIndicatedAltitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3912) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIndicatedAltitude "Go to SimVarIndicatedAltitude")
```
func SimVarIndicatedAltitude(args ...interface{}) SimVar
```
SimVarIndicatedAltitude Simvar args contain optional index and/or unit
#### func [SimVarInductorCompassHeadingRef](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9464) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInductorCompassHeadingRef "Go to SimVarInductorCompassHeadingRef")
```
func SimVarInductorCompassHeadingRef(args ...interface{}) SimVar
```
SimVarInductorCompassHeadingRef Simvar args contain optional index and/or unit
#### func [SimVarInductorCompassPercentDeviation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9452) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInductorCompassPercentDeviation "Go to SimVarInductorCompassPercentDeviation")
```
func SimVarInductorCompassPercentDeviation(args ...interface{}) SimVar
```
SimVarInductorCompassPercentDeviation Simvar args contain optional index and/or unit
#### func [SimVarInnerMarker](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4776) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInnerMarker "Go to SimVarInnerMarker")
```
func SimVarInnerMarker(args ...interface{}) SimVar
```
SimVarInnerMarker Simvar args contain optional index and/or unit
#### func [SimVarInnerMarkerLatlonalt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1050) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInnerMarkerLatlonalt "Go to SimVarInnerMarkerLatlonalt")
```
func SimVarInnerMarkerLatlonalt(args ...interface{}) SimVar
```
SimVarInnerMarkerLatlonalt Simvar args contain optional index and/or unit
#### func [SimVarIsAltitudeFreezeOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9870) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAltitudeFreezeOn "Go to SimVarIsAltitudeFreezeOn")
```
func SimVarIsAltitudeFreezeOn(args ...interface{}) SimVar
```
SimVarIsAltitudeFreezeOn Simvar args contain optional index and/or unit
#### func [SimVarIsAttachedToSling](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L534) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAttachedToSling "Go to SimVarIsAttachedToSling")
```
func SimVarIsAttachedToSling(args ...interface{}) SimVar
```
SimVarIsAttachedToSling Simvar args contain optional index and/or unit
#### func [SimVarIsAttitudeFreezeOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9882) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAttitudeFreezeOn "Go to SimVarIsAttitudeFreezeOn")
```
func SimVarIsAttitudeFreezeOn(args ...interface{}) SimVar
```
SimVarIsAttitudeFreezeOn Simvar args contain optional index and/or unit
#### func [SimVarIsGearFloats](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6155) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearFloats "Go to SimVarIsGearFloats")
```
func SimVarIsGearFloats(args ...interface{}) SimVar
```
SimVarIsGearFloats Simvar args contain optional index and/or unit
#### func [SimVarIsGearRetractable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6131) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearRetractable "Go to SimVarIsGearRetractable")
```
func SimVarIsGearRetractable(args ...interface{}) SimVar
```
SimVarIsGearRetractable Simvar args contain optional index and/or unit
#### func [SimVarIsGearSkids](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6167) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearSkids "Go to SimVarIsGearSkids")
```
func SimVarIsGearSkids(args ...interface{}) SimVar
```
SimVarIsGearSkids Simvar args contain optional index and/or unit
#### func [SimVarIsGearSkis](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6143) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearSkis "Go to SimVarIsGearSkis")
```
func SimVarIsGearSkis(args ...interface{}) SimVar
```
SimVarIsGearSkis Simvar args contain optional index and/or unit
#### func [SimVarIsGearWheels](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6179) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearWheels "Go to SimVarIsGearWheels")
```
func SimVarIsGearWheels(args ...interface{}) SimVar
```
SimVarIsGearWheels Simvar args contain optional index and/or unit
#### func [SimVarIsLatitudeLongitudeFreezeOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9858) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsLatitudeLongitudeFreezeOn "Go to SimVarIsLatitudeLongitudeFreezeOn")
```
func SimVarIsLatitudeLongitudeFreezeOn(args ...interface{}) SimVar
```
SimVarIsLatitudeLongitudeFreezeOn Simvar args contain optional index and/or unit
#### func [SimVarIsSlewActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8386) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsSlewActive "Go to SimVarIsSlewActive")
```
func SimVarIsSlewActive(args ...interface{}) SimVar
```
SimVarIsSlewActive Simvar args contain optional index and/or unit
#### func [SimVarIsSlewAllowed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8398) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsSlewAllowed "Go to SimVarIsSlewAllowed")
```
func SimVarIsSlewAllowed(args ...interface{}) SimVar
```
SimVarIsSlewAllowed Simvar args contain optional index and/or unit
#### func [SimVarIsTailDragger](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7786) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsTailDragger "Go to SimVarIsTailDragger")
```
func SimVarIsTailDragger(args ...interface{}) SimVar
```
SimVarIsTailDragger Simvar args contain optional index and/or unit
#### func [SimVarIsUserSim](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8242) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsUserSim "Go to SimVarIsUserSim")
```
func SimVarIsUserSim(args ...interface{}) SimVar
```
SimVarIsUserSim Simvar args contain optional index and/or unit
#### func [SimVarKohlsmanSettingHg](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3936) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarKohlsmanSettingHg "Go to SimVarKohlsmanSettingHg")
```
func SimVarKohlsmanSettingHg(args ...interface{}) SimVar
```
SimVarKohlsmanSettingHg Simvar args contain optional index and/or unit
#### func [SimVarKohlsmanSettingMb](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3924) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarKohlsmanSettingMb "Go to SimVarKohlsmanSettingMb")
```
func SimVarKohlsmanSettingMb(args ...interface{}) SimVar
```
SimVarKohlsmanSettingMb Simvar args contain optional index and/or unit
#### func [SimVarLandingLightPbh](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L606) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLandingLightPbh "Go to SimVarLandingLightPbh")
```
func SimVarLandingLightPbh(args ...interface{}) SimVar
```
SimVarLandingLightPbh Simvar args contain optional index and/or unit
#### func [SimVarLaunchbarPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L270) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLaunchbarPosition "Go to SimVarLaunchbarPosition")
```
func SimVarLaunchbarPosition(args ...interface{}) SimVar
```
SimVarLaunchbarPosition Simvar args contain optional index and/or unit
#### func [SimVarLeadingEdgeFlapsLeftAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6107) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsLeftAngle "Go to SimVarLeadingEdgeFlapsLeftAngle")
```
func SimVarLeadingEdgeFlapsLeftAngle(args ...interface{}) SimVar
```
SimVarLeadingEdgeFlapsLeftAngle Simvar args contain optional index and/or unit
#### func [SimVarLeadingEdgeFlapsLeftPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6083) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsLeftPercent "Go to SimVarLeadingEdgeFlapsLeftPercent")
```
func SimVarLeadingEdgeFlapsLeftPercent(args ...interface{}) SimVar
```
SimVarLeadingEdgeFlapsLeftPercent Simvar args contain optional index and/or unit
#### func [SimVarLeadingEdgeFlapsRightAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6119) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsRightAngle "Go to SimVarLeadingEdgeFlapsRightAngle")
```
func SimVarLeadingEdgeFlapsRightAngle(args ...interface{}) SimVar
```
SimVarLeadingEdgeFlapsRightAngle Simvar args contain optional index and/or unit
#### func [SimVarLeadingEdgeFlapsRightPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6095) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsRightPercent "Go to SimVarLeadingEdgeFlapsRightPercent")
```
func SimVarLeadingEdgeFlapsRightPercent(args ...interface{}) SimVar
```
SimVarLeadingEdgeFlapsRightPercent Simvar args contain optional index and/or unit
#### func [SimVarLeftWheelRotationAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7174) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeftWheelRotationAngle "Go to SimVarLeftWheelRotationAngle")
```
func SimVarLeftWheelRotationAngle(args ...interface{}) SimVar
```
SimVarLeftWheelRotationAngle Simvar args contain optional index and/or unit
#### func [SimVarLeftWheelRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6743) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeftWheelRpm "Go to SimVarLeftWheelRpm")
```
func SimVarLeftWheelRpm(args ...interface{}) SimVar
```
SimVarLeftWheelRpm Simvar args contain optional index and/or unit
#### func [SimVarLightBeacon](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3312) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBeacon "Go to SimVarLightBeacon")
```
func SimVarLightBeacon(args ...interface{}) SimVar
```
SimVarLightBeacon Simvar args contain optional index and/or unit
#### func [SimVarLightBeaconOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L738) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBeaconOn "Go to SimVarLightBeaconOn")
```
func SimVarLightBeaconOn(args ...interface{}) SimVar
```
SimVarLightBeaconOn Simvar args contain optional index and/or unit
#### func [SimVarLightBrakeOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L714) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBrakeOn "Go to SimVarLightBrakeOn")
```
func SimVarLightBrakeOn(args ...interface{}) SimVar
```
SimVarLightBrakeOn Simvar args contain optional index and/or unit
#### func [SimVarLightCabin](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3372) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightCabin "Go to SimVarLightCabin")
```
func SimVarLightCabin(args ...interface{}) SimVar
```
SimVarLightCabin Simvar args contain optional index and/or unit
#### func [SimVarLightCabinOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L690) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightCabinOn "Go to SimVarLightCabinOn")
```
func SimVarLightCabinOn(args ...interface{}) SimVar
```
SimVarLightCabinOn Simvar args contain optional index and/or unit
#### func [SimVarLightHeadOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L702) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightHeadOn "Go to SimVarLightHeadOn")
```
func SimVarLightHeadOn(args ...interface{}) SimVar
```
SimVarLightHeadOn Simvar args contain optional index and/or unit
#### func [SimVarLightLanding](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3288) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLanding "Go to SimVarLightLanding")
```
func SimVarLightLanding(args ...interface{}) SimVar
```
SimVarLightLanding Simvar args contain optional index and/or unit
#### func [SimVarLightLandingOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L750) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLandingOn "Go to SimVarLightLandingOn")
```
func SimVarLightLandingOn(args ...interface{}) SimVar
```
SimVarLightLandingOn Simvar args contain optional index and/or unit
#### func [SimVarLightLogo](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3336) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLogo "Go to SimVarLightLogo")
```
func SimVarLightLogo(args ...interface{}) SimVar
```
SimVarLightLogo Simvar args contain optional index and/or unit
#### func [SimVarLightLogoOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L678) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLogoOn "Go to SimVarLightLogoOn")
```
func SimVarLightLogoOn(args ...interface{}) SimVar
```
SimVarLightLogoOn Simvar args contain optional index and/or unit
#### func [SimVarLightNav](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3324) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightNav "Go to SimVarLightNav")
```
func SimVarLightNav(args ...interface{}) SimVar
```
SimVarLightNav Simvar args contain optional index and/or unit
#### func [SimVarLightNavOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L726) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightNavOn "Go to SimVarLightNavOn")
```
func SimVarLightNavOn(args ...interface{}) SimVar
```
SimVarLightNavOn Simvar args contain optional index and/or unit
#### func [SimVarLightOnStates](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L582) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightOnStates "Go to SimVarLightOnStates")
```
func SimVarLightOnStates(args ...interface{}) SimVar
```
SimVarLightOnStates Simvar args contain optional index and/or unit
#### func [SimVarLightPanel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3276) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightPanel "Go to SimVarLightPanel")
```
func SimVarLightPanel(args ...interface{}) SimVar
```
SimVarLightPanel Simvar args contain optional index and/or unit
#### func [SimVarLightPanelOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L642) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightPanelOn "Go to SimVarLightPanelOn")
```
func SimVarLightPanelOn(args ...interface{}) SimVar
```
SimVarLightPanelOn Simvar args contain optional index and/or unit
#### func [SimVarLightRecognition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3360) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightRecognition "Go to SimVarLightRecognition")
```
func SimVarLightRecognition(args ...interface{}) SimVar
```
SimVarLightRecognition Simvar args contain optional index and/or unit
#### func [SimVarLightRecognitionOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L654) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightRecognitionOn "Go to SimVarLightRecognitionOn")
```
func SimVarLightRecognitionOn(args ...interface{}) SimVar
```
SimVarLightRecognitionOn Simvar args contain optional index and/or unit
#### func [SimVarLightStates](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L594) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStates "Go to SimVarLightStates")
```
func SimVarLightStates(args ...interface{}) SimVar
```
SimVarLightStates Simvar args contain optional index and/or unit
#### func [SimVarLightStrobe](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3264) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStrobe "Go to SimVarLightStrobe")
```
func SimVarLightStrobe(args ...interface{}) SimVar
```
SimVarLightStrobe Simvar args contain optional index and/or unit
#### func [SimVarLightStrobeOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L630) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStrobeOn "Go to SimVarLightStrobeOn")
```
func SimVarLightStrobeOn(args ...interface{}) SimVar
```
SimVarLightStrobeOn Simvar args contain optional index and/or unit
#### func [SimVarLightTaxi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3300) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightTaxi "Go to SimVarLightTaxi")
```
func SimVarLightTaxi(args ...interface{}) SimVar
```
SimVarLightTaxi Simvar args contain optional index and/or unit
#### func [SimVarLightTaxiOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L618) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightTaxiOn "Go to SimVarLightTaxiOn")
```
func SimVarLightTaxiOn(args ...interface{}) SimVar
```
SimVarLightTaxiOn Simvar args contain optional index and/or unit
#### func [SimVarLightWing](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3348) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightWing "Go to SimVarLightWing")
```
func SimVarLightWing(args ...interface{}) SimVar
```
SimVarLightWing Simvar args contain optional index and/or unit
#### func [SimVarLightWingOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L666) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightWingOn "Go to SimVarLightWingOn")
```
func SimVarLightWingOn(args ...interface{}) SimVar
```
SimVarLightWingOn Simvar args contain optional index and/or unit
#### func [SimVarLinearClAlpha](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8744) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLinearClAlpha "Go to SimVarLinearClAlpha")
```
func SimVarLinearClAlpha(args ...interface{}) SimVar
```
SimVarLinearClAlpha Simvar args contain optional index and/or unit
#### func [SimVarLocalDayOfMonth](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10122) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfMonth "Go to SimVarLocalDayOfMonth")
```
func SimVarLocalDayOfMonth(args ...interface{}) SimVar
```
SimVarLocalDayOfMonth Simvar args contain optional index and/or unit
#### func [SimVarLocalDayOfWeek](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10110) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfWeek "Go to SimVarLocalDayOfWeek")
```
func SimVarLocalDayOfWeek(args ...interface{}) SimVar
```
SimVarLocalDayOfWeek Simvar args contain optional index and/or unit
#### func [SimVarLocalDayOfYear](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10146) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfYear "Go to SimVarLocalDayOfYear")
```
func SimVarLocalDayOfYear(args ...interface{}) SimVar
```
SimVarLocalDayOfYear Simvar args contain optional index and/or unit
#### func [SimVarLocalMonthOfYear](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10134) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalMonthOfYear "Go to SimVarLocalMonthOfYear")
```
func SimVarLocalMonthOfYear(args ...interface{}) SimVar
```
SimVarLocalMonthOfYear Simvar args contain optional index and/or unit
#### func [SimVarLocalTime](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10098) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalTime "Go to SimVarLocalTime")
```
func SimVarLocalTime(args ...interface{}) SimVar
```
SimVarLocalTime Simvar args contain optional index and/or unit
#### func [SimVarLocalYear](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10158) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalYear "Go to SimVarLocalYear")
```
func SimVarLocalYear(args ...interface{}) SimVar
```
SimVarLocalYear Simvar args contain optional index and/or unit
#### func [SimVarMachMaxOperate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3864) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMachMaxOperate "Go to SimVarMachMaxOperate")
```
func SimVarMachMaxOperate(args ...interface{}) SimVar
```
SimVarMachMaxOperate Simvar args contain optional index and/or unit
#### func [SimVarMagneticCompass](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8612) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMagneticCompass "Go to SimVarMagneticCompass")
```
func SimVarMagneticCompass(args ...interface{}) SimVar
```
SimVarMagneticCompass Simvar args contain optional index and/or unit
#### func [SimVarMagvar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3720) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMagvar "Go to SimVarMagvar")
```
func SimVarMagvar(args ...interface{}) SimVar
```
SimVarMagvar Simvar args contain optional index and/or unit
#### func [SimVarManualFuelPumpHandle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9140) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualFuelPumpHandle "Go to SimVarManualFuelPumpHandle")
```
func SimVarManualFuelPumpHandle(args ...interface{}) SimVar
```
SimVarManualFuelPumpHandle Simvar args contain optional index and/or unit
#### func [SimVarManualInstrumentLights](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9248) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualInstrumentLights "Go to SimVarManualInstrumentLights")
```
func SimVarManualInstrumentLights(args ...interface{}) SimVar
```
SimVarManualInstrumentLights Simvar args contain optional index and/or unit
#### func [SimVarMarkerBeaconState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4764) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMarkerBeaconState "Go to SimVarMarkerBeaconState")
```
func SimVarMarkerBeaconState(args ...interface{}) SimVar
```
SimVarMarkerBeaconState Simvar args contain optional index and/or unit
#### func [SimVarMarkerSound](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4380) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMarkerSound "Go to SimVarMarkerSound")
```
func SimVarMarkerSound(args ...interface{}) SimVar
```
SimVarMarkerSound Simvar args contain optional index and/or unit
#### func [SimVarMasterIgnitionSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1350) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMasterIgnitionSwitch "Go to SimVarMasterIgnitionSwitch")
```
func SimVarMasterIgnitionSwitch(args ...interface{}) SimVar
```
SimVarMasterIgnitionSwitch Simvar args contain optional index and/or unit
#### func [SimVarMaxGForce](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4296) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxGForce "Go to SimVarMaxGForce")
```
func SimVarMaxGForce(args ...interface{}) SimVar
```
SimVarMaxGForce Simvar args contain optional index and/or unit
#### func [SimVarMaxGrossWeight](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8218) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxGrossWeight "Go to SimVarMaxGrossWeight")
```
func SimVarMaxGrossWeight(args ...interface{}) SimVar
```
SimVarMaxGrossWeight Simvar args contain optional index and/or unit
#### func [SimVarMaxRatedEngineRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9032) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxRatedEngineRpm "Go to SimVarMaxRatedEngineRpm")
```
func SimVarMaxRatedEngineRpm(args ...interface{}) SimVar
```
SimVarMaxRatedEngineRpm Simvar args contain optional index and/or unit
#### func [SimVarMiddleMarker](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4788) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMiddleMarker "Go to SimVarMiddleMarker")
```
func SimVarMiddleMarker(args ...interface{}) SimVar
```
SimVarMiddleMarker Simvar args contain optional index and/or unit
#### func [SimVarMiddleMarkerLatlonalt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1062) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMiddleMarkerLatlonalt "Go to SimVarMiddleMarkerLatlonalt")
```
func SimVarMiddleMarkerLatlonalt(args ...interface{}) SimVar
```
SimVarMiddleMarkerLatlonalt Simvar args contain optional index and/or unit
#### func [SimVarMinDragVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8338) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMinDragVelocity "Go to SimVarMinDragVelocity")
```
func SimVarMinDragVelocity(args ...interface{}) SimVar
```
SimVarMinDragVelocity Simvar args contain optional index and/or unit
#### func [SimVarMinGForce](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4308) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMinGForce "Go to SimVarMinGForce")
```
func SimVarMinGForce(args ...interface{}) SimVar
```
SimVarMinGForce Simvar args contain optional index and/or unit
#### func [SimVarNavActiveFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4464) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavActiveFrequency "Go to SimVarNavActiveFrequency")
```
func SimVarNavActiveFrequency(args ...interface{}) SimVar
```
SimVarNavActiveFrequency Simvar args contain optional index and/or unit
#### func [SimVarNavAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4452) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavAvailable "Go to SimVarNavAvailable")
```
func SimVarNavAvailable(args ...interface{}) SimVar
```
SimVarNavAvailable Simvar args contain optional index and/or unit
#### func [SimVarNavBackCourseFlags](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4548) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavBackCourseFlags "Go to SimVarNavBackCourseFlags")
```
func SimVarNavBackCourseFlags(args ...interface{}) SimVar
```
SimVarNavBackCourseFlags Simvar args contain optional index and/or unit
#### func [SimVarNavCdi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4620) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavCdi "Go to SimVarNavCdi")
```
func SimVarNavCdi(args ...interface{}) SimVar
```
SimVarNavCdi Simvar args contain optional index and/or unit
#### func [SimVarNavCodes](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5687) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavCodes "Go to SimVarNavCodes")
```
func SimVarNavCodes(args ...interface{}) SimVar
```
SimVarNavCodes Simvar args contain optional index and/or unit
#### func [SimVarNavDme](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4680) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDme "Go to SimVarNavDme")
```
func SimVarNavDme(args ...interface{}) SimVar
```
SimVarNavDme Simvar args contain optional index and/or unit
#### func [SimVarNavDmeLatlonalt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1038) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDmeLatlonalt "Go to SimVarNavDmeLatlonalt")
```
func SimVarNavDmeLatlonalt(args ...interface{}) SimVar
```
SimVarNavDmeLatlonalt Simvar args contain optional index and/or unit
#### func [SimVarNavDmespeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4692) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDmespeed "Go to SimVarNavDmespeed")
```
func SimVarNavDmespeed(args ...interface{}) SimVar
```
SimVarNavDmespeed Simvar args contain optional index and/or unit
#### func [SimVarNavGlideSlope](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5699) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGlideSlope "Go to SimVarNavGlideSlope")
```
func SimVarNavGlideSlope(args ...interface{}) SimVar
```
SimVarNavGlideSlope Simvar args contain optional index and/or unit
#### func [SimVarNavGlideSlopeError](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4608) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGlideSlopeError "Go to SimVarNavGlideSlopeError")
```
func SimVarNavGlideSlopeError(args ...interface{}) SimVar
```
SimVarNavGlideSlopeError Simvar args contain optional index and/or unit
#### func [SimVarNavGsFlag](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4656) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsFlag "Go to SimVarNavGsFlag")
```
func SimVarNavGsFlag(args ...interface{}) SimVar
```
SimVarNavGsFlag Simvar args contain optional index and/or unit
#### func [SimVarNavGsLatlonalt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1026) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsLatlonalt "Go to SimVarNavGsLatlonalt")
```
func SimVarNavGsLatlonalt(args ...interface{}) SimVar
```
SimVarNavGsLatlonalt Simvar args contain optional index and/or unit
#### func [SimVarNavGsLlaf64](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9570) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsLlaf64 "Go to SimVarNavGsLlaf64")
```
func SimVarNavGsLlaf64(args ...interface{}) SimVar
```
SimVarNavGsLlaf64 Simvar
#### func [SimVarNavGsi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4632) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsi "Go to SimVarNavGsi")
```
func SimVarNavGsi(args ...interface{}) SimVar
```
SimVarNavGsi Simvar args contain optional index and/or unit
#### func [SimVarNavHasDme](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4524) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasDme "Go to SimVarNavHasDme")
```
func SimVarNavHasDme(args ...interface{}) SimVar
```
SimVarNavHasDme Simvar args contain optional index and/or unit
#### func [SimVarNavHasGlideSlope](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4536) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasGlideSlope "Go to SimVarNavHasGlideSlope")
```
func SimVarNavHasGlideSlope(args ...interface{}) SimVar
```
SimVarNavHasGlideSlope Simvar args contain optional index and/or unit
#### func [SimVarNavHasLocalizer](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4512) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasLocalizer "Go to SimVarNavHasLocalizer")
```
func SimVarNavHasLocalizer(args ...interface{}) SimVar
```
SimVarNavHasLocalizer Simvar args contain optional index and/or unit
#### func [SimVarNavHasNav](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4500) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasNav "Go to SimVarNavHasNav")
```
func SimVarNavHasNav(args ...interface{}) SimVar
```
SimVarNavHasNav Simvar args contain optional index and/or unit
#### func [SimVarNavIdent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5663) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavIdent "Go to SimVarNavIdent")
```
func SimVarNavIdent(args ...interface{}) SimVar
```
SimVarNavIdent Simvar args contain optional index and/or unit
#### func [SimVarNavLocalizer](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4596) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavLocalizer "Go to SimVarNavLocalizer")
```
func SimVarNavLocalizer(args ...interface{}) SimVar
```
SimVarNavLocalizer Simvar args contain optional index and/or unit
#### func [SimVarNavMagvar](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4560) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavMagvar "Go to SimVarNavMagvar")
```
func SimVarNavMagvar(args ...interface{}) SimVar
```
SimVarNavMagvar Simvar args contain optional index and/or unit
#### func [SimVarNavName](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5675) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavName "Go to SimVarNavName")
```
func SimVarNavName(args ...interface{}) SimVar
```
SimVarNavName Simvar args contain optional index and/or unit
#### func [SimVarNavObs](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4668) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavObs "Go to SimVarNavObs")
```
func SimVarNavObs(args ...interface{}) SimVar
```
SimVarNavObs Simvar args contain optional index and/or unit
#### func [SimVarNavRadial](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4572) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRadial "Go to SimVarNavRadial")
```
func SimVarNavRadial(args ...interface{}) SimVar
```
SimVarNavRadial Simvar args contain optional index and/or unit
#### func [SimVarNavRadialError](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4584) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRadialError "Go to SimVarNavRadialError")
```
func SimVarNavRadialError(args ...interface{}) SimVar
```
SimVarNavRadialError Simvar args contain optional index and/or unit
#### func [SimVarNavRawGlideSlope](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4812) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRawGlideSlope "Go to SimVarNavRawGlideSlope")
```
func SimVarNavRawGlideSlope(args ...interface{}) SimVar
```
SimVarNavRawGlideSlope Simvar args contain optional index and/or unit
#### func [SimVarNavRelativeBearingToStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5711) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRelativeBearingToStation "Go to SimVarNavRelativeBearingToStation")
```
func SimVarNavRelativeBearingToStation(args ...interface{}) SimVar
```
SimVarNavRelativeBearingToStation Simvar args contain optional index and/or unit
#### func [SimVarNavSignal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4488) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavSignal "Go to SimVarNavSignal")
```
func SimVarNavSignal(args ...interface{}) SimVar
```
SimVarNavSignal Simvar args contain optional index and/or unit
#### func [SimVarNavSound](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4344) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavSound "Go to SimVarNavSound")
```
func SimVarNavSound(args ...interface{}) SimVar
```
SimVarNavSound Simvar args contain optional index and/or unit
#### func [SimVarNavStandbyFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4476) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavStandbyFrequency "Go to SimVarNavStandbyFrequency")
```
func SimVarNavStandbyFrequency(args ...interface{}) SimVar
```
SimVarNavStandbyFrequency Simvar args contain optional index and/or unit
#### func [SimVarNavTofrom](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4644) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavTofrom "Go to SimVarNavTofrom")
```
func SimVarNavTofrom(args ...interface{}) SimVar
```
SimVarNavTofrom Simvar args contain optional index and/or unit
#### func [SimVarNavVorLatlonalt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1014) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavVorLatlonalt "Go to SimVarNavVorLatlonalt")
```
func SimVarNavVorLatlonalt(args ...interface{}) SimVar
```
SimVarNavVorLatlonalt Simvar args contain optional index and/or unit
#### func [SimVarNavVorLlaf64](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9559) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavVorLlaf64 "Go to SimVarNavVorLlaf64")
```
func SimVarNavVorLlaf64(args ...interface{}) SimVar
```
SimVarNavVorLlaf64 Simvar
#### func [SimVarNumFuelSelectors](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3228) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumFuelSelectors "Go to SimVarNumFuelSelectors")
```
func SimVarNumFuelSelectors(args ...interface{}) SimVar
```
SimVarNumFuelSelectors Simvar args contain optional index and/or unit
#### func [SimVarNumberOfCatapults](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L282) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumberOfCatapults "Go to SimVarNumberOfCatapults")
```
func SimVarNumberOfCatapults(args ...interface{}) SimVar
```
SimVarNumberOfCatapults Simvar args contain optional index and/or unit
#### func [SimVarNumberOfEngines](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1302) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumberOfEngines "Go to SimVarNumberOfEngines")
```
func SimVarNumberOfEngines(args ...interface{}) SimVar
```
SimVarNumberOfEngines Simvar args contain optional index and/or unit
#### func [SimVarOuterMarker](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4800) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOuterMarker "Go to SimVarOuterMarker")
```
func SimVarOuterMarker(args ...interface{}) SimVar
```
SimVarOuterMarker Simvar args contain optional index and/or unit
#### func [SimVarOuterMarkerLatlonalt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1074) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOuterMarkerLatlonalt "Go to SimVarOuterMarkerLatlonalt")
```
func SimVarOuterMarkerLatlonalt(args ...interface{}) SimVar
```
SimVarOuterMarkerLatlonalt Simvar args contain optional index and/or unit
#### func [SimVarOverspeedWarning](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3888) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOverspeedWarning "Go to SimVarOverspeedWarning")
```
func SimVarOverspeedWarning(args ...interface{}) SimVar
```
SimVarOverspeedWarning Simvar args contain optional index and/or unit
#### func [SimVarPanelAntiIceSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8696) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPanelAntiIceSwitch "Go to SimVarPanelAntiIceSwitch")
```
func SimVarPanelAntiIceSwitch(args ...interface{}) SimVar
```
SimVarPanelAntiIceSwitch Simvar args contain optional index and/or unit
#### func [SimVarPanelAutoFeatherSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2294) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPanelAutoFeatherSwitch "Go to SimVarPanelAutoFeatherSwitch")
```
func SimVarPanelAutoFeatherSwitch(args ...interface{}) SimVar
```
SimVarPanelAutoFeatherSwitch Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelAdf](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4092) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAdf "Go to SimVarPartialPanelAdf")
```
func SimVarPartialPanelAdf(args ...interface{}) SimVar
```
SimVarPartialPanelAdf Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelAirspeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4104) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAirspeed "Go to SimVarPartialPanelAirspeed")
```
func SimVarPartialPanelAirspeed(args ...interface{}) SimVar
```
SimVarPartialPanelAirspeed Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelAltimeter](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4116) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAltimeter "Go to SimVarPartialPanelAltimeter")
```
func SimVarPartialPanelAltimeter(args ...interface{}) SimVar
```
SimVarPartialPanelAltimeter Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelAttitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4128) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAttitude "Go to SimVarPartialPanelAttitude")
```
func SimVarPartialPanelAttitude(args ...interface{}) SimVar
```
SimVarPartialPanelAttitude Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelAvionics](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4176) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAvionics "Go to SimVarPartialPanelAvionics")
```
func SimVarPartialPanelAvionics(args ...interface{}) SimVar
```
SimVarPartialPanelAvionics Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelComm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4140) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelComm "Go to SimVarPartialPanelComm")
```
func SimVarPartialPanelComm(args ...interface{}) SimVar
```
SimVarPartialPanelComm Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelCompass](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4152) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelCompass "Go to SimVarPartialPanelCompass")
```
func SimVarPartialPanelCompass(args ...interface{}) SimVar
```
SimVarPartialPanelCompass Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelElectrical](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4164) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelElectrical "Go to SimVarPartialPanelElectrical")
```
func SimVarPartialPanelElectrical(args ...interface{}) SimVar
```
SimVarPartialPanelElectrical Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelEngine](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4188) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelEngine "Go to SimVarPartialPanelEngine")
```
func SimVarPartialPanelEngine(args ...interface{}) SimVar
```
SimVarPartialPanelEngine Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelFuelIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4200) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelFuelIndicator "Go to SimVarPartialPanelFuelIndicator")
```
func SimVarPartialPanelFuelIndicator(args ...interface{}) SimVar
```
SimVarPartialPanelFuelIndicator Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelHeading](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4212) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelHeading "Go to SimVarPartialPanelHeading")
```
func SimVarPartialPanelHeading(args ...interface{}) SimVar
```
SimVarPartialPanelHeading Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelNav](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4248) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelNav "Go to SimVarPartialPanelNav")
```
func SimVarPartialPanelNav(args ...interface{}) SimVar
```
SimVarPartialPanelNav Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelPitot](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4260) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelPitot "Go to SimVarPartialPanelPitot")
```
func SimVarPartialPanelPitot(args ...interface{}) SimVar
```
SimVarPartialPanelPitot Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelTransponder](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4236) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelTransponder "Go to SimVarPartialPanelTransponder")
```
func SimVarPartialPanelTransponder(args ...interface{}) SimVar
```
SimVarPartialPanelTransponder Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelTurnCoordinator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4272) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelTurnCoordinator "Go to SimVarPartialPanelTurnCoordinator")
```
func SimVarPartialPanelTurnCoordinator(args ...interface{}) SimVar
```
SimVarPartialPanelTurnCoordinator Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelVacuum](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4284) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelVacuum "Go to SimVarPartialPanelVacuum")
```
func SimVarPartialPanelVacuum(args ...interface{}) SimVar
```
SimVarPartialPanelVacuum Simvar args contain optional index and/or unit
#### func [SimVarPartialPanelVerticalVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4224) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelVerticalVelocity "Go to SimVarPartialPanelVerticalVelocity")
```
func SimVarPartialPanelVerticalVelocity(args ...interface{}) SimVar
```
SimVarPartialPanelVerticalVelocity Simvar args contain optional index and/or unit
#### func [SimVarPayloadStationCount](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8446) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationCount "Go to SimVarPayloadStationCount")
```
func SimVarPayloadStationCount(args ...interface{}) SimVar
```
SimVarPayloadStationCount Simvar args contain optional index and/or unit
#### func [SimVarPayloadStationName](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8828) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationName "Go to SimVarPayloadStationName")
```
func SimVarPayloadStationName(args ...interface{}) SimVar
```
SimVarPayloadStationName Simvar args contain optional index and/or unit
#### func [SimVarPayloadStationNumSimobjects](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L450) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationNumSimobjects "Go to SimVarPayloadStationNumSimobjects")
```
func SimVarPayloadStationNumSimobjects(args ...interface{}) SimVar
```
SimVarPayloadStationNumSimobjects Simvar args contain optional index and/or unit
#### func [SimVarPayloadStationObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L438) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationObject "Go to SimVarPayloadStationObject")
```
func SimVarPayloadStationObject(args ...interface{}) SimVar
```
SimVarPayloadStationObject Simvar args contain optional index and/or unit
#### func [SimVarPayloadStationWeight](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8434) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationWeight "Go to SimVarPayloadStationWeight")
```
func SimVarPayloadStationWeight(args ...interface{}) SimVar
```
SimVarPayloadStationWeight Simvar args contain optional index and/or unit
#### func [SimVarPitotHeat](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7666) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPitotHeat "Go to SimVarPitotHeat")
```
func SimVarPitotHeat(args ...interface{}) SimVar
```
SimVarPitotHeat Simvar args contain optional index and/or unit
#### func [SimVarPitotIcePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9260) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPitotIcePct "Go to SimVarPitotIcePct")
```
func SimVarPitotIcePct(args ...interface{}) SimVar
```
SimVarPitotIcePct Simvar args contain optional index and/or unit
#### func [SimVarPlaneAltAboveGround](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3624) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneAltAboveGround "Go to SimVarPlaneAltAboveGround")
```
func SimVarPlaneAltAboveGround(args ...interface{}) SimVar
```
SimVarPlaneAltAboveGround Simvar args contain optional index and/or unit
#### func [SimVarPlaneAltitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3660) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneAltitude "Go to SimVarPlaneAltitude")
```
func SimVarPlaneAltitude(args ...interface{}) SimVar
```
SimVarPlaneAltitude Simvar args contain optional index and/or unit
#### func [SimVarPlaneBankDegrees](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3684) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneBankDegrees "Go to SimVarPlaneBankDegrees")
```
func SimVarPlaneBankDegrees(args ...interface{}) SimVar
```
SimVarPlaneBankDegrees Simvar args contain optional index and/or unit
#### func [SimVarPlaneHeadingDegreesGyro](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4008) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesGyro "Go to SimVarPlaneHeadingDegreesGyro")
```
func SimVarPlaneHeadingDegreesGyro(args ...interface{}) SimVar
```
SimVarPlaneHeadingDegreesGyro Simvar args contain optional index and/or unit
#### func [SimVarPlaneHeadingDegreesMagnetic](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3708) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesMagnetic "Go to SimVarPlaneHeadingDegreesMagnetic")
```
func SimVarPlaneHeadingDegreesMagnetic(args ...interface{}) SimVar
```
SimVarPlaneHeadingDegreesMagnetic Simvar args contain optional index and/or unit
#### func [SimVarPlaneHeadingDegreesTrue](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3696) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesTrue "Go to SimVarPlaneHeadingDegreesTrue")
```
func SimVarPlaneHeadingDegreesTrue(args ...interface{}) SimVar
```
SimVarPlaneHeadingDegreesTrue Simvar args contain optional index and/or unit
#### func [SimVarPlaneLatitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3636) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneLatitude "Go to SimVarPlaneLatitude")
```
func SimVarPlaneLatitude(args ...interface{}) SimVar
```
SimVarPlaneLatitude Simvar args contain optional index and/or unit
#### func [SimVarPlaneLongitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3648) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneLongitude "Go to SimVarPlaneLongitude")
```
func SimVarPlaneLongitude(args ...interface{}) SimVar
```
SimVarPlaneLongitude Simvar args contain optional index and/or unit
#### func [SimVarPlanePitchDegrees](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3672) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlanePitchDegrees "Go to SimVarPlanePitchDegrees")
```
func SimVarPlanePitchDegrees(args ...interface{}) SimVar
```
SimVarPlanePitchDegrees Simvar args contain optional index and/or unit
#### func [SimVarPressureAltitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8600) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressureAltitude "Go to SimVarPressureAltitude")
```
func SimVarPressureAltitude(args ...interface{}) SimVar
```
SimVarPressureAltitude Simvar args contain optional index and/or unit
#### func [SimVarPressurizationCabinAltitude](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9726) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitude "Go to SimVarPressurizationCabinAltitude")
```
func SimVarPressurizationCabinAltitude(args ...interface{}) SimVar
```
SimVarPressurizationCabinAltitude Simvar args contain optional index and/or unit
#### func [SimVarPressurizationCabinAltitudeGoal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9738) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitudeGoal "Go to SimVarPressurizationCabinAltitudeGoal")
```
func SimVarPressurizationCabinAltitudeGoal(args ...interface{}) SimVar
```
SimVarPressurizationCabinAltitudeGoal Simvar args contain optional index and/or unit
#### func [SimVarPressurizationCabinAltitudeRate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9750) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitudeRate "Go to SimVarPressurizationCabinAltitudeRate")
```
func SimVarPressurizationCabinAltitudeRate(args ...interface{}) SimVar
```
SimVarPressurizationCabinAltitudeRate Simvar args contain optional index and/or unit
#### func [SimVarPressurizationDumpSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9774) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationDumpSwitch "Go to SimVarPressurizationDumpSwitch")
```
func SimVarPressurizationDumpSwitch(args ...interface{}) SimVar
```
SimVarPressurizationDumpSwitch Simvar args contain optional index and/or unit
#### func [SimVarPressurizationPressureDifferential](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9762) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationPressureDifferential "Go to SimVarPressurizationPressureDifferential")
```
func SimVarPressurizationPressureDifferential(args ...interface{}) SimVar
```
SimVarPressurizationPressureDifferential Simvar args contain optional index and/or unit
#### func [SimVarPropAutoCruiseActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9056) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropAutoCruiseActive "Go to SimVarPropAutoCruiseActive")
```
func SimVarPropAutoCruiseActive(args ...interface{}) SimVar
```
SimVarPropAutoCruiseActive Simvar args contain optional index and/or unit
#### func [SimVarPropAutoFeatherArmed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2270) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropAutoFeatherArmed "Go to SimVarPropAutoFeatherArmed")
```
func SimVarPropAutoFeatherArmed(args ...interface{}) SimVar
```
SimVarPropAutoFeatherArmed Simvar args contain optional index and/or unit
#### func [SimVarPropBeta](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2222) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBeta "Go to SimVarPropBeta")
```
func SimVarPropBeta(args ...interface{}) SimVar
```
SimVarPropBeta Simvar args contain optional index and/or unit
#### func [SimVarPropBetaMax](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9080) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMax "Go to SimVarPropBetaMax")
```
func SimVarPropBetaMax(args ...interface{}) SimVar
```
SimVarPropBetaMax Simvar args contain optional index and/or unit
#### func [SimVarPropBetaMin](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9092) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMin "Go to SimVarPropBetaMin")
```
func SimVarPropBetaMin(args ...interface{}) SimVar
```
SimVarPropBetaMin Simvar args contain optional index and/or unit
#### func [SimVarPropBetaMinReverse](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9104) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMinReverse "Go to SimVarPropBetaMinReverse")
```
func SimVarPropBetaMinReverse(args ...interface{}) SimVar
```
SimVarPropBetaMinReverse Simvar args contain optional index and/or unit
#### func [SimVarPropDeiceSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2318) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropDeiceSwitch "Go to SimVarPropDeiceSwitch")
```
func SimVarPropDeiceSwitch(args ...interface{}) SimVar
```
SimVarPropDeiceSwitch Simvar args contain optional index and/or unit
#### func [SimVarPropFeatherSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2282) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeatherSwitch "Go to SimVarPropFeatherSwitch")
```
func SimVarPropFeatherSwitch(args ...interface{}) SimVar
```
SimVarPropFeatherSwitch Simvar args contain optional index and/or unit
#### func [SimVarPropFeathered](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2246) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeathered "Go to SimVarPropFeathered")
```
func SimVarPropFeathered(args ...interface{}) SimVar
```
SimVarPropFeathered Simvar args contain optional index and/or unit
#### func [SimVarPropFeatheringInhibit](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2234) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeatheringInhibit "Go to SimVarPropFeatheringInhibit")
```
func SimVarPropFeatheringInhibit(args ...interface{}) SimVar
```
SimVarPropFeatheringInhibit Simvar args contain optional index and/or unit
#### func [SimVarPropMaxRpmPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2198) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropMaxRpmPercent "Go to SimVarPropMaxRpmPercent")
```
func SimVarPropMaxRpmPercent(args ...interface{}) SimVar
```
SimVarPropMaxRpmPercent Simvar args contain optional index and/or unit
#### func [SimVarPropRotationAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9068) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropRotationAngle "Go to SimVarPropRotationAngle")
```
func SimVarPropRotationAngle(args ...interface{}) SimVar
```
SimVarPropRotationAngle Simvar args contain optional index and/or unit
#### func [SimVarPropRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2186) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropRpm "Go to SimVarPropRpm")
```
func SimVarPropRpm(args ...interface{}) SimVar
```
SimVarPropRpm Simvar args contain optional index and/or unit
#### func [SimVarPropSyncActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2306) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropSyncActive "Go to SimVarPropSyncActive")
```
func SimVarPropSyncActive(args ...interface{}) SimVar
```
SimVarPropSyncActive Simvar args contain optional index and/or unit
#### func [SimVarPropSyncDeltaLever](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2258) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropSyncDeltaLever "Go to SimVarPropSyncDeltaLever")
```
func SimVarPropSyncDeltaLever(args ...interface{}) SimVar
```
SimVarPropSyncDeltaLever Simvar args contain optional index and/or unit
#### func [SimVarPropThrust](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2210) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropThrust "Go to SimVarPropThrust")
```
func SimVarPropThrust(args ...interface{}) SimVar
```
SimVarPropThrust Simvar args contain optional index and/or unit
#### func [SimVarPushbackAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9368) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackAngle "Go to SimVarPushbackAngle")
```
func SimVarPushbackAngle(args ...interface{}) SimVar
```
SimVarPushbackAngle Simvar args contain optional index and/or unit
#### func [SimVarPushbackContactx](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9380) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContactx "Go to SimVarPushbackContactx")
```
func SimVarPushbackContactx(args ...interface{}) SimVar
```
SimVarPushbackContactx Simvar args contain optional index and/or unit
#### func [SimVarPushbackContacty](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9392) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContacty "Go to SimVarPushbackContacty")
```
func SimVarPushbackContacty(args ...interface{}) SimVar
```
SimVarPushbackContacty Simvar args contain optional index and/or unit
#### func [SimVarPushbackContactz](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9404) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContactz "Go to SimVarPushbackContactz")
```
func SimVarPushbackContactz(args ...interface{}) SimVar
```
SimVarPushbackContactz Simvar args contain optional index and/or unit
#### func [SimVarPushbackState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7822) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackState "Go to SimVarPushbackState")
```
func SimVarPushbackState(args ...interface{}) SimVar
```
SimVarPushbackState Simvar args contain optional index and/or unit
#### func [SimVarPushbackWait](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9416) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackWait "Go to SimVarPushbackWait")
```
func SimVarPushbackWait(args ...interface{}) SimVar
```
SimVarPushbackWait Simvar args contain optional index and/or unit
#### func [SimVarRadInsSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9296) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRadInsSwitch "Go to SimVarRadInsSwitch")
```
func SimVarRadInsSwitch(args ...interface{}) SimVar
```
SimVarRadInsSwitch Simvar args contain optional index and/or unit
#### func [SimVarRadioHeight](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4080) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRadioHeight "Go to SimVarRadioHeight")
```
func SimVarRadioHeight(args ...interface{}) SimVar
```
SimVarRadioHeight Simvar args contain optional index and/or unit
#### func [SimVarRealism](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8302) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealism "Go to SimVarRealism")
```
func SimVarRealism(args ...interface{}) SimVar
```
SimVarRealism Simvar args contain optional index and/or unit
#### func [SimVarRealismCrashDetection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9236) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealismCrashDetection "Go to SimVarRealismCrashDetection")
```
func SimVarRealismCrashDetection(args ...interface{}) SimVar
```
SimVarRealismCrashDetection Simvar args contain optional index and/or unit
#### func [SimVarRealismCrashWithOthers](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9224) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealismCrashWithOthers "Go to SimVarRealismCrashWithOthers")
```
func SimVarRealismCrashWithOthers(args ...interface{}) SimVar
```
SimVarRealismCrashWithOthers Simvar args contain optional index and/or unit
#### func [SimVarRecipCarburetorTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1902) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipCarburetorTemperature "Go to SimVarRecipCarburetorTemperature")
```
func SimVarRecipCarburetorTemperature(args ...interface{}) SimVar
```
SimVarRecipCarburetorTemperature Simvar args contain optional index and/or unit
#### func [SimVarRecipEngAlternateAirPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1686) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAlternateAirPosition "Go to SimVarRecipEngAlternateAirPosition")
```
func SimVarRecipEngAlternateAirPosition(args ...interface{}) SimVar
```
SimVarRecipEngAlternateAirPosition Simvar args contain optional index and/or unit
#### func [SimVarRecipEngAntidetonationTankMaxQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L390) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankMaxQuantity "Go to SimVarRecipEngAntidetonationTankMaxQuantity")
```
func SimVarRecipEngAntidetonationTankMaxQuantity(args ...interface{}) SimVar
```
SimVarRecipEngAntidetonationTankMaxQuantity Simvar args contain optional index and/or unit
#### func [SimVarRecipEngAntidetonationTankQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L378) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankQuantity "Go to SimVarRecipEngAntidetonationTankQuantity")
```
func SimVarRecipEngAntidetonationTankQuantity(args ...interface{}) SimVar
```
SimVarRecipEngAntidetonationTankQuantity Simvar args contain optional index and/or unit
#### func [SimVarRecipEngAntidetonationTankValve](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L366) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankValve "Go to SimVarRecipEngAntidetonationTankValve")
```
func SimVarRecipEngAntidetonationTankValve(args ...interface{}) SimVar
```
SimVarRecipEngAntidetonationTankValve Simvar args contain optional index and/or unit
#### func [SimVarRecipEngBrakePower](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1734) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngBrakePower "Go to SimVarRecipEngBrakePower")
```
func SimVarRecipEngBrakePower(args ...interface{}) SimVar
```
SimVarRecipEngBrakePower Simvar args contain optional index and/or unit
#### func [SimVarRecipEngCoolantReservoirPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1698) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCoolantReservoirPercent "Go to SimVarRecipEngCoolantReservoirPercent")
```
func SimVarRecipEngCoolantReservoirPercent(args ...interface{}) SimVar
```
SimVarRecipEngCoolantReservoirPercent Simvar args contain optional index and/or unit
#### func [SimVarRecipEngCowlFlapPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1650) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCowlFlapPosition "Go to SimVarRecipEngCowlFlapPosition")
```
func SimVarRecipEngCowlFlapPosition(args ...interface{}) SimVar
```
SimVarRecipEngCowlFlapPosition Simvar args contain optional index and/or unit
#### func [SimVarRecipEngCylinderHeadTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1818) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCylinderHeadTemperature "Go to SimVarRecipEngCylinderHeadTemperature")
```
func SimVarRecipEngCylinderHeadTemperature(args ...interface{}) SimVar
```
SimVarRecipEngCylinderHeadTemperature Simvar args contain optional index and/or unit
#### func [SimVarRecipEngCylinderHealth](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L330) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCylinderHealth "Go to SimVarRecipEngCylinderHealth")
```
func SimVarRecipEngCylinderHealth(args ...interface{}) SimVar
```
SimVarRecipEngCylinderHealth Simvar args contain optional index and/or unit
#### func [SimVarRecipEngDetonating](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L318) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngDetonating "Go to SimVarRecipEngDetonating")
```
func SimVarRecipEngDetonating(args ...interface{}) SimVar
```
SimVarRecipEngDetonating Simvar args contain optional index and/or unit
#### func [SimVarRecipEngEmergencyBoostActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1770) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngEmergencyBoostActive "Go to SimVarRecipEngEmergencyBoostActive")
```
func SimVarRecipEngEmergencyBoostActive(args ...interface{}) SimVar
```
SimVarRecipEngEmergencyBoostActive Simvar args contain optional index and/or unit
#### func [SimVarRecipEngEmergencyBoostElapsedTime](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1782) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngEmergencyBoostElapsedTime "Go to SimVarRecipEngEmergencyBoostElapsedTime")
```
func SimVarRecipEngEmergencyBoostElapsedTime(args ...interface{}) SimVar
```
SimVarRecipEngEmergencyBoostElapsedTime Simvar args contain optional index and/or unit
#### func [SimVarRecipEngFuelAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1842) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelAvailable "Go to SimVarRecipEngFuelAvailable")
```
func SimVarRecipEngFuelAvailable(args ...interface{}) SimVar
```
SimVarRecipEngFuelAvailable Simvar args contain optional index and/or unit
#### func [SimVarRecipEngFuelFlow](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1854) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelFlow "Go to SimVarRecipEngFuelFlow")
```
func SimVarRecipEngFuelFlow(args ...interface{}) SimVar
```
SimVarRecipEngFuelFlow Simvar args contain optional index and/or unit
#### func [SimVarRecipEngFuelNumberTanksUsed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1890) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelNumberTanksUsed "Go to SimVarRecipEngFuelNumberTanksUsed")
```
func SimVarRecipEngFuelNumberTanksUsed(args ...interface{}) SimVar
```
SimVarRecipEngFuelNumberTanksUsed Simvar args contain optional index and/or unit
#### func [SimVarRecipEngFuelTankSelector](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1866) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelTankSelector "Go to SimVarRecipEngFuelTankSelector")
```
func SimVarRecipEngFuelTankSelector(args ...interface{}) SimVar
```
SimVarRecipEngFuelTankSelector Simvar args contain optional index and/or unit
#### func [SimVarRecipEngFuelTanksUsed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1878) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelTanksUsed "Go to SimVarRecipEngFuelTanksUsed")
```
func SimVarRecipEngFuelTanksUsed(args ...interface{}) SimVar
```
SimVarRecipEngFuelTanksUsed Simvar args contain optional index and/or unit
#### func [SimVarRecipEngLeftMagneto](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1710) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngLeftMagneto "Go to SimVarRecipEngLeftMagneto")
```
func SimVarRecipEngLeftMagneto(args ...interface{}) SimVar
```
SimVarRecipEngLeftMagneto Simvar args contain optional index and/or unit
#### func [SimVarRecipEngManifoldPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1674) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngManifoldPressure "Go to SimVarRecipEngManifoldPressure")
```
func SimVarRecipEngManifoldPressure(args ...interface{}) SimVar
```
SimVarRecipEngManifoldPressure Simvar args contain optional index and/or unit
#### func [SimVarRecipEngNitrousTankMaxQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L426) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankMaxQuantity "Go to SimVarRecipEngNitrousTankMaxQuantity")
```
func SimVarRecipEngNitrousTankMaxQuantity(args ...interface{}) SimVar
```
SimVarRecipEngNitrousTankMaxQuantity Simvar args contain optional index and/or unit
#### func [SimVarRecipEngNitrousTankQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L414) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankQuantity "Go to SimVarRecipEngNitrousTankQuantity")
```
func SimVarRecipEngNitrousTankQuantity(args ...interface{}) SimVar
```
SimVarRecipEngNitrousTankQuantity Simvar args contain optional index and/or unit
#### func [SimVarRecipEngNitrousTankValve](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L402) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankValve "Go to SimVarRecipEngNitrousTankValve")
```
func SimVarRecipEngNitrousTankValve(args ...interface{}) SimVar
```
SimVarRecipEngNitrousTankValve Simvar args contain optional index and/or unit
#### func [SimVarRecipEngNumCylinders](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L342) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNumCylinders "Go to SimVarRecipEngNumCylinders")
```
func SimVarRecipEngNumCylinders(args ...interface{}) SimVar
```
SimVarRecipEngNumCylinders Simvar args contain optional index and/or unit
#### func [SimVarRecipEngNumCylindersFailed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L354) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNumCylindersFailed "Go to SimVarRecipEngNumCylindersFailed")
```
func SimVarRecipEngNumCylindersFailed(args ...interface{}) SimVar
```
SimVarRecipEngNumCylindersFailed Simvar args contain optional index and/or unit
#### func [SimVarRecipEngPrimer](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1662) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngPrimer "Go to SimVarRecipEngPrimer")
```
func SimVarRecipEngPrimer(args ...interface{}) SimVar
```
SimVarRecipEngPrimer Simvar args contain optional index and/or unit
#### func [SimVarRecipEngRadiatorTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1830) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngRadiatorTemperature "Go to SimVarRecipEngRadiatorTemperature")
```
func SimVarRecipEngRadiatorTemperature(args ...interface{}) SimVar
```
SimVarRecipEngRadiatorTemperature Simvar args contain optional index and/or unit
#### func [SimVarRecipEngRightMagneto](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1722) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngRightMagneto "Go to SimVarRecipEngRightMagneto")
```
func SimVarRecipEngRightMagneto(args ...interface{}) SimVar
```
SimVarRecipEngRightMagneto Simvar args contain optional index and/or unit
#### func [SimVarRecipEngStarterTorque](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1746) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngStarterTorque "Go to SimVarRecipEngStarterTorque")
```
func SimVarRecipEngStarterTorque(args ...interface{}) SimVar
```
SimVarRecipEngStarterTorque Simvar args contain optional index and/or unit
#### func [SimVarRecipEngTurbineInletTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1806) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngTurbineInletTemperature "Go to SimVarRecipEngTurbineInletTemperature")
```
func SimVarRecipEngTurbineInletTemperature(args ...interface{}) SimVar
```
SimVarRecipEngTurbineInletTemperature Simvar args contain optional index and/or unit
#### func [SimVarRecipEngTurbochargerFailed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1758) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngTurbochargerFailed "Go to SimVarRecipEngTurbochargerFailed")
```
func SimVarRecipEngTurbochargerFailed(args ...interface{}) SimVar
```
SimVarRecipEngTurbochargerFailed Simvar args contain optional index and/or unit
#### func [SimVarRecipEngWastegatePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1794) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngWastegatePosition "Go to SimVarRecipEngWastegatePosition")
```
func SimVarRecipEngWastegatePosition(args ...interface{}) SimVar
```
SimVarRecipEngWastegatePosition Simvar args contain optional index and/or unit
#### func [SimVarRecipMixtureRatio](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1914) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipMixtureRatio "Go to SimVarRecipMixtureRatio")
```
func SimVarRecipMixtureRatio(args ...interface{}) SimVar
```
SimVarRecipMixtureRatio Simvar args contain optional index and/or unit
#### func [SimVarRelativeWindVelocityBodyX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3588) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyX "Go to SimVarRelativeWindVelocityBodyX")
```
func SimVarRelativeWindVelocityBodyX(args ...interface{}) SimVar
```
SimVarRelativeWindVelocityBodyX Simvar args contain optional index and/or unit
#### func [SimVarRelativeWindVelocityBodyY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3600) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyY "Go to SimVarRelativeWindVelocityBodyY")
```
func SimVarRelativeWindVelocityBodyY(args ...interface{}) SimVar
```
SimVarRelativeWindVelocityBodyY Simvar args contain optional index and/or unit
#### func [SimVarRelativeWindVelocityBodyZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3612) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyZ "Go to SimVarRelativeWindVelocityBodyZ")
```
func SimVarRelativeWindVelocityBodyZ(args ...interface{}) SimVar
```
SimVarRelativeWindVelocityBodyZ Simvar args contain optional index and/or unit
#### func [SimVarRetractFloatSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7246) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractFloatSwitch "Go to SimVarRetractFloatSwitch")
```
func SimVarRetractFloatSwitch(args ...interface{}) SimVar
```
SimVarRetractFloatSwitch Simvar args contain optional index and/or unit
#### func [SimVarRetractLeftFloatExtended](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7258) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractLeftFloatExtended "Go to SimVarRetractLeftFloatExtended")
```
func SimVarRetractLeftFloatExtended(args ...interface{}) SimVar
```
SimVarRetractLeftFloatExtended Simvar args contain optional index and/or unit
#### func [SimVarRetractRightFloatExtended](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7270) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractRightFloatExtended "Go to SimVarRetractRightFloatExtended")
```
func SimVarRetractRightFloatExtended(args ...interface{}) SimVar
```
SimVarRetractRightFloatExtended Simvar args contain optional index and/or unit
#### func [SimVarRightWheelRotationAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7186) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRightWheelRotationAngle "Go to SimVarRightWheelRotationAngle")
```
func SimVarRightWheelRotationAngle(args ...interface{}) SimVar
```
SimVarRightWheelRotationAngle Simvar args contain optional index and/or unit
#### func [SimVarRightWheelRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6755) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRightWheelRpm "Go to SimVarRightWheelRpm")
```
func SimVarRightWheelRpm(args ...interface{}) SimVar
```
SimVarRightWheelRpm Simvar args contain optional index and/or unit
#### func [SimVarRotationVelocityBodyX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3552) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyX "Go to SimVarRotationVelocityBodyX")
```
func SimVarRotationVelocityBodyX(args ...interface{}) SimVar
```
SimVarRotationVelocityBodyX Simvar args contain optional index and/or unit
#### func [SimVarRotationVelocityBodyY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3564) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyY "Go to SimVarRotationVelocityBodyY")
```
func SimVarRotationVelocityBodyY(args ...interface{}) SimVar
```
SimVarRotationVelocityBodyY Simvar args contain optional index and/or unit
#### func [SimVarRotationVelocityBodyZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3576) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyZ "Go to SimVarRotationVelocityBodyZ")
```
func SimVarRotationVelocityBodyZ(args ...interface{}) SimVar
```
SimVarRotationVelocityBodyZ Simvar args contain optional index and/or unit
#### func [SimVarRotorBrakeActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7534) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeActive "Go to SimVarRotorBrakeActive")
```
func SimVarRotorBrakeActive(args ...interface{}) SimVar
```
SimVarRotorBrakeActive Simvar args contain optional index and/or unit
#### func [SimVarRotorBrakeHandlePos](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7522) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeHandlePos "Go to SimVarRotorBrakeHandlePos")
```
func SimVarRotorBrakeHandlePos(args ...interface{}) SimVar
```
SimVarRotorBrakeHandlePos Simvar args contain optional index and/or unit
#### func [SimVarRotorChipDetected](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7582) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorChipDetected "Go to SimVarRotorChipDetected")
```
func SimVarRotorChipDetected(args ...interface{}) SimVar
```
SimVarRotorChipDetected Simvar args contain optional index and/or unit
#### func [SimVarRotorClutchActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7558) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorClutchActive "Go to SimVarRotorClutchActive")
```
func SimVarRotorClutchActive(args ...interface{}) SimVar
```
SimVarRotorClutchActive Simvar args contain optional index and/or unit
#### func [SimVarRotorClutchSwitchPos](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7546) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorClutchSwitchPos "Go to SimVarRotorClutchSwitchPos")
```
func SimVarRotorClutchSwitchPos(args ...interface{}) SimVar
```
SimVarRotorClutchSwitchPos Simvar args contain optional index and/or unit
#### func [SimVarRotorGovActive](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7606) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorGovActive "Go to SimVarRotorGovActive")
```
func SimVarRotorGovActive(args ...interface{}) SimVar
```
SimVarRotorGovActive Simvar args contain optional index and/or unit
#### func [SimVarRotorGovSwitchPos](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7594) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorGovSwitchPos "Go to SimVarRotorGovSwitchPos")
```
func SimVarRotorGovSwitchPos(args ...interface{}) SimVar
```
SimVarRotorGovSwitchPos Simvar args contain optional index and/or unit
#### func [SimVarRotorLateralTrimPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7618) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorLateralTrimPct "Go to SimVarRotorLateralTrimPct")
```
func SimVarRotorLateralTrimPct(args ...interface{}) SimVar
```
SimVarRotorLateralTrimPct Simvar args contain optional index and/or unit
#### func [SimVarRotorRotationAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9488) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorRotationAngle "Go to SimVarRotorRotationAngle")
```
func SimVarRotorRotationAngle(args ...interface{}) SimVar
```
SimVarRotorRotationAngle Simvar args contain optional index and/or unit
#### func [SimVarRotorRpmPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7630) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorRpmPct "Go to SimVarRotorRpmPct")
```
func SimVarRotorRpmPct(args ...interface{}) SimVar
```
SimVarRotorRpmPct Simvar args contain optional index and/or unit
#### func [SimVarRotorTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7570) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorTemperature "Go to SimVarRotorTemperature")
```
func SimVarRotorTemperature(args ...interface{}) SimVar
```
SimVarRotorTemperature Simvar args contain optional index and/or unit
#### func [SimVarRudderDeflection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6635) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderDeflection "Go to SimVarRudderDeflection")
```
func SimVarRudderDeflection(args ...interface{}) SimVar
```
SimVarRudderDeflection Simvar args contain optional index and/or unit
#### func [SimVarRudderDeflectionPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6647) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderDeflectionPct "Go to SimVarRudderDeflectionPct")
```
func SimVarRudderDeflectionPct(args ...interface{}) SimVar
```
SimVarRudderDeflectionPct Simvar args contain optional index and/or unit
#### func [SimVarRudderPedalIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8672) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPedalIndicator "Go to SimVarRudderPedalIndicator")
```
func SimVarRudderPedalIndicator(args ...interface{}) SimVar
```
SimVarRudderPedalIndicator Simvar args contain optional index and/or unit
#### func [SimVarRudderPedalPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5807) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPedalPosition "Go to SimVarRudderPedalPosition")
```
func SimVarRudderPedalPosition(args ...interface{}) SimVar
```
SimVarRudderPedalPosition Simvar args contain optional index and/or unit
#### func [SimVarRudderPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5819) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPosition "Go to SimVarRudderPosition")
```
func SimVarRudderPosition(args ...interface{}) SimVar
```
SimVarRudderPosition Simvar args contain optional index and/or unit
#### func [SimVarRudderTrim](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6659) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderTrim "Go to SimVarRudderTrim")
```
func SimVarRudderTrim(args ...interface{}) SimVar
```
SimVarRudderTrim Simvar args contain optional index and/or unit
#### func [SimVarRudderTrimPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L570) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderTrimPct "Go to SimVarRudderTrimPct")
```
func SimVarRudderTrimPct(args ...interface{}) SimVar
```
SimVarRudderTrimPct Simvar args contain optional index and/or unit
#### func [SimVarSeaLevelPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7450) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSeaLevelPressure "Go to SimVarSeaLevelPressure")
```
func SimVarSeaLevelPressure(args ...interface{}) SimVar
```
SimVarSeaLevelPressure Simvar args contain optional index and/or unit
#### func [SimVarSelectedDme](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5723) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSelectedDme "Go to SimVarSelectedDme")
```
func SimVarSelectedDme(args ...interface{}) SimVar
```
SimVarSelectedDme Simvar args contain optional index and/or unit
#### func [SimVarSemibodyLoadfactorY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9272) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorY "Go to SimVarSemibodyLoadfactorY")
```
func SimVarSemibodyLoadfactorY(args ...interface{}) SimVar
```
SimVarSemibodyLoadfactorY Simvar args contain optional index and/or unit
#### func [SimVarSemibodyLoadfactorYdot](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9284) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorYdot "Go to SimVarSemibodyLoadfactorYdot")
```
func SimVarSemibodyLoadfactorYdot(args ...interface{}) SimVar
```
SimVarSemibodyLoadfactorYdot Simvar args contain optional index and/or unit
#### func [SimVarSigmaSqrt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8506) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSigmaSqrt "Go to SimVarSigmaSqrt")
```
func SimVarSigmaSqrt(args ...interface{}) SimVar
```
SimVarSigmaSqrt Simvar args contain optional index and/or unit
#### func [SimVarSimDisabled](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8254) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimDisabled "Go to SimVarSimDisabled")
```
func SimVarSimDisabled(args ...interface{}) SimVar
```
SimVarSimDisabled Simvar args contain optional index and/or unit
#### func [SimVarSimOnGround](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3756) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimOnGround "Go to SimVarSimOnGround")
```
func SimVarSimOnGround(args ...interface{}) SimVar
```
SimVarSimOnGround Simvar args contain optional index and/or unit
#### func [SimVarSimulatedRadius](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9308) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimulatedRadius "Go to SimVarSimulatedRadius")
```
func SimVarSimulatedRadius(args ...interface{}) SimVar
```
SimVarSimulatedRadius Simvar args contain optional index and/or unit
#### func [SimVarSimulationRate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10194) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimulationRate "Go to SimVarSimulationRate")
```
func SimVarSimulationRate(args ...interface{}) SimVar
```
SimVarSimulationRate Simvar args contain optional index and/or unit
#### func [SimVarSlingActivePayloadStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L498) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingActivePayloadStation "Go to SimVarSlingActivePayloadStation")
```
func SimVarSlingActivePayloadStation(args ...interface{}) SimVar
```
SimVarSlingActivePayloadStation Simvar args contain optional index and/or unit
#### func [SimVarSlingCableBroken](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L474) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingCableBroken "Go to SimVarSlingCableBroken")
```
func SimVarSlingCableBroken(args ...interface{}) SimVar
```
SimVarSlingCableBroken Simvar args contain optional index and/or unit
#### func [SimVarSlingCableExtendedLength](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L486) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingCableExtendedLength "Go to SimVarSlingCableExtendedLength")
```
func SimVarSlingCableExtendedLength(args ...interface{}) SimVar
```
SimVarSlingCableExtendedLength Simvar args contain optional index and/or unit
#### func [SimVarSlingHoistPercentDeployed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L510) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingHoistPercentDeployed "Go to SimVarSlingHoistPercentDeployed")
```
func SimVarSlingHoistPercentDeployed(args ...interface{}) SimVar
```
SimVarSlingHoistPercentDeployed Simvar args contain optional index and/or unit
#### func [SimVarSlingHookInPickupMode](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L522) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingHookInPickupMode "Go to SimVarSlingHookInPickupMode")
```
func SimVarSlingHookInPickupMode(args ...interface{}) SimVar
```
SimVarSlingHookInPickupMode Simvar args contain optional index and/or unit
#### func [SimVarSlingObjectAttached](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L462) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingObjectAttached "Go to SimVarSlingObjectAttached")
```
func SimVarSlingObjectAttached(args ...interface{}) SimVar
```
SimVarSlingObjectAttached Simvar args contain optional index and/or unit
#### func [SimVarSmokeEnable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7642) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSmokeEnable "Go to SimVarSmokeEnable")
```
func SimVarSmokeEnable(args ...interface{}) SimVar
```
SimVarSmokeEnable Simvar args contain optional index and/or unit
#### func [SimVarSmokesystemAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7654) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSmokesystemAvailable "Go to SimVarSmokesystemAvailable")
```
func SimVarSmokesystemAvailable(args ...interface{}) SimVar
```
SimVarSmokesystemAvailable Simvar args contain optional index and/or unit
#### func [SimVarSpoilerAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7774) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilerAvailable "Go to SimVarSpoilerAvailable")
```
func SimVarSpoilerAvailable(args ...interface{}) SimVar
```
SimVarSpoilerAvailable Simvar args contain optional index and/or unit
#### func [SimVarSpoilersArmed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5951) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersArmed "Go to SimVarSpoilersArmed")
```
func SimVarSpoilersArmed(args ...interface{}) SimVar
```
SimVarSpoilersArmed Simvar args contain optional index and/or unit
#### func [SimVarSpoilersHandlePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5963) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersHandlePosition "Go to SimVarSpoilersHandlePosition")
```
func SimVarSpoilersHandlePosition(args ...interface{}) SimVar
```
SimVarSpoilersHandlePosition Simvar args contain optional index and/or unit
#### func [SimVarSpoilersLeftPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5975) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersLeftPosition "Go to SimVarSpoilersLeftPosition")
```
func SimVarSpoilersLeftPosition(args ...interface{}) SimVar
```
SimVarSpoilersLeftPosition Simvar args contain optional index and/or unit
#### func [SimVarSpoilersRightPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5987) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersRightPosition "Go to SimVarSpoilersRightPosition")
```
func SimVarSpoilersRightPosition(args ...interface{}) SimVar
```
SimVarSpoilersRightPosition Simvar args contain optional index and/or unit
#### func [SimVarStallAlpha](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8756) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallAlpha "Go to SimVarStallAlpha")
```
func SimVarStallAlpha(args ...interface{}) SimVar
```
SimVarStallAlpha Simvar args contain optional index and/or unit
#### func [SimVarStallHornAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7738) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallHornAvailable "Go to SimVarStallHornAvailable")
```
func SimVarStallHornAvailable(args ...interface{}) SimVar
```
SimVarStallHornAvailable Simvar args contain optional index and/or unit
#### func [SimVarStallWarning](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3876) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallWarning "Go to SimVarStallWarning")
```
func SimVarStallWarning(args ...interface{}) SimVar
```
SimVarStallWarning Simvar args contain optional index and/or unit
#### func [SimVarStandardAtmTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7510) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStandardAtmTemperature "Go to SimVarStandardAtmTemperature")
```
func SimVarStandardAtmTemperature(args ...interface{}) SimVar
```
SimVarStandardAtmTemperature Simvar args contain optional index and/or unit
#### func [SimVarStaticCgToGround](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9582) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStaticCgToGround "Go to SimVarStaticCgToGround")
```
func SimVarStaticCgToGround(args ...interface{}) SimVar
```
SimVarStaticCgToGround Simvar args contain optional index and/or unit
#### func [SimVarStaticPitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9594) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStaticPitch "Go to SimVarStaticPitch")
```
func SimVarStaticPitch(args ...interface{}) SimVar
```
SimVarStaticPitch Simvar args contain optional index and/or unit
#### func [SimVarSteerInputControl](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7282) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSteerInputControl "Go to SimVarSteerInputControl")
```
func SimVarSteerInputControl(args ...interface{}) SimVar
```
SimVarSteerInputControl Simvar args contain optional index and/or unit
#### func [SimVarStrobesAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7798) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStrobesAvailable "Go to SimVarStrobesAvailable")
```
func SimVarStrobesAvailable(args ...interface{}) SimVar
```
SimVarStrobesAvailable Simvar args contain optional index and/or unit
#### func [SimVarStructAmbientWind](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L258) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructAmbientWind "Go to SimVarStructAmbientWind")
```
func SimVarStructAmbientWind(args ...interface{}) SimVar
```
SimVarStructAmbientWind Simvar args contain optional index and/or unit
#### func [SimVarStructBodyRotationVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1158) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyRotationVelocity "Go to SimVarStructBodyRotationVelocity")
```
func SimVarStructBodyRotationVelocity(args ...interface{}) SimVar
```
SimVarStructBodyRotationVelocity Simvar args contain optional index and/or unit
#### func [SimVarStructBodyVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1146) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyVelocity "Go to SimVarStructBodyVelocity")
```
func SimVarStructBodyVelocity(args ...interface{}) SimVar
```
SimVarStructBodyVelocity Simvar args contain optional index and/or unit
#### func [SimVarStructEnginePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1182) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEnginePosition "Go to SimVarStructEnginePosition")
```
func SimVarStructEnginePosition(args ...interface{}) SimVar
```
SimVarStructEnginePosition Simvar args contain optional index and/or unit
#### func [SimVarStructEyepointDynamicAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1194) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEyepointDynamicAngle "Go to SimVarStructEyepointDynamicAngle")
```
func SimVarStructEyepointDynamicAngle(args ...interface{}) SimVar
```
SimVarStructEyepointDynamicAngle Simvar args contain optional index and/or unit
#### func [SimVarStructEyepointDynamicOffset](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1206) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEyepointDynamicOffset "Go to SimVarStructEyepointDynamicOffset")
```
func SimVarStructEyepointDynamicOffset(args ...interface{}) SimVar
```
SimVarStructEyepointDynamicOffset Simvar args contain optional index and/or unit
#### func [SimVarStructLatlonalt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1086) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructLatlonalt "Go to SimVarStructLatlonalt")
```
func SimVarStructLatlonalt(args ...interface{}) SimVar
```
SimVarStructLatlonalt Simvar args contain optional index and/or unit
#### func [SimVarStructLatlonaltpbh](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1098) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructLatlonaltpbh "Go to SimVarStructLatlonaltpbh")
```
func SimVarStructLatlonaltpbh(args ...interface{}) SimVar
```
SimVarStructLatlonaltpbh Simvar args contain optional index and/or unit
#### func [SimVarStructSurfaceRelativeVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1110) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructSurfaceRelativeVelocity "Go to SimVarStructSurfaceRelativeVelocity")
```
func SimVarStructSurfaceRelativeVelocity(args ...interface{}) SimVar
```
SimVarStructSurfaceRelativeVelocity Simvar args contain optional index and/or unit
#### func [SimVarStructWorldAcceleration](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1170) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldAcceleration "Go to SimVarStructWorldAcceleration")
```
func SimVarStructWorldAcceleration(args ...interface{}) SimVar
```
SimVarStructWorldAcceleration Simvar args contain optional index and/or unit
#### func [SimVarStructWorldRotationVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1134) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldRotationVelocity "Go to SimVarStructWorldRotationVelocity")
```
func SimVarStructWorldRotationVelocity(args ...interface{}) SimVar
```
SimVarStructWorldRotationVelocity Simvar args contain optional index and/or unit
#### func [SimVarStructWorldvelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1122) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldvelocity "Go to SimVarStructWorldvelocity")
```
func SimVarStructWorldvelocity(args ...interface{}) SimVar
```
SimVarStructWorldvelocity Simvar args contain optional index and/or unit
#### func [SimVarStructuralDeiceSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8194) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructuralDeiceSwitch "Go to SimVarStructuralDeiceSwitch")
```
func SimVarStructuralDeiceSwitch(args ...interface{}) SimVar
```
SimVarStructuralDeiceSwitch Simvar args contain optional index and/or unit
#### func [SimVarStructuralIcePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9320) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructuralIcePct "Go to SimVarStructuralIcePct")
```
func SimVarStructuralIcePct(args ...interface{}) SimVar
```
SimVarStructuralIcePct Simvar args contain optional index and/or unit
#### func [SimVarSuctionPressure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4320) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSuctionPressure "Go to SimVarSuctionPressure")
```
func SimVarSuctionPressure(args ...interface{}) SimVar
```
SimVarSuctionPressure Simvar args contain optional index and/or unit
#### func [SimVarSurfaceCondition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9356) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceCondition "Go to SimVarSurfaceCondition")
```
func SimVarSurfaceCondition(args ...interface{}) SimVar
```
SimVarSurfaceCondition Simvar args contain optional index and/or unit
#### func [SimVarSurfaceInfoValid](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9344) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceInfoValid "Go to SimVarSurfaceInfoValid")
```
func SimVarSurfaceInfoValid(args ...interface{}) SimVar
```
SimVarSurfaceInfoValid Simvar args contain optional index and/or unit
#### func [SimVarSurfaceType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3744) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceType "Go to SimVarSurfaceType")
```
func SimVarSurfaceType(args ...interface{}) SimVar
```
SimVarSurfaceType Simvar args contain optional index and/or unit
#### func [SimVarTailhookPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7714) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTailhookPosition "Go to SimVarTailhookPosition")
```
func SimVarTailhookPosition(args ...interface{}) SimVar
```
SimVarTailhookPosition Simvar args contain optional index and/or unit
#### func [SimVarTailwheelLockOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6215) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTailwheelLockOn "Go to SimVarTailwheelLockOn")
```
func SimVarTailwheelLockOn(args ...interface{}) SimVar
```
SimVarTailwheelLockOn Simvar args contain optional index and/or unit
#### func [SimVarThrottleLowerLimit](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1326) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarThrottleLowerLimit "Go to SimVarThrottleLowerLimit")
```
func SimVarThrottleLowerLimit(args ...interface{}) SimVar
```
SimVarThrottleLowerLimit Simvar args contain optional index and/or unit
#### func [SimVarTimeOfDay](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10182) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTimeOfDay "Go to SimVarTimeOfDay")
```
func SimVarTimeOfDay(args ...interface{}) SimVar
```
SimVarTimeOfDay Simvar args contain optional index and/or unit
#### func [SimVarTimeZoneOffset](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10170) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTimeZoneOffset "Go to SimVarTimeZoneOffset")
```
func SimVarTimeZoneOffset(args ...interface{}) SimVar
```
SimVarTimeZoneOffset Simvar args contain optional index and/or unit
#### func [SimVarTitle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9954) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTitle "Go to SimVarTitle")
```
func SimVarTitle(args ...interface{}) SimVar
```
SimVarTitle Simvar args contain optional index and/or unit
#### func [SimVarToeBrakesAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7810) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarToeBrakesAvailable "Go to SimVarToeBrakesAvailable")
```
func SimVarToeBrakesAvailable(args ...interface{}) SimVar
```
SimVarToeBrakesAvailable Simvar args contain optional index and/or unit
#### func [SimVarTotalAirTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7462) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalAirTemperature "Go to SimVarTotalAirTemperature")
```
func SimVarTotalAirTemperature(args ...interface{}) SimVar
```
SimVarTotalAirTemperature Simvar args contain optional index and/or unit
#### func [SimVarTotalVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8530) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalVelocity "Go to SimVarTotalVelocity")
```
func SimVarTotalVelocity(args ...interface{}) SimVar
```
SimVarTotalVelocity Simvar args contain optional index and/or unit
#### func [SimVarTotalWeight](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8206) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeight "Go to SimVarTotalWeight")
```
func SimVarTotalWeight(args ...interface{}) SimVar
```
SimVarTotalWeight Simvar args contain optional index and/or unit
#### func [SimVarTotalWeightCrossCoupledMoi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9008) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightCrossCoupledMoi "Go to SimVarTotalWeightCrossCoupledMoi")
```
func SimVarTotalWeightCrossCoupledMoi(args ...interface{}) SimVar
```
SimVarTotalWeightCrossCoupledMoi Simvar args contain optional index and/or unit
#### func [SimVarTotalWeightPitchMoi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8972) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightPitchMoi "Go to SimVarTotalWeightPitchMoi")
```
func SimVarTotalWeightPitchMoi(args ...interface{}) SimVar
```
SimVarTotalWeightPitchMoi Simvar args contain optional index and/or unit
#### func [SimVarTotalWeightRollMoi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8984) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightRollMoi "Go to SimVarTotalWeightRollMoi")
```
func SimVarTotalWeightRollMoi(args ...interface{}) SimVar
```
SimVarTotalWeightRollMoi Simvar args contain optional index and/or unit
#### func [SimVarTotalWeightYawMoi](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8996) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightYawMoi "Go to SimVarTotalWeightYawMoi")
```
func SimVarTotalWeightYawMoi(args ...interface{}) SimVar
```
SimVarTotalWeightYawMoi Simvar args contain optional index and/or unit
#### func [SimVarTotalWorldVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3396) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWorldVelocity "Go to SimVarTotalWorldVelocity")
```
func SimVarTotalWorldVelocity(args ...interface{}) SimVar
```
SimVarTotalWorldVelocity Simvar args contain optional index and/or unit
#### func [SimVarTowConnection](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9642) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowConnection "Go to SimVarTowConnection")
```
func SimVarTowConnection(args ...interface{}) SimVar
```
SimVarTowConnection Simvar args contain optional index and/or unit
#### func [SimVarTowReleaseHandle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9630) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowReleaseHandle "Go to SimVarTowReleaseHandle")
```
func SimVarTowReleaseHandle(args ...interface{}) SimVar
```
SimVarTowReleaseHandle Simvar args contain optional index and/or unit
#### func [SimVarTrailingEdgeFlapsLeftAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6059) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsLeftAngle "Go to SimVarTrailingEdgeFlapsLeftAngle")
```
func SimVarTrailingEdgeFlapsLeftAngle(args ...interface{}) SimVar
```
SimVarTrailingEdgeFlapsLeftAngle Simvar args contain optional index and/or unit
#### func [SimVarTrailingEdgeFlapsLeftPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6035) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsLeftPercent "Go to SimVarTrailingEdgeFlapsLeftPercent")
```
func SimVarTrailingEdgeFlapsLeftPercent(args ...interface{}) SimVar
```
SimVarTrailingEdgeFlapsLeftPercent Simvar args contain optional index and/or unit
#### func [SimVarTrailingEdgeFlapsRightAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6071) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsRightAngle "Go to SimVarTrailingEdgeFlapsRightAngle")
```
func SimVarTrailingEdgeFlapsRightAngle(args ...interface{}) SimVar
```
SimVarTrailingEdgeFlapsRightAngle Simvar args contain optional index and/or unit
#### func [SimVarTrailingEdgeFlapsRightPercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6047) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsRightPercent "Go to SimVarTrailingEdgeFlapsRightPercent")
```
func SimVarTrailingEdgeFlapsRightPercent(args ...interface{}) SimVar
```
SimVarTrailingEdgeFlapsRightPercent Simvar args contain optional index and/or unit
#### func [SimVarTransponderAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5591) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTransponderAvailable "Go to SimVarTransponderAvailable")
```
func SimVarTransponderAvailable(args ...interface{}) SimVar
```
SimVarTransponderAvailable Simvar args contain optional index and/or unit
#### func [SimVarTransponderCode](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4752) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTransponderCode "Go to SimVarTransponderCode")
```
func SimVarTransponderCode(args ...interface{}) SimVar
```
SimVarTransponderCode Simvar args contain optional index and/or unit
#### func [SimVarTrueAirspeedSelected](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8314) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrueAirspeedSelected "Go to SimVarTrueAirspeedSelected")
```
func SimVarTrueAirspeedSelected(args ...interface{}) SimVar
```
SimVarTrueAirspeedSelected Simvar args contain optional index and/or unit
#### func [SimVarTurbEngAfterburner](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2018) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngAfterburner "Go to SimVarTurbEngAfterburner")
```
func SimVarTurbEngAfterburner(args ...interface{}) SimVar
```
SimVarTurbEngAfterburner Simvar args contain optional index and/or unit
#### func [SimVarTurbEngBleedAir](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2042) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngBleedAir "Go to SimVarTurbEngBleedAir")
```
func SimVarTurbEngBleedAir(args ...interface{}) SimVar
```
SimVarTurbEngBleedAir Simvar args contain optional index and/or unit
#### func [SimVarTurbEngCorrectedFf](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1970) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedFf "Go to SimVarTurbEngCorrectedFf")
```
func SimVarTurbEngCorrectedFf(args ...interface{}) SimVar
```
SimVarTurbEngCorrectedFf Simvar args contain optional index and/or unit
#### func [SimVarTurbEngCorrectedN1](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1947) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedN1 "Go to SimVarTurbEngCorrectedN1")
```
func SimVarTurbEngCorrectedN1(args ...interface{}) SimVar
```
SimVarTurbEngCorrectedN1 Simvar
#### func [SimVarTurbEngCorrectedN2](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1958) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedN2 "Go to SimVarTurbEngCorrectedN2")
```
func SimVarTurbEngCorrectedN2(args ...interface{}) SimVar
```
SimVarTurbEngCorrectedN2 Simvar
#### func [SimVarTurbEngFuelAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2102) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngFuelAvailable "Go to SimVarTurbEngFuelAvailable")
```
func SimVarTurbEngFuelAvailable(args ...interface{}) SimVar
```
SimVarTurbEngFuelAvailable Simvar args contain optional index and/or unit
#### func [SimVarTurbEngFuelFlowPph](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2090) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngFuelFlowPph "Go to SimVarTurbEngFuelFlowPph")
```
func SimVarTurbEngFuelFlowPph(args ...interface{}) SimVar
```
SimVarTurbEngFuelFlowPph Simvar args contain optional index and/or unit
#### func [SimVarTurbEngIgnitionSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2676) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngIgnitionSwitch "Go to SimVarTurbEngIgnitionSwitch")
```
func SimVarTurbEngIgnitionSwitch(args ...interface{}) SimVar
```
SimVarTurbEngIgnitionSwitch Simvar args contain optional index and/or unit
#### func [SimVarTurbEngItt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2006) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngItt "Go to SimVarTurbEngItt")
```
func SimVarTurbEngItt(args ...interface{}) SimVar
```
SimVarTurbEngItt Simvar args contain optional index and/or unit
#### func [SimVarTurbEngJetThrust](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2030) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngJetThrust "Go to SimVarTurbEngJetThrust")
```
func SimVarTurbEngJetThrust(args ...interface{}) SimVar
```
SimVarTurbEngJetThrust Simvar args contain optional index and/or unit
#### func [SimVarTurbEngMasterStarterSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2688) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngMasterStarterSwitch "Go to SimVarTurbEngMasterStarterSwitch")
```
func SimVarTurbEngMasterStarterSwitch(args ...interface{}) SimVar
```
SimVarTurbEngMasterStarterSwitch Simvar args contain optional index and/or unit
#### func [SimVarTurbEngMaxTorquePercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1982) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngMaxTorquePercent "Go to SimVarTurbEngMaxTorquePercent")
```
func SimVarTurbEngMaxTorquePercent(args ...interface{}) SimVar
```
SimVarTurbEngMaxTorquePercent Simvar args contain optional index and/or unit
#### func [SimVarTurbEngN1](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1925) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngN1 "Go to SimVarTurbEngN1")
```
func SimVarTurbEngN1(args ...interface{}) SimVar
```
SimVarTurbEngN1 Simvar
#### func [SimVarTurbEngN2](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1936) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngN2 "Go to SimVarTurbEngN2")
```
func SimVarTurbEngN2(args ...interface{}) SimVar
```
SimVarTurbEngN2 Simvar
#### func [SimVarTurbEngNumTanksUsed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2078) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngNumTanksUsed "Go to SimVarTurbEngNumTanksUsed")
```
func SimVarTurbEngNumTanksUsed(args ...interface{}) SimVar
```
SimVarTurbEngNumTanksUsed Simvar args contain optional index and/or unit
#### func [SimVarTurbEngPressureRatio](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1994) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngPressureRatio "Go to SimVarTurbEngPressureRatio")
```
func SimVarTurbEngPressureRatio(args ...interface{}) SimVar
```
SimVarTurbEngPressureRatio Simvar args contain optional index and/or unit
#### func [SimVarTurbEngPrimaryNozzlePercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2664) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngPrimaryNozzlePercent "Go to SimVarTurbEngPrimaryNozzlePercent")
```
func SimVarTurbEngPrimaryNozzlePercent(args ...interface{}) SimVar
```
SimVarTurbEngPrimaryNozzlePercent Simvar args contain optional index and/or unit
#### func [SimVarTurbEngReverseNozzlePercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2114) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngReverseNozzlePercent "Go to SimVarTurbEngReverseNozzlePercent")
```
func SimVarTurbEngReverseNozzlePercent(args ...interface{}) SimVar
```
SimVarTurbEngReverseNozzlePercent Simvar args contain optional index and/or unit
#### func [SimVarTurbEngTankSelector](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2054) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngTankSelector "Go to SimVarTurbEngTankSelector")
```
func SimVarTurbEngTankSelector(args ...interface{}) SimVar
```
SimVarTurbEngTankSelector Simvar args contain optional index and/or unit
#### func [SimVarTurbEngTanksUsed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2066) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngTanksUsed "Go to SimVarTurbEngTanksUsed")
```
func SimVarTurbEngTanksUsed(args ...interface{}) SimVar
```
SimVarTurbEngTanksUsed Simvar args contain optional index and/or unit
#### func [SimVarTurbEngVibration](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2126) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngVibration "Go to SimVarTurbEngVibration")
```
func SimVarTurbEngVibration(args ...interface{}) SimVar
```
SimVarTurbEngVibration Simvar args contain optional index and/or unit
#### func [SimVarTurnCoordinatorBall](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4056) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnCoordinatorBall "Go to SimVarTurnCoordinatorBall")
```
func SimVarTurnCoordinatorBall(args ...interface{}) SimVar
```
SimVarTurnCoordinatorBall Simvar args contain optional index and/or unit
#### func [SimVarTurnIndicatorRate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8624) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnIndicatorRate "Go to SimVarTurnIndicatorRate")
```
func SimVarTurnIndicatorRate(args ...interface{}) SimVar
```
SimVarTurnIndicatorRate Simvar args contain optional index and/or unit
#### func [SimVarTurnIndicatorSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8636) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnIndicatorSwitch "Go to SimVarTurnIndicatorSwitch")
```
func SimVarTurnIndicatorSwitch(args ...interface{}) SimVar
```
SimVarTurnIndicatorSwitch Simvar args contain optional index and/or unit
#### func [SimVarTypicalDescentRate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8470) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTypicalDescentRate "Go to SimVarTypicalDescentRate")
```
func SimVarTypicalDescentRate(args ...interface{}) SimVar
```
SimVarTypicalDescentRate Simvar args contain optional index and/or unit
#### func [SimVarUnitOfMeasure](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10206) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnitOfMeasure "Go to SimVarUnitOfMeasure")
```
func SimVarUnitOfMeasure(args ...interface{}) SimVar
```
SimVarUnitOfMeasure Simvar args contain optional index and/or unit
#### func [SimVarUnlimitedFuel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3240) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnlimitedFuel "Go to SimVarUnlimitedFuel")
```
func SimVarUnlimitedFuel(args ...interface{}) SimVar
```
SimVarUnlimitedFuel Simvar args contain optional index and/or unit
#### func [SimVarUserInputEnabled](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8458) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUserInputEnabled "Go to SimVarUserInputEnabled")
```
func SimVarUserInputEnabled(args ...interface{}) SimVar
```
SimVarUserInputEnabled Simvar args contain optional index and/or unit
#### func [SimVarVariometerRate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8554) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVariometerRate "Go to SimVarVariometerRate")
```
func SimVarVariometerRate(args ...interface{}) SimVar
```
SimVarVariometerRate Simvar args contain optional index and/or unit
#### func [SimVarVariometerSwitch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8566) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVariometerSwitch "Go to SimVarVariometerSwitch")
```
func SimVarVariometerSwitch(args ...interface{}) SimVar
```
SimVarVariometerSwitch Simvar args contain optional index and/or unit
#### func [SimVarVelocityBodyX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3420) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyX "Go to SimVarVelocityBodyX")
```
func SimVarVelocityBodyX(args ...interface{}) SimVar
```
SimVarVelocityBodyX Simvar args contain optional index and/or unit
#### func [SimVarVelocityBodyY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3432) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyY "Go to SimVarVelocityBodyY")
```
func SimVarVelocityBodyY(args ...interface{}) SimVar
```
SimVarVelocityBodyY Simvar args contain optional index and/or unit
#### func [SimVarVelocityBodyZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3408) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyZ "Go to SimVarVelocityBodyZ")
```
func SimVarVelocityBodyZ(args ...interface{}) SimVar
```
SimVarVelocityBodyZ Simvar args contain optional index and/or unit
#### func [SimVarVelocityWorldX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3456) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldX "Go to SimVarVelocityWorldX")
```
func SimVarVelocityWorldX(args ...interface{}) SimVar
```
SimVarVelocityWorldX Simvar args contain optional index and/or unit
#### func [SimVarVelocityWorldY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3468) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldY "Go to SimVarVelocityWorldY")
```
func SimVarVelocityWorldY(args ...interface{}) SimVar
```
SimVarVelocityWorldY Simvar args contain optional index and/or unit
#### func [SimVarVelocityWorldZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3444) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldZ "Go to SimVarVelocityWorldZ")
```
func SimVarVelocityWorldZ(args ...interface{}) SimVar
```
SimVarVelocityWorldZ Simvar args contain optional index and/or unit
#### func [SimVarVerticalSpeed](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3852) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVerticalSpeed "Go to SimVarVerticalSpeed")
```
func SimVarVerticalSpeed(args ...interface{}) SimVar
```
SimVarVerticalSpeed Simvar args contain optional index and/or unit
#### func [SimVarVisualModelRadius](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8482) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVisualModelRadius "Go to SimVarVisualModelRadius")
```
func SimVarVisualModelRadius(args ...interface{}) SimVar
```
SimVarVisualModelRadius Simvar args contain optional index and/or unit
#### func [SimVarWaterBallastValve](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9020) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterBallastValve "Go to SimVarWaterBallastValve")
```
func SimVarWaterBallastValve(args ...interface{}) SimVar
```
SimVarWaterBallastValve Simvar args contain optional index and/or unit
#### func [SimVarWaterLeftRudderExtended](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6371) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderExtended "Go to SimVarWaterLeftRudderExtended")
```
func SimVarWaterLeftRudderExtended(args ...interface{}) SimVar
```
SimVarWaterLeftRudderExtended Simvar args contain optional index and/or unit
#### func [SimVarWaterLeftRudderSteerAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6455) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderSteerAngle "Go to SimVarWaterLeftRudderSteerAngle")
```
func SimVarWaterLeftRudderSteerAngle(args ...interface{}) SimVar
```
SimVarWaterLeftRudderSteerAngle Simvar args contain optional index and/or unit
#### func [SimVarWaterLeftRudderSteerAnglePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6539) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderSteerAnglePct "Go to SimVarWaterLeftRudderSteerAnglePct")
```
func SimVarWaterLeftRudderSteerAnglePct(args ...interface{}) SimVar
```
SimVarWaterLeftRudderSteerAnglePct Simvar args contain optional index and/or unit
#### func [SimVarWaterRightRudderExtended](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6383) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderExtended "Go to SimVarWaterRightRudderExtended")
```
func SimVarWaterRightRudderExtended(args ...interface{}) SimVar
```
SimVarWaterRightRudderExtended Simvar args contain optional index and/or unit
#### func [SimVarWaterRightRudderSteerAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6467) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderSteerAngle "Go to SimVarWaterRightRudderSteerAngle")
```
func SimVarWaterRightRudderSteerAngle(args ...interface{}) SimVar
```
SimVarWaterRightRudderSteerAngle Simvar args contain optional index and/or unit
#### func [SimVarWaterRightRudderSteerAnglePct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6551) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderSteerAnglePct "Go to SimVarWaterRightRudderSteerAnglePct")
```
func SimVarWaterRightRudderSteerAnglePct(args ...interface{}) SimVar
```
SimVarWaterRightRudderSteerAnglePct Simvar args contain optional index and/or unit
#### func [SimVarWaterRudderHandlePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6335) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRudderHandlePosition "Go to SimVarWaterRudderHandlePosition")
```
func SimVarWaterRudderHandlePosition(args ...interface{}) SimVar
```
SimVarWaterRudderHandlePosition Simvar args contain optional index and/or unit
#### func [SimVarWheelRotationAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7150) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWheelRotationAngle "Go to SimVarWheelRotationAngle")
```
func SimVarWheelRotationAngle(args ...interface{}) SimVar
```
SimVarWheelRotationAngle Simvar args contain optional index and/or unit
#### func [SimVarWheelRpm](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7126) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWheelRpm "Go to SimVarWheelRpm")
```
func SimVarWheelRpm(args ...interface{}) SimVar
```
SimVarWheelRpm Simvar args contain optional index and/or unit
#### func [SimVarWindshieldRainEffectAvailable](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7474) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWindshieldRainEffectAvailable "Go to SimVarWindshieldRainEffectAvailable")
```
func SimVarWindshieldRainEffectAvailable(args ...interface{}) SimVar
```
SimVarWindshieldRainEffectAvailable Simvar args contain optional index and/or unit
#### func [SimVarWingArea](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8708) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingArea "Go to SimVarWingArea")
```
func SimVarWingArea(args ...interface{}) SimVar
```
SimVarWingArea Simvar args contain optional index and/or unit
#### func [SimVarWingFlexPct](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L978) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingFlexPct "Go to SimVarWingFlexPct")
```
func SimVarWingFlexPct(args ...interface{}) SimVar
```
SimVarWingFlexPct Simvar args contain optional index and/or unit
#### func [SimVarWingSpan](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8720) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingSpan "Go to SimVarWingSpan")
```
func SimVarWingSpan(args ...interface{}) SimVar
```
SimVarWingSpan Simvar args contain optional index and/or unit
#### func [SimVarWiskeyCompassIndicationDegrees](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3996) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWiskeyCompassIndicationDegrees "Go to SimVarWiskeyCompassIndicationDegrees")
```
func SimVarWiskeyCompassIndicationDegrees(args ...interface{}) SimVar
```
SimVarWiskeyCompassIndicationDegrees Simvar args contain optional index and/or unit
#### func [SimVarYawStringAngle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9428) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYawStringAngle "Go to SimVarYawStringAngle")
```
func SimVarYawStringAngle(args ...interface{}) SimVar
```
SimVarYawStringAngle Simvar args contain optional index and/or unit
#### func [SimVarYawStringPctExtended](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9440) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYawStringPctExtended "Go to SimVarYawStringPctExtended")
```
func SimVarYawStringPctExtended(args ...interface{}) SimVar
```
SimVarYawStringPctExtended Simvar args contain optional index and/or unit
#### func [SimVarYokeXIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8660) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeXIndicator "Go to SimVarYokeXIndicator")
```
func SimVarYokeXIndicator(args ...interface{}) SimVar
```
SimVarYokeXIndicator Simvar args contain optional index and/or unit
#### func [SimVarYokeXPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5795) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeXPosition "Go to SimVarYokeXPosition")
```
func SimVarYokeXPosition(args ...interface{}) SimVar
```
SimVarYokeXPosition Simvar args contain optional index and/or unit
#### func [SimVarYokeYIndicator](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8648) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeYIndicator "Go to SimVarYokeYIndicator")
```
func SimVarYokeYIndicator(args ...interface{}) SimVar
```
SimVarYokeYIndicator Simvar args contain optional index and/or unit
#### func [SimVarYokeYPosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5783) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeYPosition "Go to SimVarYokeYPosition")
```
func SimVarYokeYPosition(args ...interface{}) SimVar
```
SimVarYokeYPosition Simvar args contain optional index and/or unit
#### func [SimVarZeroLiftAlpha](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8768) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZeroLiftAlpha "Go to SimVarZeroLiftAlpha")
```
func SimVarZeroLiftAlpha(args ...interface{}) SimVar
```
SimVarZeroLiftAlpha Simvar args contain optional index and/or unit
#### func [SimVarZuluDayOfMonth](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10050) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfMonth "Go to SimVarZuluDayOfMonth")
```
func SimVarZuluDayOfMonth(args ...interface{}) SimVar
```
SimVarZuluDayOfMonth Simvar args contain optional index and/or unit
#### func [SimVarZuluDayOfWeek](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10038) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfWeek "Go to SimVarZuluDayOfWeek")
```
func SimVarZuluDayOfWeek(args ...interface{}) SimVar
```
SimVarZuluDayOfWeek Simvar args contain optional index and/or unit
#### func [SimVarZuluDayOfYear](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10074) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfYear "Go to SimVarZuluDayOfYear")
```
func SimVarZuluDayOfYear(args ...interface{}) SimVar
```
SimVarZuluDayOfYear Simvar args contain optional index and/or unit
#### func [SimVarZuluMonthOfYear](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10062) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluMonthOfYear "Go to SimVarZuluMonthOfYear")
```
func SimVarZuluMonthOfYear(args ...interface{}) SimVar
```
SimVarZuluMonthOfYear Simvar args contain optional index and/or unit
#### func [SimVarZuluTime](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10026) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluTime "Go to SimVarZuluTime")
```
func SimVarZuluTime(args ...interface{}) SimVar
```
SimVarZuluTime Simvar args contain optional index and/or unit
#### func [SimVarZuluYear](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L10086) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluYear "Go to SimVarZuluYear")
```
func SimVarZuluYear(args ...interface{}) SimVar
```
SimVarZuluYear Simvar args contain optional index and/or unit
#### func (\*SimVar) [GetBool](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L190) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetBool "Go to SimVar.GetBool")
```
func (s *SimVar) GetBool() (bool, error)
```
#### func (\*SimVar) [GetData](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L123) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetData "Go to SimVar.GetData")
```
func (s *SimVar) GetData() []byte
```
#### func (\*SimVar) [GetDataLatLonAlt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L215) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataLatLonAlt "Go to SimVar.GetDataLatLonAlt")
```
func (s *SimVar) GetDataLatLonAlt() (*SIMCONNECT_DATA_LATLONALT, error)
```
#### func (\*SimVar) [GetDataWaypoint](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L224) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataWaypoint "Go to SimVar.GetDataWaypoint")
```
func (s *SimVar) GetDataWaypoint() (*SIMCONNECT_DATA_WAYPOINT, error)
```
#### func (\*SimVar) [GetDataXYZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L206) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataXYZ "Go to SimVar.GetDataXYZ")
```
func (s *SimVar) GetDataXYZ() (*SIMCONNECT_DATA_XYZ, error)
```
#### func (\*SimVar) [GetDatumType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L127) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDatumType "Go to SimVar.GetDatumType")
```
func (s *SimVar) GetDatumType() uint32
```
#### func (\*SimVar) [GetDegrees](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L198) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDegrees "Go to SimVar.GetDegrees")
```
func (s *SimVar) GetDegrees() (float64, error)
```
#### func (\*SimVar) [GetFloat64](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L172) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetFloat64 "Go to SimVar.GetFloat64")
```
func (s *SimVar) GetFloat64() (float64, error)
```
#### func (\*SimVar) [GetInt](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L182) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetInt "Go to SimVar.GetInt")
```
func (s *SimVar) GetInt() (int, error)
```
GetInt lost precision
#### func (\*SimVar) [GetSize](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L146) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetSize "Go to SimVar.GetSize")
```
func (s *SimVar) GetSize() int
```
#### func (\*SimVar) [GetString](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L240) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetString "Go to SimVar.GetString")
```
func (s *SimVar) GetString() string
```
#### func (\*SimVar) [SetFloat64](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L233) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.SetFloat64 "Go to SimVar.SetFloat64")
```
func (s *SimVar) SetFloat64(f float64)
```
#### type [SimVarUnit](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L13) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnit "Go to SimVarUnit")
```
type SimVarUnit string
```
```
const (
UnitBool SimVarUnit = "Bool"
UnitFeetpersecond SimVarUnit = "Feetpersecond"
UnitPercentover100 SimVarUnit = "Percentover100"
UnitNumber SimVarUnit = "Number"
UnitGallons SimVarUnit = "Gallons"
UnitString SimVarUnit = "String"
UnitBoolString SimVarUnit = "Bool/String"
UnitFeet SimVarUnit = "Feet"
UnitSimconnectDataXyz SimVarUnit = "SimconnectDataXyz"
UnitMask SimVarUnit = "Mask"
UnitKnots SimVarUnit = "Knots"
UnitSimconnectDataWaypoint SimVarUnit = "SimconnectDataWaypoint"
UnitDegrees SimVarUnit = "Degrees"
UnitSeconds SimVarUnit = "Seconds"
UnitBoolean SimVarUnit = "Boolean"
UnitSimconnectDataLatlonalt SimVarUnit = "SimconnectDataLatlonalt"
UnitPercent SimVarUnit = "Percent"
UnitEnum SimVarUnit = "Enum"
UnitRpm SimVarUnit = "Rpm"
UnitRankine SimVarUnit = "Rankine"
UnitPsi SimVarUnit = "Psi"
UnitHours SimVarUnit = "Hours"
UnitPosition SimVarUnit = "Position"
Unitftlbpersecond SimVarUnit = "ftlbpersecond"
UnitFootpound SimVarUnit = "Footpound"
UnitCelsius SimVarUnit = "Celsius"
UnitPoundsperhour SimVarUnit = "Poundsperhour"
UnitRatio SimVarUnit = "Ratio"
UnitPounds SimVarUnit = "Pounds"
UnitRadians SimVarUnit = "Radians"
UnitFootpounds SimVarUnit = "Footpounds"
UnitpoundForcepersquareinch SimVarUnit = "pound-forcepersquareinch"
UnitinHg SimVarUnit = "inHg"
UnitPSI SimVarUnit = "PSI"
UnitFeetpersecondsquared SimVarUnit = "Feetpersecondsquared"
UnitMeters SimVarUnit = "Meters"
UnitMach SimVarUnit = "Mach"
UnitMillibars SimVarUnit = "Millibars"
UnitRadianspersecond SimVarUnit = "Radianspersecond"
UnitGforce SimVarUnit = "Gforce"
UnitFrequencyBCD16 SimVarUnit = "FrequencyBCD16"
UnitMHz SimVarUnit = "MHz"
UnitNauticalmiles SimVarUnit = "Nauticalmiles"
UnitFrequencyADFBCD32 SimVarUnit = "FrequencyADFBCD32"
UnitHz SimVarUnit = "Hz"
UnitBCO16 SimVarUnit = "BCO16"
UnitMeterspersecond SimVarUnit = "Meterspersecond"
UnitFlags SimVarUnit = "Flags"
Unitpsf SimVarUnit = "psf"
UnitPercentage SimVarUnit = "Percentage"
UnitFeetPMinute SimVarUnit = "Feet/minute"
UnitSlugspercubicfeet SimVarUnit = "Slugspercubicfeet"
UnitAmperes SimVarUnit = "Amperes"
UnitVolts SimVarUnit = "Volts"
UnitPoundforcepersquarefoot SimVarUnit = "Poundforcepersquarefoot"
UnitGForce SimVarUnit = "GForce"
UnitFeetperminute SimVarUnit = "Feetperminute"
UnitPoundspersquarefoot SimVarUnit = "Poundspersquarefoot"
Unitfootpounds SimVarUnit = "footpounds"
UnitSquarefeet SimVarUnit = "Squarefeet"
UnitPerradian SimVarUnit = "Perradian"
UnitMachs SimVarUnit = "Machs"
Unitslugfeetsquared SimVarUnit = "slugfeetsquared"
UnitAmps SimVarUnit = "Amps"
UnitPersecond SimVarUnit = "Persecond"
UnitString64 SimVarUnit = "String64"
UnitString8 SimVarUnit = "String8"
UnitVariablelengthstring SimVarUnit = "Variablelengthstring"
)
```
#### type [SyscallSC](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L8) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC "Go to SyscallSC")
```
type SyscallSC struct {
// contains filtered or unexported fields
}
```
#### func [NewSyscallSC](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L85) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewSyscallSC "Go to NewSyscallSC")
```
func NewSyscallSC() (*SyscallSC, error)
```
NewsyscallSC.pinit all syscall
#### func (\*SyscallSC) [AICreateEnrouteATCAircraft](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L669) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateEnrouteATCAircraft "Go to SyscallSC.AICreateEnrouteATCAircraft")
```
func (syscallSC *SyscallSC) AICreateEnrouteATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, iFlightNumber uintptr, szFlightPlanPath uintptr, dFlightPlanPosition uintptr, bTouchAndGo uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [AICreateNonATCAircraft](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L677) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateNonATCAircraft "Go to SyscallSC.AICreateNonATCAircraft")
```
func (syscallSC *SyscallSC) AICreateNonATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, InitPos uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [AICreateParkedATCAircraft](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L661) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateParkedATCAircraft "Go to SyscallSC.AICreateParkedATCAircraft")
```
func (syscallSC *SyscallSC) AICreateParkedATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, szAirportID uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [AICreateSimulatedObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L685) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateSimulatedObject "Go to SyscallSC.AICreateSimulatedObject")
```
func (syscallSC *SyscallSC) AICreateSimulatedObject(hSimConnect uintptr, szContainerTitle uintptr, InitPos uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [AIReleaseControl](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L693) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AIReleaseControl "Go to SyscallSC.AIReleaseControl")
```
func (syscallSC *SyscallSC) AIReleaseControl(hSimConnect uintptr, ObjectID uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [AIRemoveObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L701) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AIRemoveObject "Go to SyscallSC.AIRemoveObject")
```
func (syscallSC *SyscallSC) AIRemoveObject(hSimConnect uintptr, ObjectID uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [AISetAircraftFlightPlan](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L709) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AISetAircraftFlightPlan "Go to SyscallSC.AISetAircraftFlightPlan")
```
func (syscallSC *SyscallSC) AISetAircraftFlightPlan(hSimConnect uintptr, ObjectID uintptr, szFlightPlanPath uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [AddClientEventToNotificationGroup](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L405) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddClientEventToNotificationGroup "Go to SyscallSC.AddClientEventToNotificationGroup")
```
func (syscallSC *SyscallSC) AddClientEventToNotificationGroup(hSimConnect uintptr, GroupID uintptr, EventID uintptr, bMaskable uintptr) error
```
#### func (\*SyscallSC) [AddToClientDataDefinition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L868) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddToClientDataDefinition "Go to SyscallSC.AddToClientDataDefinition")
```
func (syscallSC *SyscallSC) AddToClientDataDefinition(hSimConnect uintptr, DefineID uintptr, dwOffset uintptr, dwSizeOrType uintptr, fEpsilon uintptr, DatumID uintptr) error
```
#### func (\*SyscallSC) [AddToDataDefinition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L445) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddToDataDefinition "Go to SyscallSC.AddToDataDefinition")
```
func (syscallSC *SyscallSC) AddToDataDefinition(hSimConnect uintptr, DefineID uintptr, DatumName uintptr, UnitsName uintptr, DatumType uintptr, fEpsilon uintptr, DatumID uintptr) error
```
#### func (\*SyscallSC) [CallDispatch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L764) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CallDispatch "Go to SyscallSC.CallDispatch")
```
func (syscallSC *SyscallSC) CallDispatch(hSimConnect uintptr, pfcnDispatch uintptr, pContext uintptr) error
```
#### func (\*SyscallSC) [CameraSetRelative6DOF](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L796) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CameraSetRelative6DOF "Go to SyscallSC.CameraSetRelative6DOF")
```
func (syscallSC *SyscallSC) CameraSetRelative6DOF(hSimConnect uintptr, fDeltaX uintptr, fDeltaY uintptr, fDeltaZ uintptr, fPitchDeg uintptr, fBankDeg uintptr, fHeadingDeg uintptr) error
```
#### func (\*SyscallSC) [ClearClientDataDefinition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L876) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearClientDataDefinition "Go to SyscallSC.ClearClientDataDefinition")
```
func (syscallSC *SyscallSC) ClearClientDataDefinition(hSimConnect uintptr, DefineID uintptr) error
```
#### func (\*SyscallSC) [ClearDataDefinition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L453) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearDataDefinition "Go to SyscallSC.ClearDataDefinition")
```
func (syscallSC *SyscallSC) ClearDataDefinition(hSimConnect uintptr, DefineID uintptr) error
```
#### func (\*SyscallSC) [ClearInputGroup](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L509) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearInputGroup "Go to SyscallSC.ClearInputGroup")
```
func (syscallSC *SyscallSC) ClearInputGroup(hSimConnect uintptr, GroupID uintptr) error
```
#### func (\*SyscallSC) [ClearNotificationGroup](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L429) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearNotificationGroup "Go to SyscallSC.ClearNotificationGroup")
```
func (syscallSC *SyscallSC) ClearNotificationGroup(hSimConnect uintptr, GroupID uintptr) error
```
#### func (\*SyscallSC) [Close](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L733) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Close "Go to SyscallSC.Close")
```
func (syscallSC *SyscallSC) Close(hSimConnect uintptr) error
```
#### func (\*SyscallSC) [CompleteCustomMissionAction](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L725) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CompleteCustomMissionAction "Go to SyscallSC.CompleteCustomMissionAction")
```
func (syscallSC *SyscallSC) CompleteCustomMissionAction(hSimConnect uintptr, guidInstanceId uintptr) error
```
#### func (\*SyscallSC) [CreateClientData](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L860) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CreateClientData "Go to SyscallSC.CreateClientData")
```
func (syscallSC *SyscallSC) CreateClientData(hSimConnect uintptr, ClientDataID uintptr, dwSize uintptr, Flags uintptr) error
```
#### func (\*SyscallSC) [ExecuteMissionAction](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L717) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ExecuteMissionAction "Go to SyscallSC.ExecuteMissionAction")
```
func (syscallSC *SyscallSC) ExecuteMissionAction(hSimConnect uintptr, guidInstanceId uintptr) error
```
#### func (\*SyscallSC) [FlightLoad](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L900) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightLoad "Go to SyscallSC.FlightLoad")
```
func (syscallSC *SyscallSC) FlightLoad(hSimConnect uintptr, szFileName uintptr) error
```
#### func (\*SyscallSC) [FlightPlanLoad](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L916) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightPlanLoad "Go to SyscallSC.FlightPlanLoad")
```
func (syscallSC *SyscallSC) FlightPlanLoad(hSimConnect uintptr, szFileName uintptr) error
```
#### func (\*SyscallSC) [FlightSave](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L908) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightSave "Go to SyscallSC.FlightSave")
```
func (syscallSC *SyscallSC) FlightSave(hSimConnect uintptr, szFileName uintptr, szTitle uintptr, szDescription uintptr, Flags uintptr) error
```
#### func (\*SyscallSC) [GetLastSentPacketID](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L749) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.GetLastSentPacketID "Go to SyscallSC.GetLastSentPacketID")
```
func (syscallSC *SyscallSC) GetLastSentPacketID(hSimConnect uintptr, pdwError uintptr) error
```
#### func (\*SyscallSC) [GetNextDispatch](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L772) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.GetNextDispatch "Go to SyscallSC.GetNextDispatch")
```
func (syscallSC *SyscallSC) GetNextDispatch(hSimConnect uintptr, ppData uintptr, pcbData uintptr) error
```
#### func (\*SyscallSC) [InsertString](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L788) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.InsertString "Go to SyscallSC.InsertString")
```
func (syscallSC *SyscallSC) InsertString(pDest uintptr, cbDest uintptr, ppEnd uintptr, pcbStringV uintptr, pSource uintptr) error
```
#### func (\*SyscallSC) [MapClientDataNameToID](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L852) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapClientDataNameToID "Go to SyscallSC.MapClientDataNameToID")
```
func (syscallSC *SyscallSC) MapClientDataNameToID(hSimConnect uintptr, szClientDataName uintptr, ClientDataID uintptr) error
```
#### func (\*SyscallSC) [MapClientEventToSimEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L381) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapClientEventToSimEvent "Go to SyscallSC.MapClientEventToSimEvent")
```
func (syscallSC *SyscallSC) MapClientEventToSimEvent(hSimConnect uintptr, EventID uintptr, EventName uintptr) error
```
#### func (\*SyscallSC) [MapInputEventToClientEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L485) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapInputEventToClientEvent "Go to SyscallSC.MapInputEventToClientEvent")
```
func (syscallSC *SyscallSC) MapInputEventToClientEvent(hSimConnect uintptr, GroupID uintptr, szInputDefinition uintptr, DownEventID uintptr, DownValue uintptr, UpEventID uintptr, UpValue uintptr, bMaskable uintptr) error
```
#### func (\*SyscallSC) [MenuAddItem](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L804) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuAddItem "Go to SyscallSC.MenuAddItem")
```
func (syscallSC *SyscallSC) MenuAddItem(hSimConnect uintptr, szMenuItem uintptr, MenuEventID uintptr, dwData uintptr) error
```
#### func (\*SyscallSC) [MenuAddSubItem](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L820) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuAddSubItem "Go to SyscallSC.MenuAddSubItem")
```
func (syscallSC *SyscallSC) MenuAddSubItem(hSimConnect uintptr, MenuEventID uintptr, szMenuItem uintptr, SubMenuEventID uintptr, dwData uintptr) error
```
#### func (\*SyscallSC) [MenuDeleteItem](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L812) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuDeleteItem "Go to SyscallSC.MenuDeleteItem")
```
func (syscallSC *SyscallSC) MenuDeleteItem(hSimConnect uintptr, MenuEventID uintptr) error
```
#### func (\*SyscallSC) [MenuDeleteSubItem](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L828) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuDeleteSubItem "Go to SyscallSC.MenuDeleteSubItem")
```
func (syscallSC *SyscallSC) MenuDeleteSubItem(hSimConnect uintptr, MenuEventID uintptr, SubMenuEventID uintptr) error
```
#### func (\*SyscallSC) [Open](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L757) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Open "Go to SyscallSC.Open")
```
func (syscallSC *SyscallSC) Open(phSimConnect uintptr, szName uintptr, hWnd uintptr, UserEventWin uintptr, hEventHandle uintptr, ConfigIndex uintptr) error
```
#### func (\*SyscallSC) [RemoveClientEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L413) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RemoveClientEvent "Go to SyscallSC.RemoveClientEvent")
```
func (syscallSC *SyscallSC) RemoveClientEvent(hSimConnect uintptr, GroupID uintptr, EventID uintptr) error
```
#### func (\*SyscallSC) [RemoveInputEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L501) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RemoveInputEvent "Go to SyscallSC.RemoveInputEvent")
```
func (syscallSC *SyscallSC) RemoveInputEvent(hSimConnect uintptr, GroupID uintptr, szInputDefinition uintptr) error
```
#### func (\*SyscallSC) [RequestClientData](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L884) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestClientData "Go to SyscallSC.RequestClientData")
```
func (syscallSC *SyscallSC) RequestClientData(hSimConnect uintptr, ClientDataID uintptr, RequestID uintptr, DefineID uintptr, Period uintptr, Flags uintptr, origin uintptr, interval uintptr, limit uintptr) error
```
#### func (\*SyscallSC) [RequestDataOnSimObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L461) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestDataOnSimObject "Go to SyscallSC.RequestDataOnSimObject")
```
func (syscallSC *SyscallSC) RequestDataOnSimObject(hSimConnect uintptr, RequestID uintptr, DefineID uintptr, ObjectID uintptr, Period uintptr, Flags uintptr, origin uintptr, interval uintptr, limit uintptr) error
```
#### func (\*SyscallSC) [RequestDataOnSimObjectType](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L469) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestDataOnSimObjectType "Go to SyscallSC.RequestDataOnSimObjectType")
```
func (syscallSC *SyscallSC) RequestDataOnSimObjectType(hSimConnect uintptr, RequestID uintptr, DefineID uintptr, dwRadiusMeters uintptr, t uintptr) error
```
#### func (\*SyscallSC) [RequestFacilitiesList](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L948) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestFacilitiesList "Go to SyscallSC.RequestFacilitiesList")
```
func (syscallSC *SyscallSC) RequestFacilitiesList(hSimConnect uintptr, t uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [RequestNotificationGroup](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L437) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestNotificationGroup "Go to SyscallSC.RequestNotificationGroup")
```
func (syscallSC *SyscallSC) RequestNotificationGroup(hSimConnect uintptr, GroupID uintptr, dwReserved uintptr, Flags uintptr) error
```
#### func (\*SyscallSC) [RequestReservedKey](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L525) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestReservedKey "Go to SyscallSC.RequestReservedKey")
```
func (syscallSC *SyscallSC) RequestReservedKey(hSimConnect uintptr, EventID uintptr, szKeyChoice1 uintptr, szKeyChoice2 uintptr, szKeyChoice3 uintptr) error
```
#### func (\*SyscallSC) [RequestResponseTimes](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L780) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestResponseTimes "Go to SyscallSC.RequestResponseTimes")
```
func (syscallSC *SyscallSC) RequestResponseTimes(hSimConnect uintptr, nCount uintptr, fElapsedSeconds uintptr) error
```
#### func (\*SyscallSC) [RequestSystemState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L836) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestSystemState "Go to SyscallSC.RequestSystemState")
```
func (syscallSC *SyscallSC) RequestSystemState(hSimConnect uintptr, RequestID uintptr, szState uintptr) error
```
#### func (\*SyscallSC) [RetrieveString](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L741) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RetrieveString "Go to SyscallSC.RetrieveString")
```
func (syscallSC *SyscallSC) RetrieveString(pData uintptr, cbData uintptr, pStringV uintptr, pszString uintptr, pcbString uintptr) error
```
#### func (\*SyscallSC) [SetClientData](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L892) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetClientData "Go to SyscallSC.SetClientData")
```
func (syscallSC *SyscallSC) SetClientData(hSimConnect uintptr, ClientDataID uintptr, DefineID uintptr, Flags uintptr, dwReserved uintptr, cbUnitSize uintptr, pDataSet uintptr) error
```
#### func (\*SyscallSC) [SetDataOnSimObject](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L477) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetDataOnSimObject "Go to SyscallSC.SetDataOnSimObject")
```
func (syscallSC *SyscallSC) SetDataOnSimObject(hSimConnect uintptr, DefineID uintptr, ObjectID uintptr, Flags uintptr, ArrayCount uintptr, cbUnitSize uintptr, pDataSet uintptr) error
```
#### func (\*SyscallSC) [SetInputGroupPriority](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L493) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetInputGroupPriority "Go to SyscallSC.SetInputGroupPriority")
```
func (syscallSC *SyscallSC) SetInputGroupPriority(hSimConnect uintptr, GroupID uintptr, uPriority uintptr) error
```
#### func (\*SyscallSC) [SetInputGroupState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L517) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetInputGroupState "Go to SyscallSC.SetInputGroupState")
```
func (syscallSC *SyscallSC) SetInputGroupState(hSimConnect uintptr, GroupID uintptr, dwState uintptr) error
```
#### func (\*SyscallSC) [SetNotificationGroupPriority](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L421) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetNotificationGroupPriority "Go to SyscallSC.SetNotificationGroupPriority")
```
func (syscallSC *SyscallSC) SetNotificationGroupPriority(hSimConnect uintptr, GroupID uintptr, uPriority uintptr) error
```
#### func (\*SyscallSC) [SetSystemEventState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L397) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetSystemEventState "Go to SyscallSC.SetSystemEventState")
```
func (syscallSC *SyscallSC) SetSystemEventState(hSimConnect uintptr, EventID uintptr, dwState uintptr) error
```
#### func (\*SyscallSC) [SetSystemState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L844) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetSystemState "Go to SyscallSC.SetSystemState")
```
func (syscallSC *SyscallSC) SetSystemState(hSimConnect uintptr, szState uintptr, dwInteger uintptr, fFloat uintptr, szString uintptr) error
```
#### func (\*SyscallSC) [SubscribeToFacilities](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L932) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SubscribeToFacilities "Go to SyscallSC.SubscribeToFacilities")
```
func (syscallSC *SyscallSC) SubscribeToFacilities(hSimConnect uintptr, t uintptr, RequestID uintptr) error
```
#### func (\*SyscallSC) [SubscribeToSystemEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L533) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SubscribeToSystemEvent "Go to SyscallSC.SubscribeToSystemEvent")
```
func (syscallSC *SyscallSC) SubscribeToSystemEvent(hSimConnect uintptr, EventID uintptr, SystemEventName uintptr) error
```
#### func (\*SyscallSC) [Text](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L924) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Text "Go to SyscallSC.Text")
```
func (syscallSC *SyscallSC) Text(hSimConnect uintptr, t uintptr, fTimeSeconds uintptr, EventID uintptr, cbUnitSize uintptr, pDataSet uintptr) error
```
#### func (\*SyscallSC) [TransmitClientEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L389) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.TransmitClientEvent "Go to SyscallSC.TransmitClientEvent")
```
func (syscallSC *SyscallSC) TransmitClientEvent(hSimConnect uintptr, ObjectID uintptr, EventID uintptr, dwData uintptr, GroupID uintptr, Flags uintptr) error
```
#### func (\*SyscallSC) [UnsubscribeFromSystemEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L541) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.UnsubscribeFromSystemEvent "Go to SyscallSC.UnsubscribeFromSystemEvent")
```
func (syscallSC *SyscallSC) UnsubscribeFromSystemEvent(hSimConnect uintptr, EventID uintptr) error
```
#### func (\*SyscallSC) [UnsubscribeToFacilities](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L940) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.UnsubscribeToFacilities "Go to SyscallSC.UnsubscribeToFacilities")
```
func (syscallSC *SyscallSC) UnsubscribeToFacilities(hSimConnect uintptr, t uintptr) error
```
#### func (\*SyscallSC) [WeatherCreateStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L573) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherCreateStation "Go to SyscallSC.WeatherCreateStation")
```
func (syscallSC *SyscallSC) WeatherCreateStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr, szName uintptr, lat uintptr, lon uintptr, alt uintptr) error
```
#### func (\*SyscallSC) [WeatherCreateThermal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L645) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherCreateThermal "Go to SyscallSC.WeatherCreateThermal")
```
func (syscallSC *SyscallSC) WeatherCreateThermal(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr, radius uintptr, height uintptr, coreRate uintptr, coreTurbulence uintptr, sinkRate uintptr, sinkTurbulence uintptr, coreSize uintptr, coreTransitionSize uintptr, sinkLayerSize uintptr, sinkTransitionSize uintptr) error
```
#### func (\*SyscallSC) [WeatherRemoveStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L581) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRemoveStation "Go to SyscallSC.WeatherRemoveStation")
```
func (syscallSC *SyscallSC) WeatherRemoveStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr) error
```
#### func (\*SyscallSC) [WeatherRemoveThermal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L653) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRemoveThermal "Go to SyscallSC.WeatherRemoveThermal")
```
func (syscallSC *SyscallSC) WeatherRemoveThermal(hSimConnect uintptr, ObjectID uintptr) error
```
#### func (\*SyscallSC) [WeatherRequestCloudState](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L637) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestCloudState "Go to SyscallSC.WeatherRequestCloudState")
```
func (syscallSC *SyscallSC) WeatherRequestCloudState(hSimConnect uintptr, RequestID uintptr, minLat uintptr, minLon uintptr, minAlt uintptr, maxLat uintptr, maxLon uintptr, maxAlt uintptr, dwFlags uintptr) error
```
#### func (\*SyscallSC) [WeatherRequestInterpolatedObservation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L549) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestInterpolatedObservation "Go to SyscallSC.WeatherRequestInterpolatedObservation")
```
func (syscallSC *SyscallSC) WeatherRequestInterpolatedObservation(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr) error
```
#### func (\*SyscallSC) [WeatherRequestObservationAtNearestStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L565) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestObservationAtNearestStation "Go to SyscallSC.WeatherRequestObservationAtNearestStation")
```
func (syscallSC *SyscallSC) WeatherRequestObservationAtNearestStation(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr) error
```
#### func (\*SyscallSC) [WeatherRequestObservationAtStation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L557) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestObservationAtStation "Go to SyscallSC.WeatherRequestObservationAtStation")
```
func (syscallSC *SyscallSC) WeatherRequestObservationAtStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr) error
```
#### func (\*SyscallSC) [WeatherSetDynamicUpdateRate](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L629) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetDynamicUpdateRate "Go to SyscallSC.WeatherSetDynamicUpdateRate")
```
func (syscallSC *SyscallSC) WeatherSetDynamicUpdateRate(hSimConnect uintptr, dwRate uintptr) error
```
#### func (\*SyscallSC) [WeatherSetModeCustom](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L621) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeCustom "Go to SyscallSC.WeatherSetModeCustom")
```
func (syscallSC *SyscallSC) WeatherSetModeCustom(hSimConnect uintptr) error
```
#### func (\*SyscallSC) [WeatherSetModeGlobal](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L613) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeGlobal "Go to SyscallSC.WeatherSetModeGlobal")
```
func (syscallSC *SyscallSC) WeatherSetModeGlobal(hSimConnect uintptr) error
```
#### func (\*SyscallSC) [WeatherSetModeServer](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L597) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeServer "Go to SyscallSC.WeatherSetModeServer")
```
func (syscallSC *SyscallSC) WeatherSetModeServer(hSimConnect uintptr, dwPort uintptr, dwSeconds uintptr) error
```
#### func (\*SyscallSC) [WeatherSetModeTheme](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L605) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeTheme "Go to SyscallSC.WeatherSetModeTheme")
```
func (syscallSC *SyscallSC) WeatherSetModeTheme(hSimConnect uintptr, szThemeName uintptr) error
```
#### func (\*SyscallSC) [WeatherSetObservation](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go#L589) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetObservation "Go to SyscallSC.WeatherSetObservation")
```
func (syscallSC *SyscallSC) WeatherSetObservation(hSimConnect uintptr, Seconds uintptr, szMETAR uintptr) error
```
#### type [SystemEvent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/systemevent.go#L3) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SystemEvent "Go to SystemEvent")
```
type SystemEvent string
```
```
const (
//SystemEvent1sec SystemEvent Request a notification every second.
SystemEvent1sec SystemEvent = "1sec"
//SystemEvent4sec SystemEvent Request a notification every four seconds.
SystemEvent4sec SystemEvent = "4sec"
//SystemEvent6Hz SystemEvent Request notifications six times per second. This is the same rate that joystick movement events are transmitted.
SystemEvent6Hz SystemEvent = "6Hz"
//SystemEventAircraftLoaded SystemEvent Request a notification when the aircraft flight dynamics file is changed. These files have a .AIR extension. The filename is returned in a SIMCONNECT_RECV_EVENT_FILENAME structure.
SystemEventAircraftLoaded SystemEvent = "AircraftLoaded"
//SystemEventCrashed SystemEvent Request a notification if the user aircraft crashes.
SystemEventCrashed SystemEvent = "Crashed"
//SystemEventCrashReset SystemEvent Request a notification when the crash cut-scene has completed.
SystemEventCrashReset SystemEvent = "CrashReset"
//SystemEventFlightLoaded SystemEvent Request a notification when a flight is loaded. Note that when a flight is ended, a default flight is typically loaded, so these events will occur when flights and missions are started and finished. The filename of the flight loaded is returned in a SIMCONNECT_RECV_EVENT_FILENAME structure.
SystemEventFlightLoaded SystemEvent = "FlightLoaded"
//SystemEventFlightSaved SystemEvent Request a notification when a flight is saved correctly. The filename of the flight saved is returned in a SIMCONNECT_RECV_EVENT_FILENAME structure.
SystemEventFlightSaved SystemEvent = "FlightSaved"
//SystemEventFlightPlanActivated SystemEvent Request a notification when a new flight plan is activated. The filename of the activated flight plan is returned in a SIMCONNECT_RECV_EVENT_FILENAME structure.
SystemEventFlightPlanActivated SystemEvent = "FlightPlanActivated"
//SystemEventFlightPlanDeactivated SystemEvent Request a notification when the active flight plan is de-activated.
SystemEventFlightPlanDeactivated SystemEvent = "FlightPlanDeactivated"
//SystemEventFrame SystemEvent Request notifications every visual frame. Information is returned in a SIMCONNECT_RECV_EVENT_FRAME structure.
SystemEventFrame SystemEvent = "Frame"
//SystemEventPause SystemEvent Request notifications when the flight is paused or unpaused, and also immediately returns the current pause state (1 = paused or 0 = unpaused). The state is returned in the dwData parameter.
SystemEventPause SystemEvent = "Pause"
//SystemEventPaused SystemEvent Request a notification when the flight is paused.
SystemEventPaused SystemEvent = "Paused"
//SystemEventPauseFrame SystemEvent Request notifications for every visual frame that the simulation is paused. Information is returned in a SIMCONNECT_RECV_EVENT_FRAME structure.
SystemEventPauseFrame SystemEvent = "PauseFrame"
//SystemEventPositionChanged SystemEvent Request a notification when the user changes the position of their aircraft through a dialog.
SystemEventPositionChanged SystemEvent = "PositionChanged"
//SystemEventSim SystemEvent Request notifications when the flight is running or not, and also immediately returns the current state (1 = running or 0 = not running). The state is returned in the dwData parameter.
SystemEventSim SystemEvent = "Sim"
//SystemEventSimStart SystemEvent The simulator is running. Typically the user is actively controlling the aircraft on the ground or in the air. However, in some cases additional pairs of SimStart/SimStop events are sent. For example, when a flight is reset the events that are sent are SimStop, SimStart, SimStop, SimStart. Also when a flight is started with the SHOW_OPENING_SCREEN value (defined in the FSX.CFG file) set to zero, then an additional SimStart/SimStop pair are sent before a second SimStart event is sent when the scenery is fully loaded. The opening screen provides the options to change aircraft, departure airport, and so on.
SystemEventSimStart SystemEvent = "SimStart"
//SystemEventSimStop SystemEvent The simulator is not running. Typically the user is loading a flight, navigating the shell or in a dialog.
SystemEventSimStop SystemEvent = "SimStop"
//SystemEventSound SystemEvent Requests a notification when the master sound switch is changed. This request will also return the current state of the master sound switch immediately. A flag is returned in the dwData parameter, 0 if the switch is off, SIMCONNECT_SOUND_SYSTEM_EVENT_DATA_MASTER (0x1) if the switch is on.
SystemEventSound SystemEvent = "Sound"
//SystemEventUnpaused SystemEvent Request a notification when the flight is un-paused.
SystemEventUnpaused SystemEvent = "Unpaused"
//SystemEventView SystemEvent Requests a notification when the user aircraft view is changed. This request will also return the current view immediately. A flag is returned in the dwData parameter, one of: SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_COCKPIT_2D SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_COCKPIT_VIRTUAL SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_ORTHOGONAL (the map view).
SystemEventView SystemEvent = "View"
//SystemEventWeatherModeChanged SystemEvent Request a notification when the weather mode is changed.
SystemEventWeatherModeChanged SystemEvent = "WeatherModeChanged"
//SystemEventObjectAdded SystemEvent Request a notification when an AI object is added to the simulation. Refer also to the SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE structure.
SystemEventObjectAdded SystemEvent = "ObjectAdded"
//SystemEventObjectRemoved SystemEvent Request a notification when an AI object is removed from the simulation. Refer also to the SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE structure.
SystemEventObjectRemoved SystemEvent = "ObjectRemoved"
//SystemEventMissionCompleted SystemEvent Request a notification when the user has completed a mission. Refer also to the SIMCONNECT_MISSION_END enum.
SystemEventMissionCompleted SystemEvent = "MissionCompleted"
//SystemEventCustomMissionActionExecuted SystemEvent Request a notification when a mission action has been executed. Refer also to the SimConnect_CompleteCustomMissionAction function.
SystemEventCustomMissionActionExecuted SystemEvent = "CustomMissionActionExecuted"
//SystemEventMultiplayerClientStarted SystemEvent Used by a client to request a notification that they have successfully joined a multiplayer race. The event is returned as a SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED structure. This event is only sent to the client, not the host of the session.
SystemEventMultiplayerClientStarted SystemEvent = "MultiplayerClientStarted"
//SystemEventMultiplayerServerStarted SystemEvent Used by a host of a multiplayer race to request a notification when the race is open to other players in the lobby. The event is returned in a SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED structure.
SystemEventMultiplayerServerStarted SystemEvent = "MultiplayerServerStarted"
//SystemEventMultiplayerSessionEnded SystemEvent Request a notification when the mutliplayer race session is terminated. The event is returned in a SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED structure. If a client player leaves a race, this event wil be returned just to the client. If a host leaves or terminates the session, then all players will receive this event. This is the only event that will be broadcast to all players.
SystemEventMultiplayerSessionEnded SystemEvent = "MultiplayerSessionEnded"
//SystemEventRaceEnd SystemEvent Request a notification of the race results for each racer. The results will be returned in SIMCONNECT_RECV_EVENT_RACE_END structures, one for each player.
SystemEventRaceEnd SystemEvent = "RaceEnd"
//SystemEventRaceLap SystemEvent Request a notification of the race results for each racer. The results will be returned in SIMCONNECT_RECV_EVENT_RACE_LAP structures, one for each player.
SystemEventRaceLap SystemEvent = "RaceLap"
)
```
##  Source Files [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#section-sourcefiles "Go to Source Files")
[View all Source files](https://github.com/flysim-apps/simgo/tree/v1.2.0/simconnect)
- [const.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go "const.go")
- [easysimconnect.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go "easysimconnect.go")
- [exceptions.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/exceptions.go "exceptions.go")
- [simconnect.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simconnect.go "simconnect.go")
- [simevent.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simevent.go "simevent.go")
- [simvars.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go "simvars.go")
- [struct.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go "struct.go")
- [syscall.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/syscall.go "syscall.go")
- [systemevent.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/systemevent.go "systemevent.go")
- [tools.go](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/tools.go "tools.go")
Click to show internal directories.
Click to hide internal directories.
[Why Go](https://go.dev/solutions) [Use Cases](https://go.dev/solutions#use-cases) [Case Studies](https://go.dev/solutions#case-studies)
[Get Started](https://learn.go.dev/) [Playground](https://play.golang.org/) [Tour](https://tour.golang.org/) [Stack Overflow](https://stackoverflow.com/questions/tagged/go?tab=Newest) [Help](https://go.dev/help)
[Packages](https://pkg.go.dev/) [Standard Library](https://pkg.go.dev/std) [Sub-repositories](https://pkg.go.dev/golang.org/x) [About Go Packages](https://pkg.go.dev/about)
[About](https://go.dev/project) [Download](https://go.dev/dl/) [Blog](https://go.dev/blog) [Issue Tracker](https://github.com/golang/go/issues) [Release Notes](https://go.dev/doc/devel/release.html) [Brand Guidelines](https://go.dev/brand) [Code of Conduct](https://go.dev/conduct)
[Connect](https://www.twitter.com/golang) [Twitter](https://www.twitter.com/golang) [GitHub](https://github.com/golang) [Slack](https://invite.slack.golangbridge.org/) [r/golang](https://reddit.com/r/golang) [Meetup](https://www.meetup.com/pro/go) [Golang Weekly](https://golangweekly.com/)

- [Copyright](https://go.dev/copyright)
- [Terms of Service](https://go.dev/tos)
- [Privacy Policy](http://www.google.com/intl/en/policies/privacy/)
- [Report an Issue](https://go.dev/s/pkgsite-feedback)
-   
Theme Toggle
- 
Shortcuts Modal
[](https://google.com/)
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. [Learn more.](https://policies.google.com/technologies/cookies)
Okay |
| Readable Markdown | Package simconnect is a binding for FS2020 βοΈ in GO. Please see EasySimConnect for best use
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarStructLatlonalt(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
latlonalt, err := simVar.GetDataLatLonAlt()
if err != nil {
panic(err)
}
log.Printf("%s : %#v\nIn Feet %#v\n", simVar.Name, latlonalt, latlonalt.GetFeets())
}
}
<-sc.Close() // wait close confirmation
}
```
ExampleGetSimVar this example show how to get SimVar with Easysim
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarPlaneAltitude(),
sim.SimVarPlaneLatitude(sim.UnitDegrees), // you can force the units
sim.SimVarPlaneLongitude(),
sim.SimVarIndicatedAltitude(),
sim.SimVarAutopilotAltitudeLockVar(),
sim.SimVarAutopilotMaster(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
f, err := simVar.GetFloat64()
if err != nil {
panic(err)
}
log.Printf("%#v\n", f)
}
}
<-sc.Close() // wait close confirmation
}
```
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarGeneralEngRpm(1),
sim.SimVarTransponderCode(1),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
if simVar.Name == sim.SimVarTransponderCode().Name {
i, err := simVar.GetInt()
if err != nil {
panic(err)
}
log.Printf("%s : %x\n", simVar.Name, i)
} else {
f, err := simVar.GetFloat64()
if err != nil {
panic(err)
}
log.Printf("%s : %f\n", simVar.Name, f)
}
}
}
<-sc.Close() // wait close confirmation
}
```
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarTitle(),
sim.SimVarCategory(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
str := simVar.GetString()
log.Printf("%s : %#v\n", simVar.Name, str)
}
}
<-sc.Close() // wait close confirmation
}
```
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarEyepointPosition(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
xyz, err := simVar.GetDataXYZ()
if err != nil {
panic(err)
}
log.Printf("%s : %#v\n", simVar.Name, xyz)
}
}
<-sc.Close() // wait close confirmation
}
```
Example\_iFaceSetSimVar Example how to use interface for assign value in simulator actualy support only float64
```
package main
import (
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
type ExampleSetSimVar struct {
PlaneAltitude float64 `sim:"PLANE ALTITUDE" simUnit:"Feet"`
PlaneLatitude float64 `sim:"PLANE LATITUDE" simUnit:"Degrees"`
PlaneLongitude float64 `sim:"PLANE LONGITUDE" simUnit:"Degrees"`
Speed float64 `sim:"AIRSPEED INDICATED" simUnit:"Knots"`
}
func main() {
sc := connect()
iFace := ExampleSetSimVar{
PlaneLatitude: 46.2730077,
PlaneLongitude: 6.1324663,
PlaneAltitude: 10000.0,
Speed: 150.0,
}
sc.SetSimVarInterfaceInSim(iFace)
<-sc.Close() // wait close confirmation
// NOEXEC Output:
}
```
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
type ExampleInterface struct {
PlaneAltitude float64 `sim:"PLANE ALTITUDE" simUnit:"Feet"`
PlaneLatitude float64 `sim:"PLANE LATITUDE"`
PlaneLongitude float64 `sim:"PLANE LONGITUDE" simUnit:"Degrees"`
IndicatedAltitude float64 `sim:"INDICATED ALTITUDE"`
AutopilotAltitudeLockVar float64 `sim:"AUTOPILOT ALTITUDE LOCK VAR"`
SimVarAutopilotMaster bool `sim:"GENERAL ENG RPM:1"`
PlaneName string `sim:"TITLE"`
}
func main() {
sc := connect()
cInterface, err := sc.ConnectInterfaceToSimVar(ExampleInterface{})
if err != nil {
panic(err)
}
iFace, ok := (<-cInterface).(ExampleInterface)
if ok {
log.Printf("%#v", iFace)
} else {
log.Fatalln("interface error in Example_interfaceSimVar")
}
<-sc.Close()
}
```
```
package main
import (
"time"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
newalt := sim.SimVarPlaneAltitude()
newalt.SetFloat64(6000.0)
sc.SetSimObject(newalt)
time.Sleep(1000 * time.Millisecond)
<-sc.Close() // wait close confirmation
// NOEXEC Output:
}
```
Example\_showText Actually color no effect in the sim
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
ch, err := sc.ShowText("Test", 1, sim.SIMCONNECT_TEXT_TYPE_PRINT_GREEN)
if err != nil {
panic(err)
}
log.Println(<-ch)
<-sc.Close() // wait close confirmation
}
```
Example\_simEvent You can wait chan if you will surre the event has finish with succes. If your app finish before all event probably not effect.
```
package main
import (
"log"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c
for {
if <-sc.ConnectSysEventSim() {
break
}
}
return sc
}
func main() {
sc := connect()
aileronsSet := sc.NewSimEvent(sim.KeyAxisAileronsSet)
throttleSet := sc.NewSimEvent(sim.KeyThrottleSet)
altVarInc := sc.NewSimEvent(sim.KeyApAltVarInc)
altVarDec := sc.NewSimEvent(sim.KeyApAltVarDec)
log.Println(<-aileronsSet.RunWithValue(-16383))
log.Println(<-throttleSet.RunWithValue(16383))
for i := 0; i < 10; i++ {
<-altVarInc.Run()
}
for i := 0; i < 10; i++ {
<-altVarDec.Run()
}
<-sc.Close() // wait close confirmation
}
```
- [Constants](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#pkg-constants)
- [func InterfaceAssignSimVar(listSimVar \[\]SimVar, iFace interface{})](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#InterfaceAssignSimVar)
- [func SimVarAssignInterface(iFace interface{}, listSimVar \[\]SimVar) interface{}](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAssignInterface)
- [type EasySimConnect](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect)
- - [func NewEasySimConnect(ctx context.Context) (\*EasySimConnect, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewEasySimConnect)
- - [func (esc \*EasySimConnect) Close() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.Close)
- [func (esc \*EasySimConnect) Connect(appName string) (\<-chan bool, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.Connect)
- [func (esc \*EasySimConnect) ConnectInterfaceToSimVar(iFace interface{}) (\<-chan interface{}, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectInterfaceToSimVar)
- [func (esc \*EasySimConnect) ConnectSysEventAircraftLoaded() \<-chan string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventAircraftLoaded)
- [func (esc \*EasySimConnect) ConnectSysEventCrashReset() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventCrashReset)
- [func (esc \*EasySimConnect) ConnectSysEventCrashed() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventCrashed)
- [func (esc \*EasySimConnect) ConnectSysEventFlightLoaded() \<-chan string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightLoaded)
- [func (esc \*EasySimConnect) ConnectSysEventFlightPlanActivated() \<-chan string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanActivated)
- [func (esc \*EasySimConnect) ConnectSysEventFlightPlanDeactivated() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanDeactivated)
- [func (esc \*EasySimConnect) ConnectSysEventFlightSaved() \<-chan string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightSaved)
- [func (esc \*EasySimConnect) ConnectSysEventPause() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventPause)
- [func (esc \*EasySimConnect) ConnectSysEventPaused() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventPaused)
- [func (esc \*EasySimConnect) ConnectSysEventSim() \<-chan bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventSim)
- [func (esc \*EasySimConnect) ConnectToSimVar(listSimVar ...SimVar) (\<-chan \[\]SimVar, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectToSimVar)
- [func (esc \*EasySimConnect) ConnectToSimVarObject(listSimVar ...SimVar) \<-chan \[\]SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectToSimVarObject)deprecated
- [func (esc \*EasySimConnect) IsAlive() bool](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.IsAlive)
- [func (esc \*EasySimConnect) NewSimEvent(simEventStr KeySimEvent) SimEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.NewSimEvent)
- [func (esc \*EasySimConnect) SetDelay(t time.Duration)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetDelay)
- [func (esc \*EasySimConnect) SetLoggerLevel(level EasySimConnectLogLevel)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetLoggerLevel)
- [func (esc \*EasySimConnect) SetSimObject(simVar SimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetSimObject)
- [func (esc \*EasySimConnect) SetSimVarInterfaceInSim(iFace interface{}) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.SetSimVarInterfaceInSim)
- [func (esc \*EasySimConnect) ShowText(str string, time float32, color PrintColor) (\<-chan int, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ShowText)
- [type EasySimConnectLogLevel](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnectLogLevel)
- [type EventFlag](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EventFlag)
- [type GUID](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#GUID)
- [type GroupPriority](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#GroupPriority)
- [type KeySimEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#KeySimEvent)
- [type PrintColor](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#PrintColor)
- [type SIMCONNECT\_DATA\_FACILITY\_AIRPORT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_AIRPORT)
- [type SIMCONNECT\_DATA\_FACILITY\_NDB](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_NDB)
- [type SIMCONNECT\_DATA\_FACILITY\_VOR](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_VOR)
- [type SIMCONNECT\_DATA\_FACILITY\_WAYPOINT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_FACILITY_WAYPOINT)
- [type SIMCONNECT\_DATA\_INITPOSITION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_INITPOSITION)
- [type SIMCONNECT\_DATA\_LATLONALT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_LATLONALT)
- - [func (s SIMCONNECT\_DATA\_LATLONALT) GetFeets() int](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_LATLONALT.GetFeets)
- [type SIMCONNECT\_DATA\_MARKERSTATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_MARKERSTATE)
- [type SIMCONNECT\_DATA\_RACE\_RESULT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_RACE_RESULT)
- [type SIMCONNECT\_DATA\_WAYPOINT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_WAYPOINT)
- [type SIMCONNECT\_DATA\_XYZ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_DATA_XYZ)
- [type SIMCONNECT\_RECV](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV)
- [type SIMCONNECT\_RECV\_AIRPORT\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_AIRPORT_LIST)
- [type SIMCONNECT\_RECV\_ASSIGNED\_OBJECT\_ID](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_ASSIGNED_OBJECT_ID)
- [type SIMCONNECT\_RECV\_CLIENT\_DATA](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CLIENT_DATA)
- [type SIMCONNECT\_RECV\_CLOUD\_STATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CLOUD_STATE)
- [type SIMCONNECT\_RECV\_CUSTOM\_ACTION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_CUSTOM_ACTION)
- [type SIMCONNECT\_RECV\_EVENT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT)
- [type SIMCONNECT\_RECV\_EVENT\_FILENAME](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_FILENAME)
- [type SIMCONNECT\_RECV\_EVENT\_FRAME](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_FRAME)
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_CLIENT\_STARTED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED)
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_SERVER\_STARTED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED)
- [type SIMCONNECT\_RECV\_EVENT\_MULTIPLAYER\_SESSION\_ENDED](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED)
- [type SIMCONNECT\_RECV\_EVENT\_OBJECT\_ADDREMOVE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE)
- [type SIMCONNECT\_RECV\_EVENT\_RACE\_END](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_RACE_END)
- [type SIMCONNECT\_RECV\_EVENT\_RACE\_LAP](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_RACE_LAP)
- [type SIMCONNECT\_RECV\_EVENT\_WEATHER\_MODE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EVENT_WEATHER_MODE)
- [type SIMCONNECT\_RECV\_EXCEPTION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_EXCEPTION)
- [type SIMCONNECT\_RECV\_FACILITIES\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_FACILITIES_LIST)
- [type SIMCONNECT\_RECV\_NDB\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_NDB_LIST)
- [type SIMCONNECT\_RECV\_OPEN](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_OPEN)
- [type SIMCONNECT\_RECV\_QUIT](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_QUIT)
- [type SIMCONNECT\_RECV\_RESERVED\_KEY](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_RESERVED_KEY)
- [type SIMCONNECT\_RECV\_SIMOBJECT\_DATA](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SIMOBJECT_DATA)
- [type SIMCONNECT\_RECV\_SIMOBJECT\_DATA\_BYTYPE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE)
- [type SIMCONNECT\_RECV\_SYSTEM\_STATE](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_SYSTEM_STATE)
- [type SIMCONNECT\_RECV\_VOR\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_VOR_LIST)
- [type SIMCONNECT\_RECV\_WAYPOINT\_LIST](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_WAYPOINT_LIST)
- [type SIMCONNECT\_RECV\_WEATHER\_OBSERVATION](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SIMCONNECT_RECV_WEATHER_OBSERVATION)
- [type ScrollColor](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#ScrollColor)
- [type SimConnect](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect)
- - [func NewSimConnect() (\*SimConnect, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewSimConnect)
- - [func (sc \*SimConnect) AICreateEnrouteATCAircraft(szContainerTitle string, szTailNumber string, iFlightNumber int, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateEnrouteATCAircraft)
- [func (sc \*SimConnect) AICreateNonATCAircraft(szContainerTitle string, szTailNumber string, InitPos uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateNonATCAircraft)
- [func (sc \*SimConnect) AICreateParkedATCAircraft(szContainerTitle string, szTailNumber string, szAirportID string, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateParkedATCAircraft)
- [func (sc \*SimConnect) AICreateSimulatedObject(szContainerTitle string, InitPos uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AICreateSimulatedObject)
- [func (sc \*SimConnect) AIReleaseControl(ObjectID uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AIReleaseControl)
- [func (sc \*SimConnect) AIRemoveObject(ObjectID uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AIRemoveObject)
- [func (sc \*SimConnect) AISetAircraftFlightPlan(ObjectID uint32, szFlightPlanPath string, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AISetAircraftFlightPlan)
- [func (sc \*SimConnect) AddClientEventToNotificationGroup(GroupID uint32, EventID uint32, bMaskable bool) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddClientEventToNotificationGroup)
- [func (sc \*SimConnect) AddToClientDataDefinition(DefineID uint32, dwOffset uint32, dwSizeOrType uint32, fEpsilon float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddToClientDataDefinition)
- [func (sc \*SimConnect) AddToDataDefinition(DefineID uint32, DatumName string, UnitsName string, DatumType uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.AddToDataDefinition)
- [func (sc \*SimConnect) CameraSetRelative6DOF(fDeltaX float32, fDeltaY float32, fDeltaZ float32, fPitchDeg float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CameraSetRelative6DOF)
- [func (sc \*SimConnect) ClearClientDataDefinition(DefineID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearClientDataDefinition)
- [func (sc \*SimConnect) ClearDataDefinition(DefineID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearDataDefinition)
- [func (sc \*SimConnect) ClearInputGroup(GroupID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearInputGroup)
- [func (sc \*SimConnect) ClearNotificationGroup(GroupID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ClearNotificationGroup)
- [func (sc \*SimConnect) Close() (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Close)
- [func (sc \*SimConnect) CompleteCustomMissionAction(guidInstanceID GUID) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CompleteCustomMissionAction)
- [func (sc \*SimConnect) CreateClientData(ClientDataID uint32, dwSize uint32, Flags uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.CreateClientData)
- [func (sc \*SimConnect) ExecuteMissionAction(guidInstanceID GUID) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.ExecuteMissionAction)
- [func (sc \*SimConnect) FlightLoad(szFileName string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightLoad)
- [func (sc \*SimConnect) FlightPlanLoad(szFileName string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightPlanLoad)
- [func (sc \*SimConnect) FlightSave(szFileName string, szTitle string, szDescription string, Flags uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.FlightSave)
- [func (sc \*SimConnect) GetLastSentPacketID(pdwError \*uint32) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.GetLastSentPacketID)
- [func (sc \*SimConnect) GetNextDispatch(ppData \*unsafe.Pointer, pcbData \*uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.GetNextDispatch)
- [func (sc \*SimConnect) InsertString(pDest string, cbDest uint32, ppEnd \*uint32, pcbStringV \*uint32, pSource string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.InsertString)
- [func (sc \*SimConnect) MapClientDataNameToID(szClientDataName string, ClientDataID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapClientDataNameToID)
- [func (sc \*SimConnect) MapClientEventToSimEvent(EventID uint32, EventName string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapClientEventToSimEvent)
- [func (sc \*SimConnect) MapInputEventToClientEvent(GroupID uint32, szInputDefinition string, DownEventID uint32, DownValue uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MapInputEventToClientEvent)
- [func (sc \*SimConnect) MenuAddItem(szMenuItem string, MenuEventID uint32, dwData uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuAddItem)
- [func (sc \*SimConnect) MenuAddSubItem(MenuEventID uint32, szMenuItem string, SubMenuEventID uint32, dwData uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuAddSubItem)
- [func (sc \*SimConnect) MenuDeleteItem(MenuEventID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuDeleteItem)
- [func (sc \*SimConnect) MenuDeleteSubItem(MenuEventID uint32, constSubMenuEventID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.MenuDeleteSubItem)
- [func (sc \*SimConnect) Open(appTitle string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Open)
- [func (sc \*SimConnect) RemoveClientEvent(GroupID uint32, EventID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RemoveClientEvent)
- [func (sc \*SimConnect) RemoveInputEvent(GroupID uint32, szInputDefinition string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RemoveInputEvent)
- [func (sc \*SimConnect) RequestClientData(ClientDataID uint32, RequestID uint32, DefineID uint32, Period uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestClientData)
- [func (sc \*SimConnect) RequestDataOnSimObject(RequestID uint32, DefineID uint32, ObjectID uint32, Period uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestDataOnSimObject)
- [func (sc \*SimConnect) RequestDataOnSimObjectType(RequestID uint32, DefineID uint32, dwRadiusMeters uint32, t uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestDataOnSimObjectType)
- [func (sc \*SimConnect) RequestFacilitiesList(t uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestFacilitiesList)
- [func (sc \*SimConnect) RequestNotificationGroup(GroupID uint32, dwReserved uint32, Flags uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestNotificationGroup)
- [func (sc \*SimConnect) RequestReservedKey(EventID uint32, szKeyChoice1 string, szKeyChoice2 string, szKeyChoice3 string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestReservedKey)
- [func (sc \*SimConnect) RequestResponseTimes(nCount uint32, fElapsedSeconds \*float32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestResponseTimes)
- [func (sc \*SimConnect) RequestSystemState(RequestID uint32, szState string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RequestSystemState)
- [func (sc \*SimConnect) RetrieveString(pData \*uint32, cbData uint32, pStringV string, pszString \*\*string, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.RetrieveString)
- [func (sc \*SimConnect) SetClientData(ClientDataID uint32, DefineID uint32, Flags uint32, dwReserved uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetClientData)
- [func (sc \*SimConnect) SetDataOnSimObject(DefineID uint32, ObjectID uint32, Flags uint32, ArrayCount uint32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetDataOnSimObject)
- [func (sc \*SimConnect) SetInputGroupPriority(GroupID uint32, uPriority uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetInputGroupPriority)
- [func (sc \*SimConnect) SetInputGroupState(GroupID uint32, dwState SimConnectStat) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetInputGroupState)
- [func (sc \*SimConnect) SetNotificationGroupPriority(GroupID uint32, uPriority GroupPriority) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetNotificationGroupPriority)
- [func (sc \*SimConnect) SetSystemEventState(EventID uint32, dwState uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetSystemEventState)
- [func (sc \*SimConnect) SetSystemState(szState string, dwInteger uint32, fFloat float32, szString string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SetSystemState)
- [func (sc \*SimConnect) SubscribeToFacilities(t uint32, RequestID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SubscribeToFacilities)
- [func (sc \*SimConnect) SubscribeToSystemEvent(EventID uint32, SystemEventName SystemEvent) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.SubscribeToSystemEvent)
- [func (sc \*SimConnect) Text(t uint32, fTimeSeconds float32, EventID uint32, pDataSet string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.Text)
- [func (sc \*SimConnect) TransmitClientEvent(ObjectID uint32, EventID uint32, dwData int, GroupID GroupPriority, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.TransmitClientEvent)
- [func (sc \*SimConnect) UnsubscribeFromSystemEvent(EventID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.UnsubscribeFromSystemEvent)
- [func (sc \*SimConnect) UnsubscribeToFacilities(t uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.UnsubscribeToFacilities)
- [func (sc \*SimConnect) WeatherCreateStation(RequestID uint32, szICAO string, szName string, lat float32, lon float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherCreateStation)
- [func (sc \*SimConnect) WeatherCreateThermal(RequestID uint32, lat float32, lon float32, alt float32, radius float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherCreateThermal)
- [func (sc \*SimConnect) WeatherRemoveStation(RequestID uint32, szICAO string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRemoveStation)
- [func (sc \*SimConnect) WeatherRemoveThermal(ObjectID uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRemoveThermal)
- [func (sc \*SimConnect) WeatherRequestCloudState(RequestID uint32, minLat float32, minLon float32, minAlt float32, ...) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestCloudState)
- [func (sc \*SimConnect) WeatherRequestInterpolatedObservation(RequestID uint32, lat float32, lon float32, alt float32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestInterpolatedObservation)
- [func (sc \*SimConnect) WeatherRequestObservationAtNearestStation(RequestID uint32, lat float32, lon float32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestObservationAtNearestStation)
- [func (sc \*SimConnect) WeatherRequestObservationAtStation(RequestID uint32, szICAO string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherRequestObservationAtStation)
- [func (sc \*SimConnect) WeatherSetDynamicUpdateRate(dwRate uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetDynamicUpdateRate)
- [func (sc \*SimConnect) WeatherSetModeCustom() (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeCustom)
- [func (sc \*SimConnect) WeatherSetModeGlobal() (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeGlobal)
- [func (sc \*SimConnect) WeatherSetModeServer(dwPort uint32, dwSeconds uint32) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeServer)
- [func (sc \*SimConnect) WeatherSetModeTheme(szThemeName string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetModeTheme)
- [func (sc \*SimConnect) WeatherSetObservation(Seconds uint32, szMETAR string) (error, uint32)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnect.WeatherSetObservation)
- [type SimConnectStat](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimConnectStat)
- [type SimEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent)
- - [func (s SimEvent) Run() \<-chan int32](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent.Run)
- [func (s SimEvent) RunWithValue(value int) \<-chan int32](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimEvent.RunWithValue)
- [type SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar)
- - [func SimVarAbsoluteTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAbsoluteTime)
- [func SimVarAccelerationBodyX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyX)
- [func SimVarAccelerationBodyY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyY)
- [func SimVarAccelerationBodyZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyZ)
- [func SimVarAccelerationWorldX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldX)
- [func SimVarAccelerationWorldY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldY)
- [func SimVarAccelerationWorldZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationWorldZ)
- [func SimVarAdfActiveFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfActiveFrequency)
- [func SimVarAdfAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfAvailable)
- [func SimVarAdfCard(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfCard)
- [func SimVarAdfExtFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfExtFrequency)
- [func SimVarAdfFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfFrequency)
- [func SimVarAdfIdent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfIdent)
- [func SimVarAdfLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfLatlonalt)
- [func SimVarAdfName(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfName)
- [func SimVarAdfRadial(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfRadial)
- [func SimVarAdfSignal(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfSignal)
- [func SimVarAdfSound(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfSound)
- [func SimVarAdfStandbyFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfStandbyFrequency)
- [func SimVarAiCurrentWaypoint(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiCurrentWaypoint)
- [func SimVarAiDesiredHeading(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiDesiredHeading)
- [func SimVarAiDesiredSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiDesiredSpeed)
- [func SimVarAiGroundcruisespeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundcruisespeed)
- [func SimVarAiGroundturnspeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundturnspeed)
- [func SimVarAiGroundturntime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiGroundturntime)
- [func SimVarAiTrafficAssignedParking(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficAssignedParking)
- [func SimVarAiTrafficAssignedRunway(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficAssignedRunway)
- [func SimVarAiTrafficCurrentAirport(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficCurrentAirport)
- [func SimVarAiTrafficEta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficEta)
- [func SimVarAiTrafficEtd(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficEtd)
- [func SimVarAiTrafficFromairport(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficFromairport)
- [func SimVarAiTrafficIsifr(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficIsifr)
- [func SimVarAiTrafficState(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficState)
- [func SimVarAiTrafficToairport(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiTrafficToairport)
- [func SimVarAiWaypointList(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAiWaypointList)
- [func SimVarAileronAverageDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronAverageDeflection)
- [func SimVarAileronLeftDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronLeftDeflection)
- [func SimVarAileronLeftDeflectionPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronLeftDeflectionPct)
- [func SimVarAileronPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronPosition)
- [func SimVarAileronRightDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronRightDeflection)
- [func SimVarAileronRightDeflectionPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronRightDeflectionPct)
- [func SimVarAileronTrim(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronTrim)
- [func SimVarAileronTrimPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAileronTrimPct)
- [func SimVarAircraftWindX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindX)
- [func SimVarAircraftWindY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindY)
- [func SimVarAircraftWindZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAircraftWindZ)
- [func SimVarAirspeedBarberPole(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedBarberPole)
- [func SimVarAirspeedIndicated(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedIndicated)
- [func SimVarAirspeedMach(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedMach)
- [func SimVarAirspeedSelectIndicatedOrTrue(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedSelectIndicatedOrTrue)
- [func SimVarAirspeedTrue(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedTrue)
- [func SimVarAirspeedTrueCalibrate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAirspeedTrueCalibrate)
- [func SimVarAlternateStaticSourceOpen(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAlternateStaticSourceOpen)
- [func SimVarAmbientDensity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientDensity)
- [func SimVarAmbientInCloud(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientInCloud)
- [func SimVarAmbientPrecipState(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientPrecipState)
- [func SimVarAmbientPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientPressure)
- [func SimVarAmbientTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientTemperature)
- [func SimVarAmbientVisibility(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientVisibility)
- [func SimVarAmbientWindDirection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindDirection)
- [func SimVarAmbientWindVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindVelocity)
- [func SimVarAmbientWindX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindX)
- [func SimVarAmbientWindY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindY)
- [func SimVarAmbientWindZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAmbientWindZ)
- [func SimVarAnemometerPctRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAnemometerPctRpm)
- [func SimVarAngleOfAttackIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAngleOfAttackIndicator)
- [func SimVarAntiskidBrakesActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAntiskidBrakesActive)
- [func SimVarApplyHeatToSystems(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApplyHeatToSystems)
- [func SimVarApuGeneratorActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuGeneratorActive)
- [func SimVarApuGeneratorSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuGeneratorSwitch)
- [func SimVarApuOnFireDetected(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuOnFireDetected)
- [func SimVarApuPctRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuPctRpm)
- [func SimVarApuPctStarter(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuPctStarter)
- [func SimVarApuVolts(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarApuVolts)
- [func SimVarArtificialGroundElevation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarArtificialGroundElevation)
- [func SimVarAtcAirline(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcAirline)
- [func SimVarAtcFlightNumber(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcFlightNumber)
- [func SimVarAtcHeavy(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcHeavy)
- [func SimVarAtcId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcId)
- [func SimVarAtcModel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcModel)
- [func SimVarAtcSuggestedMinRwyLanding(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyLanding)
- [func SimVarAtcSuggestedMinRwyTakeoff(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyTakeoff)
- [func SimVarAtcType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcType)
- [func SimVarAttitudeBarsPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeBarsPosition)
- [func SimVarAttitudeCage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeCage)
- [func SimVarAttitudeIndicatorBankDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeIndicatorBankDegrees)
- [func SimVarAttitudeIndicatorPitchDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAttitudeIndicatorPitchDegrees)
- [func SimVarAutoBrakeSwitchCb(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutoBrakeSwitchCb)
- [func SimVarAutoCoordination(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutoCoordination)
- [func SimVarAutopilotAirspeedHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAirspeedHold)
- [func SimVarAutopilotAirspeedHoldVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAirspeedHoldVar)
- [func SimVarAutopilotAltitudeLock(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAltitudeLock)
- [func SimVarAutopilotAltitudeLockVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAltitudeLockVar)
- [func SimVarAutopilotApproachHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotApproachHold)
- [func SimVarAutopilotAttitudeHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAttitudeHold)
- [func SimVarAutopilotAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotAvailable)
- [func SimVarAutopilotBackcourseHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotBackcourseHold)
- [func SimVarAutopilotFlightDirectorActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorActive)
- [func SimVarAutopilotFlightDirectorBank(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorBank)
- [func SimVarAutopilotFlightDirectorPitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotFlightDirectorPitch)
- [func SimVarAutopilotGlideslopeHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotGlideslopeHold)
- [func SimVarAutopilotHeadingLock(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotHeadingLock)
- [func SimVarAutopilotHeadingLockDir(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotHeadingLockDir)
- [func SimVarAutopilotMachHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMachHold)
- [func SimVarAutopilotMachHoldVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMachHoldVar)
- [func SimVarAutopilotMaster(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMaster)
- [func SimVarAutopilotMaxBank(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotMaxBank)
- [func SimVarAutopilotNav1Lock(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotNav1Lock)
- [func SimVarAutopilotNavSelected(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotNavSelected)
- [func SimVarAutopilotPitchHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotPitchHold)
- [func SimVarAutopilotPitchHoldRef(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotPitchHoldRef)
- [func SimVarAutopilotRpmHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotRpmHold)
- [func SimVarAutopilotRpmHoldVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotRpmHoldVar)
- [func SimVarAutopilotTakeoffPowerActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotTakeoffPowerActive)
- [func SimVarAutopilotThrottleArm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotThrottleArm)
- [func SimVarAutopilotVerticalHold(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotVerticalHold)
- [func SimVarAutopilotVerticalHoldVar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotVerticalHoldVar)
- [func SimVarAutopilotWingLeveler(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotWingLeveler)
- [func SimVarAutopilotYawDamper(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutopilotYawDamper)
- [func SimVarAutothrottleActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAutothrottleActive)
- [func SimVarAuxWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAuxWheelRotationAngle)
- [func SimVarAuxWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAuxWheelRpm)
- [func SimVarAvionicsMasterSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAvionicsMasterSwitch)
- [func SimVarBarberPoleMach(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBarberPoleMach)
- [func SimVarBarometerPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBarometerPressure)
- [func SimVarBetaDot(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBetaDot)
- [func SimVarBlastShieldPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBlastShieldPosition)
- [func SimVarBleedAirSourceControl(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBleedAirSourceControl)
- [func SimVarBrakeDependentHydraulicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeDependentHydraulicPressure)
- [func SimVarBrakeIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeIndicator)
- [func SimVarBrakeLeftPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeLeftPosition)
- [func SimVarBrakeParkingIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeParkingIndicator)
- [func SimVarBrakeParkingPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeParkingPosition)
- [func SimVarBrakeRightPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarBrakeRightPosition)
- [func SimVarCabinNoSmokingAlertSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCabinNoSmokingAlertSwitch)
- [func SimVarCabinSeatbeltsAlertSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCabinSeatbeltsAlertSwitch)
- [func SimVarCanopyOpen(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCanopyOpen)
- [func SimVarCarbHeatAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCarbHeatAvailable)
- [func SimVarCategory(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCategory)
- [func SimVarCenterWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCenterWheelRotationAngle)
- [func SimVarCenterWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCenterWheelRpm)
- [func SimVarCgAftLimit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgAftLimit)
- [func SimVarCgFwdLimit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgFwdLimit)
- [func SimVarCgMaxMach(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgMaxMach)
- [func SimVarCgMinMach(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgMinMach)
- [func SimVarCgPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgPercent)
- [func SimVarCgPercentLateral(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCgPercentLateral)
- [func SimVarCircuitAutoBrakesOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutoBrakesOn)
- [func SimVarCircuitAutoFeatherOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutoFeatherOn)
- [func SimVarCircuitAutopilotOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAutopilotOn)
- [func SimVarCircuitAvionicsOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitAvionicsOn)
- [func SimVarCircuitFlapMotorOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitFlapMotorOn)
- [func SimVarCircuitGearMotorOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGearMotorOn)
- [func SimVarCircuitGearWarningOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGearWarningOn)
- [func SimVarCircuitGeneralPanelOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitGeneralPanelOn)
- [func SimVarCircuitHydraulicPumpOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitHydraulicPumpOn)
- [func SimVarCircuitMarkerBeaconOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitMarkerBeaconOn)
- [func SimVarCircuitPitotHeatOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitPitotHeatOn)
- [func SimVarCircuitPropSyncOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitPropSyncOn)
- [func SimVarCircuitStandyVacuumOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitStandyVacuumOn)
- [func SimVarComActiveFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComActiveFrequency)
- [func SimVarComAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComAvailable)
- [func SimVarComReceiveAll(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComReceiveAll)
- [func SimVarComRecieveAll(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComRecieveAll)
- [func SimVarComStandbyFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStandbyFrequency)
- [func SimVarComStatus(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStatus)
- [func SimVarComTest(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComTest)
- [func SimVarComTransmit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComTransmit)
- [func SimVarConcordeNoseAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeNoseAngle)
- [func SimVarConcordeVisorNoseHandle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorNoseHandle)
- [func SimVarConcordeVisorPositionPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorPositionPercent)
- [func SimVarCrashFlag(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCrashFlag)
- [func SimVarCrashSequence(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCrashSequence)
- [func SimVarDecisionAltitudeMsl(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDecisionAltitudeMsl)
- [func SimVarDecisionHeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDecisionHeight)
- [func SimVarDeltaHeadingRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDeltaHeadingRate)
- [func SimVarDesignSpeedVc(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVc)
- [func SimVarDesignSpeedVs0(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVs0)
- [func SimVarDesignSpeedVs1(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDesignSpeedVs1)
- [func SimVarDiskBankAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskBankAngle)
- [func SimVarDiskBankPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskBankPct)
- [func SimVarDiskConingPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskConingPct)
- [func SimVarDiskPitchAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskPitchAngle)
- [func SimVarDiskPitchPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDiskPitchPct)
- [func SimVarDmeSound(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDmeSound)
- [func SimVarDroppableObjectsCount(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsCount)
- [func SimVarDroppableObjectsType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsType)
- [func SimVarDroppableObjectsUiName(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDroppableObjectsUiName)
- [func SimVarDynamicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarDynamicPressure)
- [func SimVarElectricalAvionicsBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalAvionicsBusAmps)
- [func SimVarElectricalAvionicsBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalAvionicsBusVoltage)
- [func SimVarElectricalBatteryBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryBusAmps)
- [func SimVarElectricalBatteryBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryBusVoltage)
- [func SimVarElectricalBatteryLoad(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryLoad)
- [func SimVarElectricalBatteryVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalBatteryVoltage)
- [func SimVarElectricalGenaltBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalGenaltBusAmps)
- [func SimVarElectricalGenaltBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalGenaltBusVoltage)
- [func SimVarElectricalHotBatteryBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalHotBatteryBusAmps)
- [func SimVarElectricalHotBatteryBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalHotBatteryBusVoltage)
- [func SimVarElectricalMainBusAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusAmps)
- [func SimVarElectricalMainBusVoltage(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusVoltage)
- [func SimVarElectricalMasterBattery(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMasterBattery)
- [func SimVarElectricalOldChargingAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalOldChargingAmps)
- [func SimVarElectricalTotalLoadAmps(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalTotalLoadAmps)
- [func SimVarElevatorDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorDeflection)
- [func SimVarElevatorDeflectionPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorDeflectionPct)
- [func SimVarElevatorPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorPosition)
- [func SimVarElevatorTrimIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimIndicator)
- [func SimVarElevatorTrimPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimPct)
- [func SimVarElevatorTrimPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevatorTrimPosition)
- [func SimVarElevonDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElevonDeflection)
- [func SimVarEmptyWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeight)
- [func SimVarEmptyWeightCrossCoupledMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightCrossCoupledMoi)
- [func SimVarEmptyWeightPitchMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightPitchMoi)
- [func SimVarEmptyWeightRollMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightRollMoi)
- [func SimVarEmptyWeightYawMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEmptyWeightYawMoi)
- [func SimVarEngAntiIce(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngAntiIce)
- [func SimVarEngCombustion(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngCombustion)
- [func SimVarEngCylinderHeadTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngCylinderHeadTemperature)
- [func SimVarEngElectricalLoad(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngElectricalLoad)
- [func SimVarEngExhaustGasTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngExhaustGasTemperature)
- [func SimVarEngExhaustGasTemperatureGes(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngExhaustGasTemperatureGes)
- [func SimVarEngFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFailed)
- [func SimVarEngFuelFlowBugPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelFlowBugPosition)
- [func SimVarEngFuelFlowPph(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelFlowPph)
- [func SimVarEngFuelPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngFuelPressure)
- [func SimVarEngHydraulicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngHydraulicPressure)
- [func SimVarEngHydraulicQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngHydraulicQuantity)
- [func SimVarEngManifoldPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngManifoldPressure)
- [func SimVarEngMaxRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngMaxRpm)
- [func SimVarEngN1Rpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngN1Rpm)
- [func SimVarEngN2Rpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngN2Rpm)
- [func SimVarEngOilPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilPressure)
- [func SimVarEngOilQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilQuantity)
- [func SimVarEngOilTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOilTemperature)
- [func SimVarEngOnFire(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngOnFire)
- [func SimVarEngPressureRatio(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngPressureRatio)
- [func SimVarEngRotorRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRotorRpm)
- [func SimVarEngRpmAnimationPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRpmAnimationPercent)
- [func SimVarEngRpmScaler(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngRpmScaler)
- [func SimVarEngTorque(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTorque)
- [func SimVarEngTorquePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTorquePercent)
- [func SimVarEngTransmissionPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTransmissionPressure)
- [func SimVarEngTransmissionTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTransmissionTemperature)
- [func SimVarEngTurbineTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngTurbineTemperature)
- [func SimVarEngVibration(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngVibration)
- [func SimVarEngineControlSelect(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineControlSelect)
- [func SimVarEngineMixureAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineMixureAvailable)
- [func SimVarEngineType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEngineType)
- [func SimVarEstimatedCruiseSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEstimatedCruiseSpeed)
- [func SimVarEstimatedFuelFlow(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEstimatedFuelFlow)
- [func SimVarExitOpen(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitOpen)
- [func SimVarExitPosx(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosx)
- [func SimVarExitPosy(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosy)
- [func SimVarExitPosz(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitPosz)
- [func SimVarExitType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarExitType)
- [func SimVarEyepointPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarEyepointPosition)
- [func SimVarFireBottleDischarged(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFireBottleDischarged)
- [func SimVarFireBottleSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFireBottleSwitch)
- [func SimVarFlapDamageBySpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapDamageBySpeed)
- [func SimVarFlapSpeedExceeded(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapSpeedExceeded)
- [func SimVarFlapsAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsAvailable)
- [func SimVarFlapsHandleIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandleIndex)
- [func SimVarFlapsHandlePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandlePercent)
- [func SimVarFlapsNumHandlePositions(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsNumHandlePositions)
- [func SimVarFlyByWireElacFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireElacFailed)
- [func SimVarFlyByWireElacSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireElacSwitch)
- [func SimVarFlyByWireFacFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireFacFailed)
- [func SimVarFlyByWireFacSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireFacSwitch)
- [func SimVarFlyByWireSecFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireSecFailed)
- [func SimVarFlyByWireSecSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlyByWireSecSwitch)
- [func SimVarFoldingWingLeftPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFoldingWingLeftPercent)
- [func SimVarFoldingWingRightPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFoldingWingRightPercent)
- [func SimVarFuelCrossFeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelCrossFeed)
- [func SimVarFuelLeftCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelLeftCapacity)
- [func SimVarFuelLeftQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelLeftQuantity)
- [func SimVarFuelRightCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelRightCapacity)
- [func SimVarFuelRightQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelRightQuantity)
- [func SimVarFuelSelectedQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedQuantity)
- [func SimVarFuelSelectedQuantityPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedQuantityPercent)
- [func SimVarFuelSelectedTransferMode(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelSelectedTransferMode)
- [func SimVarFuelTankCenter2Capacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Capacity)
- [func SimVarFuelTankCenter2Level(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Level)
- [func SimVarFuelTankCenter2Quantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter2Quantity)
- [func SimVarFuelTankCenter3Capacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Capacity)
- [func SimVarFuelTankCenter3Level(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Level)
- [func SimVarFuelTankCenter3Quantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenter3Quantity)
- [func SimVarFuelTankCenterCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterCapacity)
- [func SimVarFuelTankCenterLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterLevel)
- [func SimVarFuelTankCenterQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankCenterQuantity)
- [func SimVarFuelTankExternal1Capacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Capacity)
- [func SimVarFuelTankExternal1Level(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Level)
- [func SimVarFuelTankExternal1Quantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal1Quantity)
- [func SimVarFuelTankExternal2Capacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Capacity)
- [func SimVarFuelTankExternal2Level(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Level)
- [func SimVarFuelTankExternal2Quantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankExternal2Quantity)
- [func SimVarFuelTankLeftAuxCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxCapacity)
- [func SimVarFuelTankLeftAuxLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxLevel)
- [func SimVarFuelTankLeftAuxQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftAuxQuantity)
- [func SimVarFuelTankLeftMainCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainCapacity)
- [func SimVarFuelTankLeftMainLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainLevel)
- [func SimVarFuelTankLeftMainQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainQuantity)
- [func SimVarFuelTankLeftTipCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipCapacity)
- [func SimVarFuelTankLeftTipLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipLevel)
- [func SimVarFuelTankLeftTipQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftTipQuantity)
- [func SimVarFuelTankRightAuxCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxCapacity)
- [func SimVarFuelTankRightAuxLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxLevel)
- [func SimVarFuelTankRightAuxQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightAuxQuantity)
- [func SimVarFuelTankRightMainCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainCapacity)
- [func SimVarFuelTankRightMainLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainLevel)
- [func SimVarFuelTankRightMainQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainQuantity)
- [func SimVarFuelTankRightTipCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipCapacity)
- [func SimVarFuelTankRightTipLevel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipLevel)
- [func SimVarFuelTankRightTipQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightTipQuantity)
- [func SimVarFuelTankSelector(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankSelector)
- [func SimVarFuelTotalCapacity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalCapacity)
- [func SimVarFuelTotalQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalQuantity)
- [func SimVarFuelTotalQuantityWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTotalQuantityWeight)
- [func SimVarFuelWeightPerGallon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelWeightPerGallon)
- [func SimVarFullThrottleThrustToWeightRatio(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFullThrottleThrustToWeightRatio)
- [func SimVarGForce(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGForce)
- [func SimVarGearAnimationPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAnimationPosition)
- [func SimVarGearAuxPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxPosition)
- [func SimVarGearAuxSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxSteerAngle)
- [func SimVarGearAuxSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearAuxSteerAnglePct)
- [func SimVarGearCenterPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterPosition)
- [func SimVarGearCenterSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterSteerAngle)
- [func SimVarGearCenterSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearCenterSteerAnglePct)
- [func SimVarGearDamageBySpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearDamageBySpeed)
- [func SimVarGearEmergencyHandlePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearEmergencyHandlePosition)
- [func SimVarGearHandlePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHandlePosition)
- [func SimVarGearHydraulicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHydraulicPressure)
- [func SimVarGearLeftPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftPosition)
- [func SimVarGearLeftSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftSteerAngle)
- [func SimVarGearLeftSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearLeftSteerAnglePct)
- [func SimVarGearPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearPosition)
- [func SimVarGearRightPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightPosition)
- [func SimVarGearRightSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightSteerAngle)
- [func SimVarGearRightSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearRightSteerAnglePct)
- [func SimVarGearSpeedExceeded(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSpeedExceeded)
- [func SimVarGearSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSteerAngle)
- [func SimVarGearSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearSteerAnglePct)
- [func SimVarGearTailPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearTailPosition)
- [func SimVarGearTotalPctExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearTotalPctExtended)
- [func SimVarGearWarning(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearWarning)
- [func SimVarGeneralEngAntiIcePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngAntiIcePosition)
- [func SimVarGeneralEngCombustion(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngCombustion)
- [func SimVarGeneralEngCombustionSoundPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngCombustionSoundPercent)
- [func SimVarGeneralEngDamagePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngDamagePercent)
- [func SimVarGeneralEngElapsedTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngElapsedTime)
- [func SimVarGeneralEngExhaustGasTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngExhaustGasTemperature)
- [func SimVarGeneralEngFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFailed)
- [func SimVarGeneralEngFuelPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPressure)
- [func SimVarGeneralEngFuelPumpOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPumpOn)
- [func SimVarGeneralEngFuelPumpSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelPumpSwitch)
- [func SimVarGeneralEngFuelUsedSinceStart(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelUsedSinceStart)
- [func SimVarGeneralEngFuelValve(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngFuelValve)
- [func SimVarGeneralEngGeneratorActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngGeneratorActive)
- [func SimVarGeneralEngGeneratorSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngGeneratorSwitch)
- [func SimVarGeneralEngMasterAlternator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMasterAlternator)
- [func SimVarGeneralEngMaxReachedRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMaxReachedRpm)
- [func SimVarGeneralEngMixtureLeverPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngMixtureLeverPosition)
- [func SimVarGeneralEngOilLeakedPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilLeakedPercent)
- [func SimVarGeneralEngOilPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilPressure)
- [func SimVarGeneralEngOilTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngOilTemperature)
- [func SimVarGeneralEngPctMaxRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngPctMaxRpm)
- [func SimVarGeneralEngPropellerLeverPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngPropellerLeverPosition)
- [func SimVarGeneralEngRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngRpm)
- [func SimVarGeneralEngStarter(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngStarter)
- [func SimVarGeneralEngStarterActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngStarterActive)
- [func SimVarGeneralEngThrottleLeverPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGeneralEngThrottleLeverPosition)
- [func SimVarGenerator(iFace interface{}) (\[\]SimVar, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGenerator)
- [func SimVarGpsApproachAirportId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachAirportId)
- [func SimVarGpsApproachApproachId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachId)
- [func SimVarGpsApproachApproachIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachIndex)
- [func SimVarGpsApproachApproachType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachApproachType)
- [func SimVarGpsApproachIsFinal(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsFinal)
- [func SimVarGpsApproachIsMissed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsMissed)
- [func SimVarGpsApproachIsWpRunway(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachIsWpRunway)
- [func SimVarGpsApproachMode(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachMode)
- [func SimVarGpsApproachSegmentType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachSegmentType)
- [func SimVarGpsApproachTimezoneDeviation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTimezoneDeviation)
- [func SimVarGpsApproachTransitionId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTransitionId)
- [func SimVarGpsApproachTransitionIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachTransitionIndex)
- [func SimVarGpsApproachWpCount(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpCount)
- [func SimVarGpsApproachWpIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpIndex)
- [func SimVarGpsApproachWpType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsApproachWpType)
- [func SimVarGpsCourseToSteer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsCourseToSteer)
- [func SimVarGpsDrivesNav1(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsDrivesNav1)
- [func SimVarGpsEta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsEta)
- [func SimVarGpsEte(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsEte)
- [func SimVarGpsFlightPlanWpCount(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsFlightPlanWpCount)
- [func SimVarGpsFlightPlanWpIndex(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsFlightPlanWpIndex)
- [func SimVarGpsGroundMagneticTrack(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundMagneticTrack)
- [func SimVarGpsGroundSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundSpeed)
- [func SimVarGpsGroundTrueHeading(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundTrueHeading)
- [func SimVarGpsGroundTrueTrack(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsGroundTrueTrack)
- [func SimVarGpsIsActiveFlightPlan(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveFlightPlan)
- [func SimVarGpsIsActiveWayPoint(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveWayPoint)
- [func SimVarGpsIsActiveWpLocked(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsActiveWpLocked)
- [func SimVarGpsIsApproachActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsApproachActive)
- [func SimVarGpsIsApproachLoaded(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsApproachLoaded)
- [func SimVarGpsIsArrived(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsArrived)
- [func SimVarGpsIsDirecttoFlightplan(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsIsDirecttoFlightplan)
- [func SimVarGpsMagvar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsMagvar)
- [func SimVarGpsPositionAlt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionAlt)
- [func SimVarGpsPositionLat(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionLat)
- [func SimVarGpsPositionLon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsPositionLon)
- [func SimVarGpsTargetAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsTargetAltitude)
- [func SimVarGpsTargetDistance(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsTargetDistance)
- [func SimVarGpsWpBearing(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpBearing)
- [func SimVarGpsWpCrossTrk(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpCrossTrk)
- [func SimVarGpsWpDesiredTrack(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpDesiredTrack)
- [func SimVarGpsWpDistance(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpDistance)
- [func SimVarGpsWpEta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpEta)
- [func SimVarGpsWpEte(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpEte)
- [func SimVarGpsWpNextAlt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextAlt)
- [func SimVarGpsWpNextId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextId)
- [func SimVarGpsWpNextLat(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextLat)
- [func SimVarGpsWpNextLon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpNextLon)
- [func SimVarGpsWpPrevAlt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevAlt)
- [func SimVarGpsWpPrevId(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevId)
- [func SimVarGpsWpPrevLat(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevLat)
- [func SimVarGpsWpPrevLon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevLon)
- [func SimVarGpsWpPrevValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpPrevValid)
- [func SimVarGpsWpTrackAngleError(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrackAngleError)
- [func SimVarGpsWpTrueBearing(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrueBearing)
- [func SimVarGpsWpTrueReqHdg(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpTrueReqHdg)
- [func SimVarGpsWpVerticalSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpsWpVerticalSpeed)
- [func SimVarGpwsSystemActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpwsSystemActive)
- [func SimVarGpwsWarning(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGpwsWarning)
- [func SimVarGroundAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGroundAltitude)
- [func SimVarGroundVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGroundVelocity)
- [func SimVarGyroDriftError(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGyroDriftError)
- [func SimVarHeadingIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHeadingIndicator)
- [func SimVarHoldbackBarInstalled(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHoldbackBarInstalled)
- [func SimVarHsiBearing(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiBearing)
- [func SimVarHsiBearingValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiBearingValid)
- [func SimVarHsiCdiNeedle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiCdiNeedle)
- [func SimVarHsiCdiNeedleValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiCdiNeedleValid)
- [func SimVarHsiDistance(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiDistance)
- [func SimVarHsiGsiNeedle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiGsiNeedle)
- [func SimVarHsiGsiNeedleValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiGsiNeedleValid)
- [func SimVarHsiHasLocalizer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiHasLocalizer)
- [func SimVarHsiSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiSpeed)
- [func SimVarHsiStationIdent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiStationIdent)
- [func SimVarHsiTfFlags(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHsiTfFlags)
- [func SimVarHydraulicPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicPressure)
- [func SimVarHydraulicReservoirPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicReservoirPercent)
- [func SimVarHydraulicSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicSwitch)
- [func SimVarHydraulicSystemIntegrity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarHydraulicSystemIntegrity)
- [func SimVarIncidenceAlpha(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIncidenceAlpha)
- [func SimVarIncidenceBeta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIncidenceBeta)
- [func SimVarIndicatedAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIndicatedAltitude)
- [func SimVarInductorCompassHeadingRef(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInductorCompassHeadingRef)
- [func SimVarInductorCompassPercentDeviation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInductorCompassPercentDeviation)
- [func SimVarInnerMarker(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInnerMarker)
- [func SimVarInnerMarkerLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarInnerMarkerLatlonalt)
- [func SimVarIsAltitudeFreezeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAltitudeFreezeOn)
- [func SimVarIsAttachedToSling(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAttachedToSling)
- [func SimVarIsAttitudeFreezeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsAttitudeFreezeOn)
- [func SimVarIsGearFloats(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearFloats)
- [func SimVarIsGearRetractable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearRetractable)
- [func SimVarIsGearSkids(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearSkids)
- [func SimVarIsGearSkis(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearSkis)
- [func SimVarIsGearWheels(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsGearWheels)
- [func SimVarIsLatitudeLongitudeFreezeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsLatitudeLongitudeFreezeOn)
- [func SimVarIsSlewActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsSlewActive)
- [func SimVarIsSlewAllowed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsSlewAllowed)
- [func SimVarIsTailDragger(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsTailDragger)
- [func SimVarIsUserSim(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarIsUserSim)
- [func SimVarKohlsmanSettingHg(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarKohlsmanSettingHg)
- [func SimVarKohlsmanSettingMb(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarKohlsmanSettingMb)
- [func SimVarLandingLightPbh(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLandingLightPbh)
- [func SimVarLaunchbarPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLaunchbarPosition)
- [func SimVarLeadingEdgeFlapsLeftAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsLeftAngle)
- [func SimVarLeadingEdgeFlapsLeftPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsLeftPercent)
- [func SimVarLeadingEdgeFlapsRightAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsRightAngle)
- [func SimVarLeadingEdgeFlapsRightPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeadingEdgeFlapsRightPercent)
- [func SimVarLeftWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeftWheelRotationAngle)
- [func SimVarLeftWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLeftWheelRpm)
- [func SimVarLightBeacon(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBeacon)
- [func SimVarLightBeaconOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBeaconOn)
- [func SimVarLightBrakeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightBrakeOn)
- [func SimVarLightCabin(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightCabin)
- [func SimVarLightCabinOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightCabinOn)
- [func SimVarLightHeadOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightHeadOn)
- [func SimVarLightLanding(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLanding)
- [func SimVarLightLandingOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLandingOn)
- [func SimVarLightLogo(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLogo)
- [func SimVarLightLogoOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLogoOn)
- [func SimVarLightNav(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightNav)
- [func SimVarLightNavOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightNavOn)
- [func SimVarLightOnStates(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightOnStates)
- [func SimVarLightPanel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightPanel)
- [func SimVarLightPanelOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightPanelOn)
- [func SimVarLightRecognition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightRecognition)
- [func SimVarLightRecognitionOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightRecognitionOn)
- [func SimVarLightStates(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStates)
- [func SimVarLightStrobe(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStrobe)
- [func SimVarLightStrobeOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightStrobeOn)
- [func SimVarLightTaxi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightTaxi)
- [func SimVarLightTaxiOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightTaxiOn)
- [func SimVarLightWing(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightWing)
- [func SimVarLightWingOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightWingOn)
- [func SimVarLinearClAlpha(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLinearClAlpha)
- [func SimVarLocalDayOfMonth(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfMonth)
- [func SimVarLocalDayOfWeek(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfWeek)
- [func SimVarLocalDayOfYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalDayOfYear)
- [func SimVarLocalMonthOfYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalMonthOfYear)
- [func SimVarLocalTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalTime)
- [func SimVarLocalYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLocalYear)
- [func SimVarMachMaxOperate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMachMaxOperate)
- [func SimVarMagneticCompass(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMagneticCompass)
- [func SimVarMagvar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMagvar)
- [func SimVarManualFuelPumpHandle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualFuelPumpHandle)
- [func SimVarManualInstrumentLights(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualInstrumentLights)
- [func SimVarMarkerBeaconState(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMarkerBeaconState)
- [func SimVarMarkerSound(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMarkerSound)
- [func SimVarMasterIgnitionSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMasterIgnitionSwitch)
- [func SimVarMaxGForce(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxGForce)
- [func SimVarMaxGrossWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxGrossWeight)
- [func SimVarMaxRatedEngineRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMaxRatedEngineRpm)
- [func SimVarMiddleMarker(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMiddleMarker)
- [func SimVarMiddleMarkerLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMiddleMarkerLatlonalt)
- [func SimVarMinDragVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMinDragVelocity)
- [func SimVarMinGForce(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarMinGForce)
- [func SimVarNavActiveFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavActiveFrequency)
- [func SimVarNavAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavAvailable)
- [func SimVarNavBackCourseFlags(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavBackCourseFlags)
- [func SimVarNavCdi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavCdi)
- [func SimVarNavCodes(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavCodes)
- [func SimVarNavDme(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDme)
- [func SimVarNavDmeLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDmeLatlonalt)
- [func SimVarNavDmespeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavDmespeed)
- [func SimVarNavGlideSlope(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGlideSlope)
- [func SimVarNavGlideSlopeError(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGlideSlopeError)
- [func SimVarNavGsFlag(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsFlag)
- [func SimVarNavGsLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsLatlonalt)
- [func SimVarNavGsLlaf64(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsLlaf64)
- [func SimVarNavGsi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavGsi)
- [func SimVarNavHasDme(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasDme)
- [func SimVarNavHasGlideSlope(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasGlideSlope)
- [func SimVarNavHasLocalizer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasLocalizer)
- [func SimVarNavHasNav(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavHasNav)
- [func SimVarNavIdent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavIdent)
- [func SimVarNavLocalizer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavLocalizer)
- [func SimVarNavMagvar(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavMagvar)
- [func SimVarNavName(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavName)
- [func SimVarNavObs(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavObs)
- [func SimVarNavRadial(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRadial)
- [func SimVarNavRadialError(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRadialError)
- [func SimVarNavRawGlideSlope(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRawGlideSlope)
- [func SimVarNavRelativeBearingToStation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavRelativeBearingToStation)
- [func SimVarNavSignal(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavSignal)
- [func SimVarNavSound(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavSound)
- [func SimVarNavStandbyFrequency(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavStandbyFrequency)
- [func SimVarNavTofrom(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavTofrom)
- [func SimVarNavVorLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavVorLatlonalt)
- [func SimVarNavVorLlaf64(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavVorLlaf64)
- [func SimVarNumFuelSelectors(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumFuelSelectors)
- [func SimVarNumberOfCatapults(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumberOfCatapults)
- [func SimVarNumberOfEngines(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNumberOfEngines)
- [func SimVarOuterMarker(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOuterMarker)
- [func SimVarOuterMarkerLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOuterMarkerLatlonalt)
- [func SimVarOverspeedWarning(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarOverspeedWarning)
- [func SimVarPanelAntiIceSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPanelAntiIceSwitch)
- [func SimVarPanelAutoFeatherSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPanelAutoFeatherSwitch)
- [func SimVarPartialPanelAdf(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAdf)
- [func SimVarPartialPanelAirspeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAirspeed)
- [func SimVarPartialPanelAltimeter(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAltimeter)
- [func SimVarPartialPanelAttitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAttitude)
- [func SimVarPartialPanelAvionics(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelAvionics)
- [func SimVarPartialPanelComm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelComm)
- [func SimVarPartialPanelCompass(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelCompass)
- [func SimVarPartialPanelElectrical(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelElectrical)
- [func SimVarPartialPanelEngine(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelEngine)
- [func SimVarPartialPanelFuelIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelFuelIndicator)
- [func SimVarPartialPanelHeading(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelHeading)
- [func SimVarPartialPanelNav(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelNav)
- [func SimVarPartialPanelPitot(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelPitot)
- [func SimVarPartialPanelTransponder(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelTransponder)
- [func SimVarPartialPanelTurnCoordinator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelTurnCoordinator)
- [func SimVarPartialPanelVacuum(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelVacuum)
- [func SimVarPartialPanelVerticalVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPartialPanelVerticalVelocity)
- [func SimVarPayloadStationCount(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationCount)
- [func SimVarPayloadStationName(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationName)
- [func SimVarPayloadStationNumSimobjects(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationNumSimobjects)
- [func SimVarPayloadStationObject(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationObject)
- [func SimVarPayloadStationWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPayloadStationWeight)
- [func SimVarPitotHeat(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPitotHeat)
- [func SimVarPitotIcePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPitotIcePct)
- [func SimVarPlaneAltAboveGround(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneAltAboveGround)
- [func SimVarPlaneAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneAltitude)
- [func SimVarPlaneBankDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneBankDegrees)
- [func SimVarPlaneHeadingDegreesGyro(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesGyro)
- [func SimVarPlaneHeadingDegreesMagnetic(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesMagnetic)
- [func SimVarPlaneHeadingDegreesTrue(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneHeadingDegreesTrue)
- [func SimVarPlaneLatitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneLatitude)
- [func SimVarPlaneLongitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlaneLongitude)
- [func SimVarPlanePitchDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPlanePitchDegrees)
- [func SimVarPressureAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressureAltitude)
- [func SimVarPressurizationCabinAltitude(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitude)
- [func SimVarPressurizationCabinAltitudeGoal(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitudeGoal)
- [func SimVarPressurizationCabinAltitudeRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationCabinAltitudeRate)
- [func SimVarPressurizationDumpSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationDumpSwitch)
- [func SimVarPressurizationPressureDifferential(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPressurizationPressureDifferential)
- [func SimVarPropAutoCruiseActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropAutoCruiseActive)
- [func SimVarPropAutoFeatherArmed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropAutoFeatherArmed)
- [func SimVarPropBeta(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBeta)
- [func SimVarPropBetaMax(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMax)
- [func SimVarPropBetaMin(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMin)
- [func SimVarPropBetaMinReverse(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropBetaMinReverse)
- [func SimVarPropDeiceSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropDeiceSwitch)
- [func SimVarPropFeatherSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeatherSwitch)
- [func SimVarPropFeathered(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeathered)
- [func SimVarPropFeatheringInhibit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropFeatheringInhibit)
- [func SimVarPropMaxRpmPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropMaxRpmPercent)
- [func SimVarPropRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropRotationAngle)
- [func SimVarPropRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropRpm)
- [func SimVarPropSyncActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropSyncActive)
- [func SimVarPropSyncDeltaLever(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropSyncDeltaLever)
- [func SimVarPropThrust(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPropThrust)
- [func SimVarPushbackAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackAngle)
- [func SimVarPushbackContactx(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContactx)
- [func SimVarPushbackContacty(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContacty)
- [func SimVarPushbackContactz(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackContactz)
- [func SimVarPushbackState(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackState)
- [func SimVarPushbackWait(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarPushbackWait)
- [func SimVarRadInsSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRadInsSwitch)
- [func SimVarRadioHeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRadioHeight)
- [func SimVarRealism(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealism)
- [func SimVarRealismCrashDetection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealismCrashDetection)
- [func SimVarRealismCrashWithOthers(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRealismCrashWithOthers)
- [func SimVarRecipCarburetorTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipCarburetorTemperature)
- [func SimVarRecipEngAlternateAirPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAlternateAirPosition)
- [func SimVarRecipEngAntidetonationTankMaxQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankMaxQuantity)
- [func SimVarRecipEngAntidetonationTankQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankQuantity)
- [func SimVarRecipEngAntidetonationTankValve(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngAntidetonationTankValve)
- [func SimVarRecipEngBrakePower(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngBrakePower)
- [func SimVarRecipEngCoolantReservoirPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCoolantReservoirPercent)
- [func SimVarRecipEngCowlFlapPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCowlFlapPosition)
- [func SimVarRecipEngCylinderHeadTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCylinderHeadTemperature)
- [func SimVarRecipEngCylinderHealth(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngCylinderHealth)
- [func SimVarRecipEngDetonating(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngDetonating)
- [func SimVarRecipEngEmergencyBoostActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngEmergencyBoostActive)
- [func SimVarRecipEngEmergencyBoostElapsedTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngEmergencyBoostElapsedTime)
- [func SimVarRecipEngFuelAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelAvailable)
- [func SimVarRecipEngFuelFlow(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelFlow)
- [func SimVarRecipEngFuelNumberTanksUsed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelNumberTanksUsed)
- [func SimVarRecipEngFuelTankSelector(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelTankSelector)
- [func SimVarRecipEngFuelTanksUsed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngFuelTanksUsed)
- [func SimVarRecipEngLeftMagneto(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngLeftMagneto)
- [func SimVarRecipEngManifoldPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngManifoldPressure)
- [func SimVarRecipEngNitrousTankMaxQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankMaxQuantity)
- [func SimVarRecipEngNitrousTankQuantity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankQuantity)
- [func SimVarRecipEngNitrousTankValve(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNitrousTankValve)
- [func SimVarRecipEngNumCylinders(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNumCylinders)
- [func SimVarRecipEngNumCylindersFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngNumCylindersFailed)
- [func SimVarRecipEngPrimer(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngPrimer)
- [func SimVarRecipEngRadiatorTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngRadiatorTemperature)
- [func SimVarRecipEngRightMagneto(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngRightMagneto)
- [func SimVarRecipEngStarterTorque(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngStarterTorque)
- [func SimVarRecipEngTurbineInletTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngTurbineInletTemperature)
- [func SimVarRecipEngTurbochargerFailed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngTurbochargerFailed)
- [func SimVarRecipEngWastegatePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipEngWastegatePosition)
- [func SimVarRecipMixtureRatio(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRecipMixtureRatio)
- [func SimVarRelativeWindVelocityBodyX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyX)
- [func SimVarRelativeWindVelocityBodyY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyY)
- [func SimVarRelativeWindVelocityBodyZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyZ)
- [func SimVarRetractFloatSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractFloatSwitch)
- [func SimVarRetractLeftFloatExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractLeftFloatExtended)
- [func SimVarRetractRightFloatExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRetractRightFloatExtended)
- [func SimVarRightWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRightWheelRotationAngle)
- [func SimVarRightWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRightWheelRpm)
- [func SimVarRotationVelocityBodyX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyX)
- [func SimVarRotationVelocityBodyY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyY)
- [func SimVarRotationVelocityBodyZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyZ)
- [func SimVarRotorBrakeActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeActive)
- [func SimVarRotorBrakeHandlePos(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeHandlePos)
- [func SimVarRotorChipDetected(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorChipDetected)
- [func SimVarRotorClutchActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorClutchActive)
- [func SimVarRotorClutchSwitchPos(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorClutchSwitchPos)
- [func SimVarRotorGovActive(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorGovActive)
- [func SimVarRotorGovSwitchPos(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorGovSwitchPos)
- [func SimVarRotorLateralTrimPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorLateralTrimPct)
- [func SimVarRotorRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorRotationAngle)
- [func SimVarRotorRpmPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorRpmPct)
- [func SimVarRotorTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorTemperature)
- [func SimVarRudderDeflection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderDeflection)
- [func SimVarRudderDeflectionPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderDeflectionPct)
- [func SimVarRudderPedalIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPedalIndicator)
- [func SimVarRudderPedalPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPedalPosition)
- [func SimVarRudderPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderPosition)
- [func SimVarRudderTrim(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderTrim)
- [func SimVarRudderTrimPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRudderTrimPct)
- [func SimVarSeaLevelPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSeaLevelPressure)
- [func SimVarSelectedDme(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSelectedDme)
- [func SimVarSemibodyLoadfactorY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorY)
- [func SimVarSemibodyLoadfactorYdot(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorYdot)
- [func SimVarSigmaSqrt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSigmaSqrt)
- [func SimVarSimDisabled(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimDisabled)
- [func SimVarSimOnGround(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimOnGround)
- [func SimVarSimulatedRadius(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimulatedRadius)
- [func SimVarSimulationRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSimulationRate)
- [func SimVarSlingActivePayloadStation(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingActivePayloadStation)
- [func SimVarSlingCableBroken(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingCableBroken)
- [func SimVarSlingCableExtendedLength(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingCableExtendedLength)
- [func SimVarSlingHoistPercentDeployed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingHoistPercentDeployed)
- [func SimVarSlingHookInPickupMode(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingHookInPickupMode)
- [func SimVarSlingObjectAttached(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSlingObjectAttached)
- [func SimVarSmokeEnable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSmokeEnable)
- [func SimVarSmokesystemAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSmokesystemAvailable)
- [func SimVarSpoilerAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilerAvailable)
- [func SimVarSpoilersArmed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersArmed)
- [func SimVarSpoilersHandlePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersHandlePosition)
- [func SimVarSpoilersLeftPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersLeftPosition)
- [func SimVarSpoilersRightPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersRightPosition)
- [func SimVarStallAlpha(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallAlpha)
- [func SimVarStallHornAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallHornAvailable)
- [func SimVarStallWarning(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStallWarning)
- [func SimVarStandardAtmTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStandardAtmTemperature)
- [func SimVarStaticCgToGround(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStaticCgToGround)
- [func SimVarStaticPitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStaticPitch)
- [func SimVarSteerInputControl(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSteerInputControl)
- [func SimVarStrobesAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStrobesAvailable)
- [func SimVarStructAmbientWind(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructAmbientWind)
- [func SimVarStructBodyRotationVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyRotationVelocity)
- [func SimVarStructBodyVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyVelocity)
- [func SimVarStructEnginePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEnginePosition)
- [func SimVarStructEyepointDynamicAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEyepointDynamicAngle)
- [func SimVarStructEyepointDynamicOffset(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructEyepointDynamicOffset)
- [func SimVarStructLatlonalt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructLatlonalt)
- [func SimVarStructLatlonaltpbh(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructLatlonaltpbh)
- [func SimVarStructSurfaceRelativeVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructSurfaceRelativeVelocity)
- [func SimVarStructWorldAcceleration(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldAcceleration)
- [func SimVarStructWorldRotationVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldRotationVelocity)
- [func SimVarStructWorldvelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructWorldvelocity)
- [func SimVarStructuralDeiceSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructuralDeiceSwitch)
- [func SimVarStructuralIcePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructuralIcePct)
- [func SimVarSuctionPressure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSuctionPressure)
- [func SimVarSurfaceCondition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceCondition)
- [func SimVarSurfaceInfoValid(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceInfoValid)
- [func SimVarSurfaceType(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSurfaceType)
- [func SimVarTailhookPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTailhookPosition)
- [func SimVarTailwheelLockOn(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTailwheelLockOn)
- [func SimVarThrottleLowerLimit(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarThrottleLowerLimit)
- [func SimVarTimeOfDay(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTimeOfDay)
- [func SimVarTimeZoneOffset(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTimeZoneOffset)
- [func SimVarTitle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTitle)
- [func SimVarToeBrakesAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarToeBrakesAvailable)
- [func SimVarTotalAirTemperature(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalAirTemperature)
- [func SimVarTotalVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalVelocity)
- [func SimVarTotalWeight(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeight)
- [func SimVarTotalWeightCrossCoupledMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightCrossCoupledMoi)
- [func SimVarTotalWeightPitchMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightPitchMoi)
- [func SimVarTotalWeightRollMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightRollMoi)
- [func SimVarTotalWeightYawMoi(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWeightYawMoi)
- [func SimVarTotalWorldVelocity(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTotalWorldVelocity)
- [func SimVarTowConnection(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowConnection)
- [func SimVarTowReleaseHandle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowReleaseHandle)
- [func SimVarTrailingEdgeFlapsLeftAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsLeftAngle)
- [func SimVarTrailingEdgeFlapsLeftPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsLeftPercent)
- [func SimVarTrailingEdgeFlapsRightAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsRightAngle)
- [func SimVarTrailingEdgeFlapsRightPercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrailingEdgeFlapsRightPercent)
- [func SimVarTransponderAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTransponderAvailable)
- [func SimVarTransponderCode(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTransponderCode)
- [func SimVarTrueAirspeedSelected(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTrueAirspeedSelected)
- [func SimVarTurbEngAfterburner(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngAfterburner)
- [func SimVarTurbEngBleedAir(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngBleedAir)
- [func SimVarTurbEngCorrectedFf(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedFf)
- [func SimVarTurbEngCorrectedN1(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedN1)
- [func SimVarTurbEngCorrectedN2(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngCorrectedN2)
- [func SimVarTurbEngFuelAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngFuelAvailable)
- [func SimVarTurbEngFuelFlowPph(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngFuelFlowPph)
- [func SimVarTurbEngIgnitionSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngIgnitionSwitch)
- [func SimVarTurbEngItt(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngItt)
- [func SimVarTurbEngJetThrust(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngJetThrust)
- [func SimVarTurbEngMasterStarterSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngMasterStarterSwitch)
- [func SimVarTurbEngMaxTorquePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngMaxTorquePercent)
- [func SimVarTurbEngN1(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngN1)
- [func SimVarTurbEngN2(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngN2)
- [func SimVarTurbEngNumTanksUsed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngNumTanksUsed)
- [func SimVarTurbEngPressureRatio(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngPressureRatio)
- [func SimVarTurbEngPrimaryNozzlePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngPrimaryNozzlePercent)
- [func SimVarTurbEngReverseNozzlePercent(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngReverseNozzlePercent)
- [func SimVarTurbEngTankSelector(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngTankSelector)
- [func SimVarTurbEngTanksUsed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngTanksUsed)
- [func SimVarTurbEngVibration(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurbEngVibration)
- [func SimVarTurnCoordinatorBall(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnCoordinatorBall)
- [func SimVarTurnIndicatorRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnIndicatorRate)
- [func SimVarTurnIndicatorSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTurnIndicatorSwitch)
- [func SimVarTypicalDescentRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTypicalDescentRate)
- [func SimVarUnitOfMeasure(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnitOfMeasure)
- [func SimVarUnlimitedFuel(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnlimitedFuel)
- [func SimVarUserInputEnabled(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUserInputEnabled)
- [func SimVarVariometerRate(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVariometerRate)
- [func SimVarVariometerSwitch(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVariometerSwitch)
- [func SimVarVelocityBodyX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyX)
- [func SimVarVelocityBodyY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyY)
- [func SimVarVelocityBodyZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyZ)
- [func SimVarVelocityWorldX(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldX)
- [func SimVarVelocityWorldY(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldY)
- [func SimVarVelocityWorldZ(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityWorldZ)
- [func SimVarVerticalSpeed(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVerticalSpeed)
- [func SimVarVisualModelRadius(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVisualModelRadius)
- [func SimVarWaterBallastValve(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterBallastValve)
- [func SimVarWaterLeftRudderExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderExtended)
- [func SimVarWaterLeftRudderSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderSteerAngle)
- [func SimVarWaterLeftRudderSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterLeftRudderSteerAnglePct)
- [func SimVarWaterRightRudderExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderExtended)
- [func SimVarWaterRightRudderSteerAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderSteerAngle)
- [func SimVarWaterRightRudderSteerAnglePct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRightRudderSteerAnglePct)
- [func SimVarWaterRudderHandlePosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRudderHandlePosition)
- [func SimVarWheelRotationAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWheelRotationAngle)
- [func SimVarWheelRpm(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWheelRpm)
- [func SimVarWindshieldRainEffectAvailable(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWindshieldRainEffectAvailable)
- [func SimVarWingArea(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingArea)
- [func SimVarWingFlexPct(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingFlexPct)
- [func SimVarWingSpan(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWingSpan)
- [func SimVarWiskeyCompassIndicationDegrees(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWiskeyCompassIndicationDegrees)
- [func SimVarYawStringAngle(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYawStringAngle)
- [func SimVarYawStringPctExtended(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYawStringPctExtended)
- [func SimVarYokeXIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeXIndicator)
- [func SimVarYokeXPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeXPosition)
- [func SimVarYokeYIndicator(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeYIndicator)
- [func SimVarYokeYPosition(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarYokeYPosition)
- [func SimVarZeroLiftAlpha(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZeroLiftAlpha)
- [func SimVarZuluDayOfMonth(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfMonth)
- [func SimVarZuluDayOfWeek(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfWeek)
- [func SimVarZuluDayOfYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluDayOfYear)
- [func SimVarZuluMonthOfYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluMonthOfYear)
- [func SimVarZuluTime(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluTime)
- [func SimVarZuluYear(args ...interface{}) SimVar](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarZuluYear)
- - [func (s \*SimVar) GetBool() (bool, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetBool)
- [func (s \*SimVar) GetData() \[\]byte](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetData)
- [func (s \*SimVar) GetDataLatLonAlt() (\*SIMCONNECT\_DATA\_LATLONALT, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataLatLonAlt)
- [func (s \*SimVar) GetDataWaypoint() (\*SIMCONNECT\_DATA\_WAYPOINT, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataWaypoint)
- [func (s \*SimVar) GetDataXYZ() (\*SIMCONNECT\_DATA\_XYZ, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDataXYZ)
- [func (s \*SimVar) GetDatumType() uint32](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDatumType)
- [func (s \*SimVar) GetDegrees() (float64, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetDegrees)
- [func (s \*SimVar) GetFloat64() (float64, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetFloat64)
- [func (s \*SimVar) GetInt() (int, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetInt)
- [func (s \*SimVar) GetSize() int](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetSize)
- [func (s \*SimVar) GetString() string](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.GetString)
- [func (s \*SimVar) SetFloat64(f float64)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVar.SetFloat64)
- [type SimVarUnit](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarUnit)
- [type SyscallSC](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC)
- - [func NewSyscallSC() (\*SyscallSC, error)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#NewSyscallSC)
- - [func (syscallSC \*SyscallSC) AICreateEnrouteATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateEnrouteATCAircraft)
- [func (syscallSC \*SyscallSC) AICreateNonATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateNonATCAircraft)
- [func (syscallSC \*SyscallSC) AICreateParkedATCAircraft(hSimConnect uintptr, szContainerTitle uintptr, szTailNumber uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateParkedATCAircraft)
- [func (syscallSC \*SyscallSC) AICreateSimulatedObject(hSimConnect uintptr, szContainerTitle uintptr, InitPos uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AICreateSimulatedObject)
- [func (syscallSC \*SyscallSC) AIReleaseControl(hSimConnect uintptr, ObjectID uintptr, RequestID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AIReleaseControl)
- [func (syscallSC \*SyscallSC) AIRemoveObject(hSimConnect uintptr, ObjectID uintptr, RequestID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AIRemoveObject)
- [func (syscallSC \*SyscallSC) AISetAircraftFlightPlan(hSimConnect uintptr, ObjectID uintptr, szFlightPlanPath uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AISetAircraftFlightPlan)
- [func (syscallSC \*SyscallSC) AddClientEventToNotificationGroup(hSimConnect uintptr, GroupID uintptr, EventID uintptr, bMaskable uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddClientEventToNotificationGroup)
- [func (syscallSC \*SyscallSC) AddToClientDataDefinition(hSimConnect uintptr, DefineID uintptr, dwOffset uintptr, dwSizeOrType uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddToClientDataDefinition)
- [func (syscallSC \*SyscallSC) AddToDataDefinition(hSimConnect uintptr, DefineID uintptr, DatumName uintptr, UnitsName uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.AddToDataDefinition)
- [func (syscallSC \*SyscallSC) CallDispatch(hSimConnect uintptr, pfcnDispatch uintptr, pContext uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CallDispatch)
- [func (syscallSC \*SyscallSC) CameraSetRelative6DOF(hSimConnect uintptr, fDeltaX uintptr, fDeltaY uintptr, fDeltaZ uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CameraSetRelative6DOF)
- [func (syscallSC \*SyscallSC) ClearClientDataDefinition(hSimConnect uintptr, DefineID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearClientDataDefinition)
- [func (syscallSC \*SyscallSC) ClearDataDefinition(hSimConnect uintptr, DefineID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearDataDefinition)
- [func (syscallSC \*SyscallSC) ClearInputGroup(hSimConnect uintptr, GroupID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearInputGroup)
- [func (syscallSC \*SyscallSC) ClearNotificationGroup(hSimConnect uintptr, GroupID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ClearNotificationGroup)
- [func (syscallSC \*SyscallSC) Close(hSimConnect uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Close)
- [func (syscallSC \*SyscallSC) CompleteCustomMissionAction(hSimConnect uintptr, guidInstanceId uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CompleteCustomMissionAction)
- [func (syscallSC \*SyscallSC) CreateClientData(hSimConnect uintptr, ClientDataID uintptr, dwSize uintptr, Flags uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.CreateClientData)
- [func (syscallSC \*SyscallSC) ExecuteMissionAction(hSimConnect uintptr, guidInstanceId uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.ExecuteMissionAction)
- [func (syscallSC \*SyscallSC) FlightLoad(hSimConnect uintptr, szFileName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightLoad)
- [func (syscallSC \*SyscallSC) FlightPlanLoad(hSimConnect uintptr, szFileName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightPlanLoad)
- [func (syscallSC \*SyscallSC) FlightSave(hSimConnect uintptr, szFileName uintptr, szTitle uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.FlightSave)
- [func (syscallSC \*SyscallSC) GetLastSentPacketID(hSimConnect uintptr, pdwError uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.GetLastSentPacketID)
- [func (syscallSC \*SyscallSC) GetNextDispatch(hSimConnect uintptr, ppData uintptr, pcbData uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.GetNextDispatch)
- [func (syscallSC \*SyscallSC) InsertString(pDest uintptr, cbDest uintptr, ppEnd uintptr, pcbStringV uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.InsertString)
- [func (syscallSC \*SyscallSC) MapClientDataNameToID(hSimConnect uintptr, szClientDataName uintptr, ClientDataID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapClientDataNameToID)
- [func (syscallSC \*SyscallSC) MapClientEventToSimEvent(hSimConnect uintptr, EventID uintptr, EventName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapClientEventToSimEvent)
- [func (syscallSC \*SyscallSC) MapInputEventToClientEvent(hSimConnect uintptr, GroupID uintptr, szInputDefinition uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MapInputEventToClientEvent)
- [func (syscallSC \*SyscallSC) MenuAddItem(hSimConnect uintptr, szMenuItem uintptr, MenuEventID uintptr, dwData uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuAddItem)
- [func (syscallSC \*SyscallSC) MenuAddSubItem(hSimConnect uintptr, MenuEventID uintptr, szMenuItem uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuAddSubItem)
- [func (syscallSC \*SyscallSC) MenuDeleteItem(hSimConnect uintptr, MenuEventID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuDeleteItem)
- [func (syscallSC \*SyscallSC) MenuDeleteSubItem(hSimConnect uintptr, MenuEventID uintptr, SubMenuEventID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.MenuDeleteSubItem)
- [func (syscallSC \*SyscallSC) Open(phSimConnect uintptr, szName uintptr, hWnd uintptr, UserEventWin uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Open)
- [func (syscallSC \*SyscallSC) RemoveClientEvent(hSimConnect uintptr, GroupID uintptr, EventID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RemoveClientEvent)
- [func (syscallSC \*SyscallSC) RemoveInputEvent(hSimConnect uintptr, GroupID uintptr, szInputDefinition uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RemoveInputEvent)
- [func (syscallSC \*SyscallSC) RequestClientData(hSimConnect uintptr, ClientDataID uintptr, RequestID uintptr, DefineID uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestClientData)
- [func (syscallSC \*SyscallSC) RequestDataOnSimObject(hSimConnect uintptr, RequestID uintptr, DefineID uintptr, ObjectID uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestDataOnSimObject)
- [func (syscallSC \*SyscallSC) RequestDataOnSimObjectType(hSimConnect uintptr, RequestID uintptr, DefineID uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestDataOnSimObjectType)
- [func (syscallSC \*SyscallSC) RequestFacilitiesList(hSimConnect uintptr, t uintptr, RequestID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestFacilitiesList)
- [func (syscallSC \*SyscallSC) RequestNotificationGroup(hSimConnect uintptr, GroupID uintptr, dwReserved uintptr, Flags uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestNotificationGroup)
- [func (syscallSC \*SyscallSC) RequestReservedKey(hSimConnect uintptr, EventID uintptr, szKeyChoice1 uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestReservedKey)
- [func (syscallSC \*SyscallSC) RequestResponseTimes(hSimConnect uintptr, nCount uintptr, fElapsedSeconds uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestResponseTimes)
- [func (syscallSC \*SyscallSC) RequestSystemState(hSimConnect uintptr, RequestID uintptr, szState uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RequestSystemState)
- [func (syscallSC \*SyscallSC) RetrieveString(pData uintptr, cbData uintptr, pStringV uintptr, pszString uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.RetrieveString)
- [func (syscallSC \*SyscallSC) SetClientData(hSimConnect uintptr, ClientDataID uintptr, DefineID uintptr, Flags uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetClientData)
- [func (syscallSC \*SyscallSC) SetDataOnSimObject(hSimConnect uintptr, DefineID uintptr, ObjectID uintptr, Flags uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetDataOnSimObject)
- [func (syscallSC \*SyscallSC) SetInputGroupPriority(hSimConnect uintptr, GroupID uintptr, uPriority uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetInputGroupPriority)
- [func (syscallSC \*SyscallSC) SetInputGroupState(hSimConnect uintptr, GroupID uintptr, dwState uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetInputGroupState)
- [func (syscallSC \*SyscallSC) SetNotificationGroupPriority(hSimConnect uintptr, GroupID uintptr, uPriority uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetNotificationGroupPriority)
- [func (syscallSC \*SyscallSC) SetSystemEventState(hSimConnect uintptr, EventID uintptr, dwState uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetSystemEventState)
- [func (syscallSC \*SyscallSC) SetSystemState(hSimConnect uintptr, szState uintptr, dwInteger uintptr, fFloat uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SetSystemState)
- [func (syscallSC \*SyscallSC) SubscribeToFacilities(hSimConnect uintptr, t uintptr, RequestID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SubscribeToFacilities)
- [func (syscallSC \*SyscallSC) SubscribeToSystemEvent(hSimConnect uintptr, EventID uintptr, SystemEventName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.SubscribeToSystemEvent)
- [func (syscallSC \*SyscallSC) Text(hSimConnect uintptr, t uintptr, fTimeSeconds uintptr, EventID uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.Text)
- [func (syscallSC \*SyscallSC) TransmitClientEvent(hSimConnect uintptr, ObjectID uintptr, EventID uintptr, dwData uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.TransmitClientEvent)
- [func (syscallSC \*SyscallSC) UnsubscribeFromSystemEvent(hSimConnect uintptr, EventID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.UnsubscribeFromSystemEvent)
- [func (syscallSC \*SyscallSC) UnsubscribeToFacilities(hSimConnect uintptr, t uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.UnsubscribeToFacilities)
- [func (syscallSC \*SyscallSC) WeatherCreateStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr, szName uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherCreateStation)
- [func (syscallSC \*SyscallSC) WeatherCreateThermal(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherCreateThermal)
- [func (syscallSC \*SyscallSC) WeatherRemoveStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRemoveStation)
- [func (syscallSC \*SyscallSC) WeatherRemoveThermal(hSimConnect uintptr, ObjectID uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRemoveThermal)
- [func (syscallSC \*SyscallSC) WeatherRequestCloudState(hSimConnect uintptr, RequestID uintptr, minLat uintptr, minLon uintptr, ...) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestCloudState)
- [func (syscallSC \*SyscallSC) WeatherRequestInterpolatedObservation(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestInterpolatedObservation)
- [func (syscallSC \*SyscallSC) WeatherRequestObservationAtNearestStation(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestObservationAtNearestStation)
- [func (syscallSC \*SyscallSC) WeatherRequestObservationAtStation(hSimConnect uintptr, RequestID uintptr, szICAO uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherRequestObservationAtStation)
- [func (syscallSC \*SyscallSC) WeatherSetDynamicUpdateRate(hSimConnect uintptr, dwRate uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetDynamicUpdateRate)
- [func (syscallSC \*SyscallSC) WeatherSetModeCustom(hSimConnect uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeCustom)
- [func (syscallSC \*SyscallSC) WeatherSetModeGlobal(hSimConnect uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeGlobal)
- [func (syscallSC \*SyscallSC) WeatherSetModeServer(hSimConnect uintptr, dwPort uintptr, dwSeconds uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeServer)
- [func (syscallSC \*SyscallSC) WeatherSetModeTheme(hSimConnect uintptr, szThemeName uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetModeTheme)
- [func (syscallSC \*SyscallSC) WeatherSetObservation(hSimConnect uintptr, Seconds uintptr, szMETAR uintptr) error](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SyscallSC.WeatherSetObservation)
- [type SystemEvent](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SystemEvent)
- [Package (GetLatLonAlt)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetLatLonAlt)
- [Package (GetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetSimVar)
- [Package (GetSimVarWithIndex)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetSimVarWithIndex)
- [Package (GetString)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetString)
- [Package (GetXYZ)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-GetXYZ)
- [Package (IFaceSetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-IFaceSetSimVar)
- [Package (InterfaceSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-InterfaceSimVar)
- [Package (SetSimVar)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-SetSimVar)
- [Package (ShowText)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-ShowText)
- [Package (SimEvent)](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#example-package-SimEvent)
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L6)
```
const (
MAX_PATH = 260
SIMCONNECT_UNUSED = 0xFFFFFFFF
SIMCONNECT_OBJECT_ID_USER = 0
SIMCONNECT_CAMERA_IGNORE_FIELD = 3.402823466e38
SIMCONNECT_CLIENTDATA_MAX_SIZE = 8192
SIMCONNECT_GROUP_PRIORITY_HIGHEST GroupPriority = 1
SIMCONNECT_GROUP_PRIORITY_HIGHEST_MASKABLE GroupPriority = 10000000
SIMCONNECT_GROUP_PRIORITY_STANDARD GroupPriority = 1900000000
SIMCONNECT_GROUP_PRIORITY_DEFAULT GroupPriority = 2000000000
SIMCONNECT_GROUP_PRIORITY_LOWEST GroupPriority = 4000000000
MAX_METAR_LENGTH = 2000
MAX_THERMAL_SIZE = 100000
MAX_THERMAL_RATE = 1000
INITPOSITION_AIRSPEED_CRUISE = -1
INITPOSITION_AIRSPEED_KEEP = -2
SIMCONNECT_CLIENTDATATYPE_INT8 = -1
SIMCONNECT_CLIENTDATATYPE_INT16 = -2
SIMCONNECT_CLIENTDATATYPE_INT32 = -3
SIMCONNECT_CLIENTDATATYPE_INT64 = -4
SIMCONNECT_CLIENTDATATYPE_FLOAT32 = -5
SIMCONNECT_CLIENTDATATYPE_FLOAT64 = -6
SIMCONNECT_CLIENTDATAOFFSET_AUTO = -1
SIMCONNECT_OPEN_CONFIGINDEX_LOCAL = -1
)
```
Divers
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L49)
```
const (
SIMCONNECT_RECV_ID_NULL = iota
SIMCONNECT_RECV_ID_EXCEPTION
SIMCONNECT_RECV_ID_OPEN
SIMCONNECT_RECV_ID_QUIT
SIMCONNECT_RECV_ID_EVENT
SIMCONNECT_RECV_ID_EVENT_OBJECT_ADDREMOVE
SIMCONNECT_RECV_ID_EVENT_FILENAME
SIMCONNECT_RECV_ID_EVENT_FRAME
SIMCONNECT_RECV_ID_SIMOBJECT_DATA
SIMCONNECT_RECV_ID_SIMOBJECT_DATA_BYTYPE
SIMCONNECT_RECV_ID_WEATHER_OBSERVATION
SIMCONNECT_RECV_ID_CLOUD_STATE
SIMCONNECT_RECV_ID_ASSIGNED_OBJECT_ID
SIMCONNECT_RECV_ID_RESERVED_KEY
SIMCONNECT_RECV_ID_CUSTOM_ACTION
SIMCONNECT_RECV_ID_SYSTEM_STATE
SIMCONNECT_RECV_ID_CLIENT_DATA
SIMCONNECT_RECV_ID_EVENT_WEATHER_MODE
SIMCONNECT_RECV_ID_AIRPORT_LIST
SIMCONNECT_RECV_ID_VOR_LIST
SIMCONNECT_RECV_ID_NDB_LIST
SIMCONNECT_RECV_ID_WAYPOINT_LIST
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_SERVER_STARTED
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_CLIENT_STARTED
SIMCONNECT_RECV_ID_EVENT_MULTIPLAYER_SESSION_ENDED
SIMCONNECT_RECV_ID_EVENT_RACE_END
SIMCONNECT_RECV_ID_EVENT_RACE_LAP
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L79)
```
const (
SIMCONNECT_DATATYPE_INVALID = iota
SIMCONNECT_DATATYPE_INT32
SIMCONNECT_DATATYPE_INT64
SIMCONNECT_DATATYPE_FLOAT32
SIMCONNECT_DATATYPE_FLOAT64
SIMCONNECT_DATATYPE_STRING8
SIMCONNECT_DATATYPE_STRING32
SIMCONNECT_DATATYPE_STRING64
SIMCONNECT_DATATYPE_STRING128
SIMCONNECT_DATATYPE_STRING256
SIMCONNECT_DATATYPE_STRING260
SIMCONNECT_DATATYPE_STRINGV
SIMCONNECT_DATATYPE_INITPOSITION
SIMCONNECT_DATATYPE_MARKERSTATE
SIMCONNECT_DATATYPE_WAYPOINT
SIMCONNECT_DATATYPE_LATLONALT
SIMCONNECT_DATATYPE_XYZ
SIMCONNECT_DATATYPE_MAX = iota
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L100)
```
const (
SIMCONNECT_EXCEPTION_NONE = iota
SIMCONNECT_EXCEPTION_ERROR = iota
SIMCONNECT_EXCEPTION_SIZE_MISMATCH
SIMCONNECT_EXCEPTION_UNRECOGNIZED_ID
SIMCONNECT_EXCEPTION_UNOPENED
SIMCONNECT_EXCEPTION_VERSION_MISMATCH
SIMCONNECT_EXCEPTION_TOO_MANY_GROUPS
SIMCONNECT_EXCEPTION_NAME_UNRECOGNIZED
SIMCONNECT_EXCEPTION_TOO_MANY_EVENT_NAMES
SIMCONNECT_EXCEPTION_EVENT_ID_DUPLICATE
SIMCONNECT_EXCEPTION_TOO_MANY_MAPS
SIMCONNECT_EXCEPTION_TOO_MANY_OBJECTS
SIMCONNECT_EXCEPTION_TOO_MANY_REQUESTS
SIMCONNECT_EXCEPTION_WEATHER_INVALID_PORT
SIMCONNECT_EXCEPTION_WEATHER_INVALID_METAR
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_GET_OBSERVATION
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_CREATE_STATION
SIMCONNECT_EXCEPTION_WEATHER_UNABLE_TO_REMOVE_STATION
SIMCONNECT_EXCEPTION_INVALID_DATA_TYPE
SIMCONNECT_EXCEPTION_INVALID_DATA_SIZE
SIMCONNECT_EXCEPTION_DATA_ERROR
SIMCONNECT_EXCEPTION_INVALID_ARRAY
SIMCONNECT_EXCEPTION_CREATE_OBJECT_FAILED
SIMCONNECT_EXCEPTION_LOAD_FLIGHTPLAN_FAILED
SIMCONNECT_EXCEPTION_OPERATION_INVALID_FOR_OBJECT_TYPE
SIMCONNECT_EXCEPTION_ILLEGAL_OPERATION
SIMCONNECT_EXCEPTION_ALREADY_SUBSCRIBED
SIMCONNECT_EXCEPTION_INVALID_ENUM
SIMCONNECT_EXCEPTION_DEFINITION_ERROR
SIMCONNECT_EXCEPTION_DUPLICATE_ID
SIMCONNECT_EXCEPTION_DATUM_ID
SIMCONNECT_EXCEPTION_OUT_OF_BOUNDS
SIMCONNECT_EXCEPTION_ALREADY_CREATED
SIMCONNECT_EXCEPTION_OBJECT_OUTSIDE_REALITY_BUBBLE
SIMCONNECT_EXCEPTION_OBJECT_CONTAINER
SIMCONNECT_EXCEPTION_OBJECT_AI
SIMCONNECT_EXCEPTION_OBJECT_ATC
SIMCONNECT_EXCEPTION_OBJECT_SCHEDULE
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L142)
```
const (
SIMCONNECT_SIMOBJECT_TYPE_USER = iota
SIMCONNECT_SIMOBJECT_TYPE_ALL
SIMCONNECT_SIMOBJECT_TYPE_AIRCRAFT
SIMCONNECT_SIMOBJECT_TYPE_HELICOPTER
SIMCONNECT_SIMOBJECT_TYPE_BOAT
SIMCONNECT_SIMOBJECT_TYPE_GROUND
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L158)
```
const (
SIMCONNECT_PERIOD_NEVER = iota
SIMCONNECT_PERIOD_ONCE
SIMCONNECT_PERIOD_VISUAL_FRAME
SIMCONNECT_PERIOD_SIM_FRAME
SIMCONNECT_PERIOD_SECOND
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L166)
```
const (
SIMCONNECT_MISSION_FAILED = iota
SIMCONNECT_MISSION_CRASHED
SIMCONNECT_MISSION_SUCCEEDED
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L172)
```
const (
SIMCONNECT_CLIENT_DATA_PERIOD_NEVER = iota
SIMCONNECT_CLIENT_DATA_PERIOD_ONCE
SIMCONNECT_CLIENT_DATA_PERIOD_VISUAL_FRAME
SIMCONNECT_CLIENT_DATA_PERIOD_ON_SET
SIMCONNECT_CLIENT_DATA_PERIOD_SECOND
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L183)
```
const (
SIMCONNECT_TEXT_TYPE_SCROLL_BLACK ScrollColor = iota
SIMCONNECT_TEXT_TYPE_SCROLL_WHITE
SIMCONNECT_TEXT_TYPE_SCROLL_RED
SIMCONNECT_TEXT_TYPE_SCROLL_GREEN
SIMCONNECT_TEXT_TYPE_SCROLL_BLUE
SIMCONNECT_TEXT_TYPE_SCROLL_YELLOW
SIMCONNECT_TEXT_TYPE_SCROLL_MAGENTA
SIMCONNECT_TEXT_TYPE_SCROLL_CYAN
SIMCONNECT_TEXT_TYPE_PRINT_BLACK PrintColor = 0x0100
SIMCONNECT_TEXT_TYPE_PRINT_WHITE PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_BLACK + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_RED PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_WHITE + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_GREEN PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_RED + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_BLUE PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_GREEN + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_YELLOW PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_BLUE + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_MAGENTA PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_YELLOW + 0x1
SIMCONNECT_TEXT_TYPE_PRINT_CYAN PrintColor = SIMCONNECT_TEXT_TYPE_PRINT_MAGENTA + 0x1
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L203)
```
const (
SIMCONNECT_TEXT_RESULT_DISPLAYED = 0x00010000
SIMCONNECT_TEXT_RESULT_QUEUED = SIMCONNECT_TEXT_RESULT_DISPLAYED + 0x1
SIMCONNECT_TEXT_RESULT_REMOVED = SIMCONNECT_TEXT_RESULT_QUEUED + 0x1
SIMCONNECT_TEXT_RESULT_REPLACED = SIMCONNECT_TEXT_RESULT_REMOVED + 0x1
SIMCONNECT_TEXT_RESULT_TIMEOUT = SIMCONNECT_TEXT_RESULT_REPLACED + 0x1
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L221)
```
const (
SIMCONNECT_WEATHER_MODE_THEME = iota
SIMCONNECT_WEATHER_MODE_RWW
SIMCONNECT_WEATHER_MODE_CUSTOM
SIMCONNECT_WEATHER_MODE_GLOBAL
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L228)
```
const (
SIMCONNECT_FACILITY_LIST_TYPE_AIRPORT = iota
SIMCONNECT_FACILITY_LIST_TYPE_WAYPOINT
SIMCONNECT_FACILITY_LIST_TYPE_NDB
SIMCONNECT_FACILITY_LIST_TYPE_VOR
SIMCONNECT_FACILITY_LIST_TYPE_COUNT
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L237)
```
const (
SIMCONNECT_RECV_ID_VOR_LIST_HAS_NAV_SIGNAL = 0x00000001
SIMCONNECT_RECV_ID_VOR_LIST_HAS_LOCALIZER = 0x00000002
SIMCONNECT_RECV_ID_VOR_LIST_HAS_GLIDE_SLOPE = 0x00000004
SIMCONNECT_RECV_ID_VOR_LIST_HAS_DME = 0x00000008
)
```
SIMCONNECT\_VOR\_FLAGS flags for SIMCONNECT\_RECV\_ID\_VOR\_LIST
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L245)
```
const (
SIMCONNECT_WAYPOINT_NONE = 0x00
SIMCONNECT_WAYPOINT_SPEED_REQUESTED = 0x04
SIMCONNECT_WAYPOINT_THROTTLE_REQUESTED = 0x08
SIMCONNECT_WAYPOINT_COMPUTE_VERTICAL_SPEED = 0x10
SIMCONNECT_WAYPOINT_ALTITUDE_IS_AGL = 0x20
SIMCONNECT_WAYPOINT_ON_GROUND = 0x00100000
SIMCONNECT_WAYPOINT_REVERSE = 0x00200000
SIMCONNECT_WAYPOINT_WRAP_TO_FIRST = 0x00400000
)
```
SIMCONNECT\_WAYPOINT\_FLAGS bits for the Waypoint Flags field: may be combined
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L267)
```
const (
SIMCONNECT_DATA_REQUEST_FLAG_DEFAULT = iota
SIMCONNECT_DATA_REQUEST_FLAG_CHANGED
SIMCONNECT_DATA_REQUEST_FLAG_TAGGED
)
```
SIMCONNECT\_DATA\_REQUEST\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L274)
```
const (
SIMCONNECT_DATA_SET_FLAG_DEFAULT = iota
SIMCONNECT_DATA_SET_FLAG_TAGGED
)
```
SIMCONNECT\_DATA\_SET\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L280)
```
const (
SIMCONNECT_CREATE_CLIENT_DATA_FLAG_DEFAULT = iota
SIMCONNECT_CREATE_CLIENT_DATA_FLAG_READ_ONLY
)
```
SIMCONNECT\_CREATE\_CLIENT\_DATA\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L286)
```
const (
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_DEFAULT = iota
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_CHANGED
SIMCONNECT_CLIENT_DATA_REQUEST_FLAG_TAGGED
)
```
SIMCONNECT\_CLIENT\_DATA\_REQUEST\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L293)
```
const (
SIMCONNECT_CLIENT_DATA_SET_FLAG_DEFAULT = iota
SIMCONNECT_CLIENT_DATA_SET_FLAG_TAGGED
)
```
SIMCONNECT\_CLIENT\_DATA\_SET\_FLAG
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L299)
```
const (
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_COCKPIT_2D = 0x00000001
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_COCKPIT_VIRTUAL = 0x00000002
SIMCONNECT_VIEW_SYSTEM_EVENT_DATA_ORTHOGONAL = 0x00000004
)
```
SIMCONNECT\_VIEW\_SYSTEM\_EVENT\_DATA dwData contains these flags for the "View" System Event
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/struct.go#L130)
```
const (
SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH = 64
SIMCONNECT_CLOUD_STATE_ARRAY_SIZE = SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH * SIMCONNECT_CLOUD_STATE_ARRAY_WIDTH
)
```
[View Source](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/const.go#L306)
```
const (
SIMCONNECT_SOUND_SYSTEM_EVENT_DATA_MASTER = 0x00000001
)
```
SIMCONNECT\_SOUND\_SYSTEM\_EVENT\_DATA dwData contains these flags for the "Sound" System Event
This section is empty.
```
func InterfaceAssignSimVar(listSimVar []SimVar, iFace interface{})
```
```
func SimVarAssignInterface(iFace interface{}, listSimVar []SimVar) interface{}
```
```
type EasySimConnect struct {
}
```
EasySimConnect for easy use of SimConnect in golang Please show example\_test.go for use case
NewEasySimConnect create instance of EasySimConnect
```
func (esc *EasySimConnect) Close() <-chan bool
```
Close Finishing EasySimConnect, All object created with this EasySimConnect's instance is perished after call this function
Connect to sim and run dispatch or return error
```
func (esc *EasySimConnect) ConnectInterfaceToSimVar(iFace interface{}) (<-chan interface{}, error)
```
ConnectInterfaceToSimVar return a chan. This chan return interface when updating
```
func (esc *EasySimConnect) ConnectSysEventAircraftLoaded() <-chan string
```
ConnectSysEventAircraftLoaded Request a notification when the aircraft flight dynamics file is changed. These files have a .AIR extension. The filename is returned in a string.
```
func (esc *EasySimConnect) ConnectSysEventCrashReset() <-chan bool
```
ConnectSysEventCrashReset Request a notification when the crash cut-scene has completed.
```
func (esc *EasySimConnect) ConnectSysEventCrashed() <-chan bool
```
ConnectSysEventCrashed Request a notification if the user aircraft crashes.
```
func (esc *EasySimConnect) ConnectSysEventFlightLoaded() <-chan string
```
ConnectSysEventFlightLoaded Request a notification when a flight is loaded. Note that when a flight is ended, a default flight is typically loaded, so these events will occur when flights and missions are started and finished. The filename of the flight loaded is returned in a string
```
func (esc *EasySimConnect) ConnectSysEventFlightPlanActivated() <-chan string
```
ConnectSysEventFlightPlanActivated Request a notification when a new flight plan is activated. The filename of the activated flight plan is returned in a string.
#### func (\*EasySimConnect) [ConnectSysEventFlightPlanDeactivated](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/easysimconnect.go#L367) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#EasySimConnect.ConnectSysEventFlightPlanDeactivated "Go to EasySimConnect.ConnectSysEventFlightPlanDeactivated")
```
func (esc *EasySimConnect) ConnectSysEventFlightPlanDeactivated() <-chan bool
```
ConnectSysEventFlightPlanDeactivated Request a notification when the active flight plan is de-activated.
```
func (esc *EasySimConnect) ConnectSysEventFlightSaved() <-chan string
```
ConnectSysEventFlightSaved Request a notification when a flight is saved correctly. The filename of the flight saved is returned in a string
```
func (esc *EasySimConnect) ConnectSysEventPause() <-chan bool
```
ConnectSysEventPause Request notifications when the flight is paused or unpaused, and also immediately returns the current pause state (1 = paused or 0 = unpaused). The state is returned in the dwData parameter.
```
func (esc *EasySimConnect) ConnectSysEventPaused() <-chan bool
```
ConnectSysEventPaused Request a notification when the flight is paused.
```
func (esc *EasySimConnect) ConnectSysEventSim() <-chan bool
```
ConnectSysEventSim Request a notification when Sim start and stop.
```
func (esc *EasySimConnect) ConnectToSimVar(listSimVar ...SimVar) (<-chan []SimVar, error)
```
ConnectToSimVar return a chan. This chan return an array when updating they SimVars in order of argument of this function
```
func (esc *EasySimConnect) ConnectToSimVarObject(listSimVar ...SimVar) <-chan []SimVar
```
ConnectToSimVarObject return a chan. This chan return an array when updating they SimVars in order of argument of this function
Deprecated: Use ConnectToSimVar instead.
```
func (esc *EasySimConnect) IsAlive() bool
```
IsAlive return true if connected
```
func (esc *EasySimConnect) NewSimEvent(simEventStr KeySimEvent) SimEvent
```
NewSimEvent return new instance of SimEvent and you can run SimEvent.Run()
SetDelay Select delay update SimVar and
```
func (esc *EasySimConnect) SetLoggerLevel(level EasySimConnectLogLevel)
```
SetLoggerLevel you can set log level in EasySimConnect
```
func (esc *EasySimConnect) SetSimObject(simVar SimVar)
```
SetSimObject edit the SimVar in the simulator
```
func (esc *EasySimConnect) SetSimVarInterfaceInSim(iFace interface{}) error
```
ShowText display a text on the screen in the simulator.
ime is in second and return chan a confirmation for the simulator
```
type EasySimConnectLogLevel int
```
EasySimConnectLogLevel is a type of Log level
```
const (
LogNo EasySimConnectLogLevel = iota
LogError
LogWarn
LogInfo
)
```
Log Level
```
const (
SIMCONNECT_EVENT_FLAG_DEFAULT EventFlag = iota
SIMCONNECT_EVENT_FLAG_FAST_REPEAT_TIMER
SIMCONNECT_EVENT_FLAG_SLOW_REPEAT_TIMER
SIMCONNECT_EVENT_FLAG_GROUPID_IS_PRIORITY EventFlag = 0x00000010
)
```
SIMCONNECT\_EVENT\_FLAG
KeySimEvent is a string
```
const (
KeySlingPickupRelease KeySimEvent = "SLING_PICKUP_RELEASE"
KeyHoistSwitchExtend KeySimEvent = "HOIST_SWITCH_EXTEND"
KeyHoistSwitchRetract KeySimEvent = "HOIST_SWITCH_RETRACT"
KeyHoistSwitchSet KeySimEvent = "HOIST_SWITCH_SET"
KeyHoistDeployToggle KeySimEvent = "HOIST_DEPLOY_TOGGLE"
KeyHoistDeploySet KeySimEvent = "HOIST_DEPLOY_SET"
KeyToggleAntidetonationTankValve KeySimEvent = "ANTIDETONATION_TANK_VALVE_TOGGLE"
KeyToggleNitrousTankValve KeySimEvent = "NITROUS_TANK_VALVE_TOGGLE"
KeyToggleRaceresultsWindow KeySimEvent = "TOGGLE_RACERESULTS_WINDOW"
KeyTakeoffAssistArmToggle KeySimEvent = "TAKEOFF_ASSIST_ARM_TOGGLE"
KeyTakeoffAssistArmSet KeySimEvent = "TAKEOFF_ASSIST_ARM_SET"
KeyTakeoffAssistFire KeySimEvent = "TAKEOFF_ASSIST_FIRE"
KeyToggleLaunchBarSwitch KeySimEvent = "TOGGLE_LAUNCH_BAR_SWITCH"
KeySetLaunchbarSwitch KeySimEvent = "SET_LAUNCH_BAR_SWITCH"
KeyRepairAndRefuel KeySimEvent = "REPAIR_AND_REFUEL"
KeyDmeSelect KeySimEvent = "DME_SELECT"
KeyFuelDumpToggle KeySimEvent = "FUEL_DUMP_TOGGLE"
KeyViewCockpitForward KeySimEvent = "VIEW_COCKPIT_FORWARD"
KeyViewVirtualCockpitForward KeySimEvent = "VIEW_VIRTUAL_COCKPIT_FORWARD"
KeyTowPlaneRelease KeySimEvent = "TOW_PLANE_RELEASE"
KeyRequestTowPlane KeySimEvent = "TOW_PLANE_REQUEST"
KeyRequestFuel KeySimEvent = "REQUEST_FUEL_KEY"
KeyReleaseDroppableObjects KeySimEvent = "RELEASE_DROPPABLE_OBJECTS"
KeyViewPanelAlphaSet KeySimEvent = "VIEW_PANEL_ALPHA_SET"
KeyViewPanelAlphaSelect KeySimEvent = "VIEW_PANEL_ALPHA_SELECT"
KeyViewPanelAlphaInc KeySimEvent = "VIEW_PANEL_ALPHA_INC"
KeyViewPanelAlphaDec KeySimEvent = "VIEW_PANEL_ALPHA_DEC"
KeyViewLinkingSet KeySimEvent = "VIEW_LINKING_SET"
KeyViewLinkingToggle KeySimEvent = "VIEW_LINKING_TOGGLE"
KeyRadioSelectedDmeIdentEnable KeySimEvent = "RADIO_SELECTED_DME_IDENT_ENABLE"
KeyRadioSelectedDmeIdentDisable KeySimEvent = "RADIO_SELECTED_DME_IDENT_DISABLE"
KeyRadioSelectedDmeIdentSet KeySimEvent = "RADIO_SELECTED_DME_IDENT_SET"
KeyRadioSelectedDmeIdentToggle KeySimEvent = "RADIO_SELECTED_DME_IDENT_TOGGLE"
KeyGaugeKeystroke KeySimEvent = "GAUGE_KEYSTROKE"
KeySimuiWindowHideshow KeySimEvent = "SIMUI_WINDOW_HIDESHOW"
KeyToggleVariometerSwitch KeySimEvent = "TOGGLE_VARIOMETER_SWITCH"
KeyToggleTurnIndicatorSwitch KeySimEvent = "TOGGLE_TURN_INDICATOR_SWITCH"
KeyWindowTitlesToggle KeySimEvent = "VIEW_WINDOW_TITLES_TOGGLE"
KeyAxisPanPitch KeySimEvent = "AXIS_PAN_PITCH"
KeyAxisPanHeading KeySimEvent = "AXIS_PAN_HEADING"
KeyAxisPanTilt KeySimEvent = "AXIS_PAN_TILT"
KeyAxisIndicatorCycle KeySimEvent = "VIEW_AXIS_INDICATOR_CYCLE"
KeyMapOrientationCycle KeySimEvent = "VIEW_MAP_ORIENTATION_CYCLE"
KeyToggleJetway KeySimEvent = "TOGGLE_JETWAY"
KeyRetractFloatSwitchDec KeySimEvent = "RETRACT_FLOAT_SWITCH_DEC"
KeyRetractFloatSwitchInc KeySimEvent = "RETRACT_FLOAT_SWITCH_INC"
KeyToggleWaterBallastValve KeySimEvent = "TOGGLE_WATER_BALLAST_VALVE"
KeyViewChaseDistanceAdd KeySimEvent = "VIEW_CHASE_DISTANCE_ADD"
KeyViewChaseDistanceSub KeySimEvent = "VIEW_CHASE_DISTANCE_SUB"
KeyApuStarter KeySimEvent = "APU_STARTER"
KeyApuOffSwitch KeySimEvent = "APU_OFF_SWITCH"
KeyApuGeneratorSwitchToggle KeySimEvent = "APU_GENERATOR_SWITCH_TOGGLE"
KeyApuGeneratorSwitchSet KeySimEvent = "APU_GENERATOR_SWITCH_SET"
KeyExtinguishEngineFire KeySimEvent = "EXTINGUISH_ENGINE_FIRE"
KeyApMaxBankInc KeySimEvent = "AP_MAX_BANK_INC"
KeyApMaxBankDec KeySimEvent = "AP_MAX_BANK_DEC"
KeyApN1Hold KeySimEvent = "AP_N1_HOLD"
KeyApN1RefInc KeySimEvent = "AP_N1_REF_INC"
KeyApN1RefDec KeySimEvent = "AP_N1_REF_DEC"
KeyApN1RefSet KeySimEvent = "AP_N1_REF_SET"
KeyHydraulicSwitchToggle KeySimEvent = "HYDRAULIC_SWITCH_TOGGLE"
KeyBleedAirSourceControlInc KeySimEvent = "BLEED_AIR_SOURCE_CONTROL_INC"
KeyBleedAirSourceControlDec KeySimEvent = "BLEED_AIR_SOURCE_CONTROL_DEC"
KeyTurbineIgnitionSwitchToggle KeySimEvent = "TURBINE_IGNITION_SWITCH_TOGGLE"
KeyCabinNoSmokingAlertSwitchToggle KeySimEvent = "CABIN_NO_SMOKING_ALERT_SWITCH_TOGGLE"
KeyCabinSeatbeltsAlertSwitchToggle KeySimEvent = "CABIN_SEATBELTS_ALERT_SWITCH_TOGGLE"
KeyAntiskidBrakesToggle KeySimEvent = "ANTISKID_BRAKES_TOGGLE"
KeyGpwsSwitchToggle KeySimEvent = "GPWS_SWITCH_TOGGLE"
KeyVideoRecordToggle KeySimEvent = "VIDEO_RECORD_TOGGLE"
KeyToggleAirportNameDisplay KeySimEvent = "TOGGLE_AIRPORT_NAME_DISPLAY"
KeyCaptureScreenshot KeySimEvent = "CAPTURE_SCREENSHOT"
KeyMouseLookToggle KeySimEvent = "MOUSE_LOOK_TOGGLE"
KeyYaxisInvertToggle KeySimEvent = "YAXIS_INVERT_TOGGLE"
KeyAutocoordToggle KeySimEvent = "AUTORUDDER_TOGGLE"
KeyFlyByWireElacToggle KeySimEvent = "FLY_BY_WIRE_ELAC_TOGGLE"
KeyFlyByWireFacToggle KeySimEvent = "FLY_BY_WIRE_FAC_TOGGLE"
KeyFlyByWireSecToggle KeySimEvent = "FLY_BY_WIRE_SEC_TOGGLE"
KeyManualFuelPressurePump KeySimEvent = "MANUAL_FUEL_PRESSURE_PUMP"
KeySteeringInc KeySimEvent = "STEERING_INC"
KeySteeringDec KeySimEvent = "STEERING_DEC"
KeySteeringSet KeySimEvent = "STEERING_SET"
KeyFreezeLatitudeLongitudeToggle KeySimEvent = "FREEZE_LATITUDE_LONGITUDE_TOGGLE"
KeyFreezeLatitudeLongitudeSet KeySimEvent = "FREEZE_LATITUDE_LONGITUDE_SET"
KeyFreezeAltitudeToggle KeySimEvent = "FREEZE_ALTITUDE_TOGGLE"
KeyFreezeAltitudeSet KeySimEvent = "FREEZE_ALTITUDE_SET"
KeyFreezeAttitudeToggle KeySimEvent = "FREEZE_ATTITUDE_TOGGLE"
KeyFreezeAttitudeSet KeySimEvent = "FREEZE_ATTITUDE_SET"
KeyPressurizationPressureAltInc KeySimEvent = "PRESSURIZATION_PRESSURE_ALT_INC"
KeyPressurizationPressureAltDec KeySimEvent = "PRESSURIZATION_PRESSURE_ALT_DEC"
KeyPressurizationClimbRateInc KeySimEvent = "PRESSURIZATION_CLIMB_RATE_INC"
KeyPressurizationClimbRateDec KeySimEvent = "PRESSURIZATION_CLIMB_RATE_DEC"
KeyPressurizationPressureDumpSwtich KeySimEvent = "PRESSURIZATION_PRESSURE_DUMP_SWTICH"
KeyFuelSelectorLeftMain KeySimEvent = "FUEL_SELECTOR_LEFT_MAIN"
KeyFuelSelector2LeftMain KeySimEvent = "FUEL_SELECTOR_2_LEFT_MAIN"
KeyFuelSelector3LeftMain KeySimEvent = "FUEL_SELECTOR_3_LEFT_MAIN"
KeyFuelSelector4LeftMain KeySimEvent = "FUEL_SELECTOR_4_LEFT_MAIN"
KeyFuelSelectorRightMain KeySimEvent = "FUEL_SELECTOR_RIGHT_MAIN"
KeyFuelSelector2RightMain KeySimEvent = "FUEL_SELECTOR_2_RIGHT_MAIN"
KeyFuelSelector3RightMain KeySimEvent = "FUEL_SELECTOR_3_RIGHT_MAIN"
KeyFuelSelector4RightMain KeySimEvent = "FUEL_SELECTOR_4_RIGHT_MAIN"
KeyPointOfInterestTogglePointer KeySimEvent = "POINT_OF_INTEREST_TOGGLE_POINTER"
KeyPointOfInterestCyclePrevious KeySimEvent = "POINT_OF_INTEREST_CYCLE_PREVIOUS"
KeyPointOfInterestCycleNext KeySimEvent = "POINT_OF_INTEREST_CYCLE_NEXT"
KeyG1000PfdFlightplanButton KeySimEvent = "G1000_PFD_FLIGHTPLAN_BUTTON"
KeyG1000PfdProcedureButton KeySimEvent = "G1000_PFD_PROCEDURE_BUTTON"
KeyG1000PfdZoominButton KeySimEvent = "G1000_PFD_ZOOMIN_BUTTON"
KeyG1000PfdZoomoutButton KeySimEvent = "G1000_PFD_ZOOMOUT_BUTTON"
KeyG1000PfdDirecttoButton KeySimEvent = "G1000_PFD_DIRECTTO_BUTTON"
KeyG1000PfdMenuButton KeySimEvent = "G1000_PFD_MENU_BUTTON"
KeyG1000PfdClearButton KeySimEvent = "G1000_PFD_CLEAR_BUTTON"
KeyG1000PfdEnterButton KeySimEvent = "G1000_PFD_ENTER_BUTTON"
KeyG1000PfdCursorButton KeySimEvent = "G1000_PFD_CURSOR_BUTTON"
KeyG1000PfdGroupKnobInc KeySimEvent = "G1000_PFD_GROUP_KNOB_INC"
KeyG1000PfdGroupKnobDec KeySimEvent = "G1000_PFD_GROUP_KNOB_DEC"
KeyG1000PfdPageKnobInc KeySimEvent = "G1000_PFD_PAGE_KNOB_INC"
KeyG1000PfdPageKnobDec KeySimEvent = "G1000_PFD_PAGE_KNOB_DEC"
KeyG1000PfdSoftkey1 KeySimEvent = "G1000_PFD_SOFTKEY1"
KeyG1000PfdSoftkey2 KeySimEvent = "G1000_PFD_SOFTKEY2"
KeyG1000PfdSoftkey3 KeySimEvent = "G1000_PFD_SOFTKEY3"
KeyG1000PfdSoftkey4 KeySimEvent = "G1000_PFD_SOFTKEY4"
KeyG1000PfdSoftkey5 KeySimEvent = "G1000_PFD_SOFTKEY5"
KeyG1000PfdSoftkey6 KeySimEvent = "G1000_PFD_SOFTKEY6"
KeyG1000PfdSoftkey7 KeySimEvent = "G1000_PFD_SOFTKEY7"
KeyG1000PfdSoftkey8 KeySimEvent = "G1000_PFD_SOFTKEY8"
KeyG1000PfdSoftkey9 KeySimEvent = "G1000_PFD_SOFTKEY9"
KeyG1000PfdSoftkey10 KeySimEvent = "G1000_PFD_SOFTKEY10"
KeyG1000PfdSoftkey11 KeySimEvent = "G1000_PFD_SOFTKEY11"
KeyG1000PfdSoftkey12 KeySimEvent = "G1000_PFD_SOFTKEY12"
KeyG1000MfdFlightplanButton KeySimEvent = "G1000_MFD_FLIGHTPLAN_BUTTON"
KeyG1000MfdProcedureButton KeySimEvent = "G1000_MFD_PROCEDURE_BUTTON"
KeyG1000MfdZoominButton KeySimEvent = "G1000_MFD_ZOOMIN_BUTTON"
KeyG1000MfdZoomoutButton KeySimEvent = "G1000_MFD_ZOOMOUT_BUTTON"
KeyG1000MfdDirecttoButton KeySimEvent = "G1000_MFD_DIRECTTO_BUTTON"
KeyG1000MfdMenuButton KeySimEvent = "G1000_MFD_MENU_BUTTON"
KeyG1000MfdClearButton KeySimEvent = "G1000_MFD_CLEAR_BUTTON"
KeyG1000MfdEnterButton KeySimEvent = "G1000_MFD_ENTER_BUTTON"
KeyG1000MfdCursorButton KeySimEvent = "G1000_MFD_CURSOR_BUTTON"
KeyG1000MfdGroupKnobInc KeySimEvent = "G1000_MFD_GROUP_KNOB_INC"
KeyG1000MfdGroupKnobDec KeySimEvent = "G1000_MFD_GROUP_KNOB_DEC"
KeyG1000MfdPageKnobInc KeySimEvent = "G1000_MFD_PAGE_KNOB_INC"
KeyG1000MfdPageKnobDec KeySimEvent = "G1000_MFD_PAGE_KNOB_DEC"
KeyG1000MfdSoftkey1 KeySimEvent = "G1000_MFD_SOFTKEY1"
KeyG1000MfdSoftkey2 KeySimEvent = "G1000_MFD_SOFTKEY2"
KeyG1000MfdSoftkey3 KeySimEvent = "G1000_MFD_SOFTKEY3"
KeyG1000MfdSoftkey4 KeySimEvent = "G1000_MFD_SOFTKEY4"
KeyG1000MfdSoftkey5 KeySimEvent = "G1000_MFD_SOFTKEY5"
KeyG1000MfdSoftkey6 KeySimEvent = "G1000_MFD_SOFTKEY6"
KeyG1000MfdSoftkey7 KeySimEvent = "G1000_MFD_SOFTKEY7"
KeyG1000MfdSoftkey8 KeySimEvent = "G1000_MFD_SOFTKEY8"
KeyG1000MfdSoftkey9 KeySimEvent = "G1000_MFD_SOFTKEY9"
KeyG1000MfdSoftkey10 KeySimEvent = "G1000_MFD_SOFTKEY10"
KeyG1000MfdSoftkey11 KeySimEvent = "G1000_MFD_SOFTKEY11"
KeyG1000MfdSoftkey12 KeySimEvent = "G1000_MFD_SOFTKEY12"
KeyThrottleFull KeySimEvent = "THROTTLE_FULL"
KeyThrottleIncr KeySimEvent = "THROTTLE_INCR"
KeyThrottleIncrSmall KeySimEvent = "THROTTLE_INCR_SMALL"
KeyThrottleDecr KeySimEvent = "THROTTLE_DECR"
KeyThrottleDecrSmall KeySimEvent = "THROTTLE_DECR_SMALL"
KeyThrottleCut KeySimEvent = "THROTTLE_CUT"
KeyIncreaseThrottle KeySimEvent = "INCREASE_THROTTLE"
KeyDecreaseThrottle KeySimEvent = "DECREASE_THROTTLE"
KeyThrottleSet KeySimEvent = "THROTTLE_SET"
KeyAxisThrottleSet KeySimEvent = "AXIS_THROTTLE_SET"
KeyThrottle1Set KeySimEvent = "THROTTLE1_SET"
KeyThrottle2Set KeySimEvent = "THROTTLE2_SET"
KeyThrottle3Set KeySimEvent = "THROTTLE3_SET"
KeyThrottle4Set KeySimEvent = "THROTTLE4_SET"
KeyThrottle1Full KeySimEvent = "THROTTLE1_FULL"
KeyThrottle1Incr KeySimEvent = "THROTTLE1_INCR"
KeyThrottle1IncrSmall KeySimEvent = "THROTTLE1_INCR_SMALL"
KeyThrottle1Decr KeySimEvent = "THROTTLE1_DECR"
KeyThrottle1Cut KeySimEvent = "THROTTLE1_CUT"
KeyThrottle2Full KeySimEvent = "THROTTLE2_FULL"
KeyThrottle2Incr KeySimEvent = "THROTTLE2_INCR"
KeyThrottle2IncrSmall KeySimEvent = "THROTTLE2_INCR_SMALL"
KeyThrottle2Decr KeySimEvent = "THROTTLE2_DECR"
KeyThrottle2Cut KeySimEvent = "THROTTLE2_CUT"
KeyThrottle3Full KeySimEvent = "THROTTLE3_FULL"
KeyThrottle3Incr KeySimEvent = "THROTTLE3_INCR"
KeyThrottle3IncrSmall KeySimEvent = "THROTTLE3_INCR_SMALL"
KeyThrottle3Decr KeySimEvent = "THROTTLE3_DECR"
KeyThrottle3Cut KeySimEvent = "THROTTLE3_CUT"
KeyThrottle4Full KeySimEvent = "THROTTLE4_FULL"
KeyThrottle4Incr KeySimEvent = "THROTTLE4_INCR"
KeyThrottle4IncrSmall KeySimEvent = "THROTTLE4_INCR_SMALL"
KeyThrottle4Decr KeySimEvent = "THROTTLE4_DECR"
KeyThrottle4Cut KeySimEvent = "THROTTLE4_CUT"
KeyThrottle10 KeySimEvent = "THROTTLE_10"
KeyThrottle20 KeySimEvent = "THROTTLE_20"
KeyThrottle30 KeySimEvent = "THROTTLE_30"
KeyThrottle40 KeySimEvent = "THROTTLE_40"
KeyThrottle50 KeySimEvent = "THROTTLE_50"
KeyThrottle60 KeySimEvent = "THROTTLE_60"
KeyThrottle70 KeySimEvent = "THROTTLE_70"
KeyThrottle80 KeySimEvent = "THROTTLE_80"
KeyThrottle90 KeySimEvent = "THROTTLE_90"
KeyAxisThrottle1Set KeySimEvent = "AXIS_THROTTLE1_SET"
KeyAxisThrottle2Set KeySimEvent = "AXIS_THROTTLE2_SET"
KeyAxisThrottle3Set KeySimEvent = "AXIS_THROTTLE3_SET"
KeyAxisThrottle4Set KeySimEvent = "AXIS_THROTTLE4_SET"
KeyThrottle1DecrSmall KeySimEvent = "THROTTLE1_DECR_SMALL"
KeyThrottle2DecrSmall KeySimEvent = "THROTTLE2_DECR_SMALL"
KeyThrottle3DecrSmall KeySimEvent = "THROTTLE3_DECR_SMALL"
KeyThrottle4DecrSmall KeySimEvent = "THROTTLE4_DECR_SMALL"
KeyPropPitchDecrSmall KeySimEvent = "PROP_PITCH_DECR_SMALL"
KeyPropPitch1DecrSmall KeySimEvent = "PROP_PITCH1_DECR_SMALL"
KeyPropPitch2DecrSmall KeySimEvent = "PROP_PITCH2_DECR_SMALL"
KeyPropPitch3DecrSmall KeySimEvent = "PROP_PITCH3_DECR_SMALL"
KeyPropPitch4DecrSmall KeySimEvent = "PROP_PITCH4_DECR_SMALL"
KeyMixture1Rich KeySimEvent = "MIXTURE1_RICH"
KeyMixture1Incr KeySimEvent = "MIXTURE1_INCR"
KeyMixture1IncrSmall KeySimEvent = "MIXTURE1_INCR_SMALL"
KeyMixture1Decr KeySimEvent = "MIXTURE1_DECR"
KeyMixture1Lean KeySimEvent = "MIXTURE1_LEAN"
KeyMixture2Rich KeySimEvent = "MIXTURE2_RICH"
KeyMixture2Incr KeySimEvent = "MIXTURE2_INCR"
KeyMixture2IncrSmall KeySimEvent = "MIXTURE2_INCR_SMALL"
KeyMixture2Decr KeySimEvent = "MIXTURE2_DECR"
KeyMixture2Lean KeySimEvent = "MIXTURE2_LEAN"
KeyMixture3Rich KeySimEvent = "MIXTURE3_RICH"
KeyMixture3Incr KeySimEvent = "MIXTURE3_INCR"
KeyMixture3IncrSmall KeySimEvent = "MIXTURE3_INCR_SMALL"
KeyMixture3Decr KeySimEvent = "MIXTURE3_DECR"
KeyMixture3Lean KeySimEvent = "MIXTURE3_LEAN"
KeyMixture4Rich KeySimEvent = "MIXTURE4_RICH"
KeyMixture4Incr KeySimEvent = "MIXTURE4_INCR"
KeyMixture4IncrSmall KeySimEvent = "MIXTURE4_INCR_SMALL"
KeyMixture4Decr KeySimEvent = "MIXTURE4_DECR"
KeyMixture4Lean KeySimEvent = "MIXTURE4_LEAN"
KeyMixtureSet KeySimEvent = "MIXTURE_SET"
KeyMixtureRich KeySimEvent = "MIXTURE_RICH"
KeyMixtureIncr KeySimEvent = "MIXTURE_INCR"
KeyMixtureIncrSmall KeySimEvent = "MIXTURE_INCR_SMALL"
KeyMixtureDecr KeySimEvent = "MIXTURE_DECR"
KeyMixtureLean KeySimEvent = "MIXTURE_LEAN"
KeyMixture1Set KeySimEvent = "MIXTURE1_SET"
KeyMixture2Set KeySimEvent = "MIXTURE2_SET"
KeyMixture3Set KeySimEvent = "MIXTURE3_SET"
KeyMixture4Set KeySimEvent = "MIXTURE4_SET"
KeyAxisMixtureSet KeySimEvent = "AXIS_MIXTURE_SET"
KeyAxisMixture1Set KeySimEvent = "AXIS_MIXTURE1_SET"
KeyAxisMixture2Set KeySimEvent = "AXIS_MIXTURE2_SET"
KeyAxisMixture3Set KeySimEvent = "AXIS_MIXTURE3_SET"
KeyAxisMixture4Set KeySimEvent = "AXIS_MIXTURE4_SET"
KeyMixtureSetBest KeySimEvent = "MIXTURE_SET_BEST"
KeyMixtureDecrSmall KeySimEvent = "MIXTURE_DECR_SMALL"
KeyMixture1DecrSmall KeySimEvent = "MIXTURE1_DECR_SMALL"
KeyMixture2DecrSmall KeySimEvent = "MIXTURE2_DECR_SMALL"
KeyMixture3DecrSmall KeySimEvent = "MIXTURE3_DECR_SMALL"
KeyMixture4DecrSmall KeySimEvent = "MIXTURE4_DECR_SMALL"
KeyPropPitchSet KeySimEvent = "PROP_PITCH_SET"
KeyPropPitchLo KeySimEvent = "PROP_PITCH_LO"
KeyPropPitchIncr KeySimEvent = "PROP_PITCH_INCR"
KeyPropPitchIncrSmall KeySimEvent = "PROP_PITCH_INCR_SMALL"
KeyPropPitchDecr KeySimEvent = "PROP_PITCH_DECR"
KeyPropPitchHi KeySimEvent = "PROP_PITCH_HI"
KeyPropPitch1Set KeySimEvent = "PROP_PITCH1_SET"
KeyPropPitch2Set KeySimEvent = "PROP_PITCH2_SET"
KeyPropPitch3Set KeySimEvent = "PROP_PITCH3_SET"
KeyPropPitch4Set KeySimEvent = "PROP_PITCH4_SET"
KeyPropPitch1Lo KeySimEvent = "PROP_PITCH1_LO"
KeyPropPitch1Incr KeySimEvent = "PROP_PITCH1_INCR"
KeyPropPitch1IncrSmall KeySimEvent = "PROP_PITCH1_INCR_SMALL"
KeyPropPitch1Decr KeySimEvent = "PROP_PITCH1_DECR"
KeyPropPitch1Hi KeySimEvent = "PROP_PITCH1_HI"
KeyPropPitch2Lo KeySimEvent = "PROP_PITCH2_LO"
KeyPropPitch2Incr KeySimEvent = "PROP_PITCH2_INCR"
KeyPropPitch2IncrSmall KeySimEvent = "PROP_PITCH2_INCR_SMALL"
KeyPropPitch2Decr KeySimEvent = "PROP_PITCH2_DECR"
KeyPropPitch2Hi KeySimEvent = "PROP_PITCH2_HI"
KeyPropPitch3Lo KeySimEvent = "PROP_PITCH3_LO"
KeyPropPitch3Incr KeySimEvent = "PROP_PITCH3_INCR"
KeyPropPitch3IncrSmall KeySimEvent = "PROP_PITCH3_INCR_SMALL"
KeyPropPitch3Decr KeySimEvent = "PROP_PITCH3_DECR"
KeyPropPitch3Hi KeySimEvent = "PROP_PITCH3_HI"
KeyPropPitch4Lo KeySimEvent = "PROP_PITCH4_LO"
KeyPropPitch4Incr KeySimEvent = "PROP_PITCH4_INCR"
KeyPropPitch4IncrSmall KeySimEvent = "PROP_PITCH4_INCR_SMALL"
KeyPropPitch4Decr KeySimEvent = "PROP_PITCH4_DECR"
KeyPropPitch4Hi KeySimEvent = "PROP_PITCH4_HI"
KeyAxisPropellerSet KeySimEvent = "AXIS_PROPELLER_SET"
KeyAxisPropeller1Set KeySimEvent = "AXIS_PROPELLER1_SET"
KeyAxisPropeller2Set KeySimEvent = "AXIS_PROPELLER2_SET"
KeyAxisPropeller3Set KeySimEvent = "AXIS_PROPELLER3_SET"
KeyAxisPropeller4Set KeySimEvent = "AXIS_PROPELLER4_SET"
KeyJetStarter KeySimEvent = "JET_STARTER"
KeyStarterSet KeySimEvent = "MAGNETO_SET"
KeyToggleStarter1 KeySimEvent = "TOGGLE_STARTER1"
KeyToggleStarter2 KeySimEvent = "TOGGLE_STARTER2"
KeyToggleStarter3 KeySimEvent = "TOGGLE_STARTER3"
KeyToggleStarter4 KeySimEvent = "TOGGLE_STARTER4"
KeyToggleAllStarters KeySimEvent = "TOGGLE_ALL_STARTERS"
KeyEngineAutoStart KeySimEvent = "ENGINE_AUTO_START"
KeyEngineAutoShutdown KeySimEvent = "ENGINE_AUTO_SHUTDOWN"
KeyMagneto KeySimEvent = "MAGNETO"
KeyMagnetoDecr KeySimEvent = "MAGNETO_DECR"
KeyMagnetoIncr KeySimEvent = "MAGNETO_INCR"
KeyMagneto1Off KeySimEvent = "MAGNETO1_OFF"
KeyMagneto1Right KeySimEvent = "MAGNETO1_RIGHT"
KeyMagneto1Left KeySimEvent = "MAGNETO1_LEFT"
KeyMagneto1Both KeySimEvent = "MAGNETO1_BOTH"
KeyMagneto1Start KeySimEvent = "MAGNETO1_START"
KeyMagneto2Off KeySimEvent = "MAGNETO2_OFF"
KeyMagneto2Right KeySimEvent = "MAGNETO2_RIGHT"
KeyMagneto2Left KeySimEvent = "MAGNETO2_LEFT"
KeyMagneto2Both KeySimEvent = "MAGNETO2_BOTH"
KeyMagneto2Start KeySimEvent = "MAGNETO2_START"
KeyMagneto3Off KeySimEvent = "MAGNETO3_OFF"
KeyMagneto3Right KeySimEvent = "MAGNETO3_RIGHT"
KeyMagneto3Left KeySimEvent = "MAGNETO3_LEFT"
KeyMagneto3Both KeySimEvent = "MAGNETO3_BOTH"
KeyMagneto3Start KeySimEvent = "MAGNETO3_START"
KeyMagneto4Off KeySimEvent = "MAGNETO4_OFF"
KeyMagneto4Right KeySimEvent = "MAGNETO4_RIGHT"
KeyMagneto4Left KeySimEvent = "MAGNETO4_LEFT"
KeyMagneto4Both KeySimEvent = "MAGNETO4_BOTH"
KeyMagneto4Start KeySimEvent = "MAGNETO4_START"
KeyMagnetoOff KeySimEvent = "MAGNETO_OFF"
KeyMagnetoRight KeySimEvent = "MAGNETO_RIGHT"
KeyMagnetoLeft KeySimEvent = "MAGNETO_LEFT"
KeyMagnetoBoth KeySimEvent = "MAGNETO_BOTH"
KeyMagnetoStart KeySimEvent = "MAGNETO_START"
KeyMagneto1Decr KeySimEvent = "MAGNETO1_DECR"
KeyMagneto1Incr KeySimEvent = "MAGNETO1_INCR"
KeyMagneto2Decr KeySimEvent = "MAGNETO2_DECR"
KeyMagneto2Incr KeySimEvent = "MAGNETO2_INCR"
KeyMagneto3Decr KeySimEvent = "MAGNETO3_DECR"
KeyMagneto3Incr KeySimEvent = "MAGNETO3_INCR"
KeyMagneto4Decr KeySimEvent = "MAGNETO4_DECR"
KeyMagneto4Incr KeySimEvent = "MAGNETO4_INCR"
KeyMagneto1Set KeySimEvent = "MAGNETO1_SET"
KeyMagneto2Set KeySimEvent = "MAGNETO2_SET"
KeyMagneto3Set KeySimEvent = "MAGNETO3_SET"
KeyMagneto4Set KeySimEvent = "MAGNETO4_SET"
KeyAntiIceOn KeySimEvent = "ANTI_ICE_ON"
KeyAntiIceOff KeySimEvent = "ANTI_ICE_OFF"
KeyAntiIceSet KeySimEvent = "ANTI_ICE_SET"
KeyAntiIceToggle KeySimEvent = "ANTI_ICE_TOGGLE"
KeyAntiIceToggleEng1 KeySimEvent = "ANTI_ICE_TOGGLE_ENG1"
KeyAntiIceToggleEng2 KeySimEvent = "ANTI_ICE_TOGGLE_ENG2"
KeyAntiIceToggleEng3 KeySimEvent = "ANTI_ICE_TOGGLE_ENG3"
KeyAntiIceToggleEng4 KeySimEvent = "ANTI_ICE_TOGGLE_ENG4"
KeyAntiIceSetEng1 KeySimEvent = "ANTI_ICE_SET_ENG1"
KeyAntiIceSetEng2 KeySimEvent = "ANTI_ICE_SET_ENG2"
KeyAntiIceSetEng3 KeySimEvent = "ANTI_ICE_SET_ENG3"
KeyAntiIceSetEng4 KeySimEvent = "ANTI_ICE_SET_ENG4"
KeyToggleFuelValveAll KeySimEvent = "TOGGLE_FUEL_VALVE_ALL"
KeyToggleFuelValveEng1 KeySimEvent = "TOGGLE_FUEL_VALVE_ENG1"
KeyToggleFuelValveEng2 KeySimEvent = "TOGGLE_FUEL_VALVE_ENG2"
KeyToggleFuelValveEng3 KeySimEvent = "TOGGLE_FUEL_VALVE_ENG3"
KeyToggleFuelValveEng4 KeySimEvent = "TOGGLE_FUEL_VALVE_ENG4"
KeyCowlflap1Set KeySimEvent = "COWLFLAP1_SET"
KeyCowlflap2Set KeySimEvent = "COWLFLAP2_SET"
KeyCowlflap3Set KeySimEvent = "COWLFLAP3_SET"
KeyCowlflap4Set KeySimEvent = "COWLFLAP4_SET"
KeyIncCowlFlaps KeySimEvent = "INC_COWL_FLAPS"
KeyDecCowlFlaps KeySimEvent = "DEC_COWL_FLAPS"
KeyIncCowlFlaps1 KeySimEvent = "INC_COWL_FLAPS1"
KeyDecCowlFlaps1 KeySimEvent = "DEC_COWL_FLAPS1"
KeyIncCowlFlaps2 KeySimEvent = "INC_COWL_FLAPS2"
KeyDecCowlFlaps2 KeySimEvent = "DEC_COWL_FLAPS2"
KeyIncCowlFlaps3 KeySimEvent = "INC_COWL_FLAPS3"
KeyDecCowlFlaps3 KeySimEvent = "DEC_COWL_FLAPS3"
KeyIncCowlFlaps4 KeySimEvent = "INC_COWL_FLAPS4"
KeyDecCowlFlaps4 KeySimEvent = "DEC_COWL_FLAPS4"
KeyFuelPump KeySimEvent = "FUEL_PUMP"
KeyToggleElectFuelPump KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP"
KeyToggleElectFuelPump1 KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP1"
KeyToggleElectFuelPump2 KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP2"
KeyToggleElectFuelPump3 KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP3"
KeyToggleElectFuelPump4 KeySimEvent = "TOGGLE_ELECT_FUEL_PUMP4"
KeyEnginePrimer KeySimEvent = "ENGINE_PRIMER"
KeyTogglePrimer KeySimEvent = "TOGGLE_PRIMER"
KeyTogglePrimer1 KeySimEvent = "TOGGLE_PRIMER1"
KeyTogglePrimer2 KeySimEvent = "TOGGLE_PRIMER2"
KeyTogglePrimer3 KeySimEvent = "TOGGLE_PRIMER3"
KeyTogglePrimer4 KeySimEvent = "TOGGLE_PRIMER4"
KeyToggleFeatherSwitches KeySimEvent = "TOGGLE_FEATHER_SWITCHES"
KeyToggleFeatherSwitch1 KeySimEvent = "TOGGLE_FEATHER_SWITCH_1"
KeyToggleFeatherSwitch2 KeySimEvent = "TOGGLE_FEATHER_SWITCH_2"
KeyToggleFeatherSwitch3 KeySimEvent = "TOGGLE_FEATHER_SWITCH_3"
KeyToggleFeatherSwitch4 KeySimEvent = "TOGGLE_FEATHER_SWITCH_4"
KeyTogglePropSync KeySimEvent = "TOGGLE_PROPELLER_SYNC"
KeyToggleArmAutofeather KeySimEvent = "TOGGLE_AUTOFEATHER_ARM"
KeyToggleAfterburner KeySimEvent = "TOGGLE_AFTERBURNER"
KeyToggleAfterburner1 KeySimEvent = "TOGGLE_AFTERBURNER1"
KeyToggleAfterburner2 KeySimEvent = "TOGGLE_AFTERBURNER2"
KeyToggleAfterburner3 KeySimEvent = "TOGGLE_AFTERBURNER3"
KeyToggleAfterburner4 KeySimEvent = "TOGGLE_AFTERBURNER4"
KeyEngine KeySimEvent = "ENGINE"
KeySpoilersToggle KeySimEvent = "SPOILERS_TOGGLE"
KeyFlapsUp KeySimEvent = "FLAPS_UP"
KeyFlaps1 KeySimEvent = "FLAPS_1"
KeyFlaps2 KeySimEvent = "FLAPS_2"
KeyFlaps3 KeySimEvent = "FLAPS_3"
KeyFlapsDown KeySimEvent = "FLAPS_DOWN"
KeyElevTrimDn KeySimEvent = "ELEV_TRIM_DN"
KeyElevDown KeySimEvent = "ELEV_DOWN"
KeyAileronsLeft KeySimEvent = "AILERONS_LEFT"
KeyCenterAilerRudder KeySimEvent = "CENTER_AILER_RUDDER"
KeyAileronsRight KeySimEvent = "AILERONS_RIGHT"
KeyElevTrimUp KeySimEvent = "ELEV_TRIM_UP"
KeyElevUp KeySimEvent = "ELEV_UP"
KeyRudderLeft KeySimEvent = "RUDDER_LEFT"
KeyRudderCenter KeySimEvent = "RUDDER_CENTER"
KeyRudderRight KeySimEvent = "RUDDER_RIGHT"
KeyElevatorSet KeySimEvent = "ELEVATOR_SET"
KeyAileronSet KeySimEvent = "AILERON_SET"
KeyRudderSet KeySimEvent = "RUDDER_SET"
KeyFlapsIncr KeySimEvent = "FLAPS_INCR"
KeyFlapsDecr KeySimEvent = "FLAPS_DECR"
KeyAxisElevatorSet KeySimEvent = "AXIS_ELEVATOR_SET"
KeyAxisAileronsSet KeySimEvent = "AXIS_AILERONS_SET"
KeyAxisRudderSet KeySimEvent = "AXIS_RUDDER_SET"
KeyAxisElevTrimSet KeySimEvent = "AXIS_ELEV_TRIM_SET"
KeySpoilersSet KeySimEvent = "SPOILERS_SET"
KeySpoilersArmToggle KeySimEvent = "SPOILERS_ARM_TOGGLE"
KeySpoilersOn KeySimEvent = "SPOILERS_ON"
KeySpoilersOff KeySimEvent = "SPOILERS_OFF"
KeySpoilersArmOn KeySimEvent = "SPOILERS_ARM_ON"
KeySpoilersArmOff KeySimEvent = "SPOILERS_ARM_OFF"
KeySpoilersArmSet KeySimEvent = "SPOILERS_ARM_SET"
KeyAileronTrimLeft KeySimEvent = "AILERON_TRIM_LEFT"
KeyAileronTrimRight KeySimEvent = "AILERON_TRIM_RIGHT"
KeyRudderTrimLeft KeySimEvent = "RUDDER_TRIM_LEFT"
KeyRudderTrimRight KeySimEvent = "RUDDER_TRIM_RIGHT"
KeyAxisSpoilerSet KeySimEvent = "AXIS_SPOILER_SET"
KeyFlapsSet KeySimEvent = "FLAPS_SET"
KeyElevatorTrimSet KeySimEvent = "ELEVATOR_TRIM_SET"
KeyAxisFlapsSet KeySimEvent = "AXIS_FLAPS_SET"
KeyApMaster KeySimEvent = "AP_MASTER"
KeyAutopilotOff KeySimEvent = "AUTOPILOT_OFF"
KeyAutopilotOn KeySimEvent = "AUTOPILOT_ON"
KeyYawDamperToggle KeySimEvent = "YAW_DAMPER_TOGGLE"
KeyApPanelHeadingHold KeySimEvent = "AP_PANEL_HEADING_HOLD"
KeyApPanelAltitudeHold KeySimEvent = "AP_PANEL_ALTITUDE_HOLD"
KeyApAttHoldOn KeySimEvent = "AP_ATT_HOLD_ON"
KeyApLocHoldOn KeySimEvent = "AP_LOC_HOLD_ON"
KeyApAprHoldOn KeySimEvent = "AP_APR_HOLD_ON"
KeyApHdgHoldOn KeySimEvent = "AP_HDG_HOLD_ON"
KeyApAltHoldOn KeySimEvent = "AP_ALT_HOLD_ON"
KeyApWingLevelerOn KeySimEvent = "AP_WING_LEVELER_ON"
KeyApBcHoldOn KeySimEvent = "AP_BC_HOLD_ON"
KeyApNav1HoldOn KeySimEvent = "AP_NAV1_HOLD_ON"
KeyApAttHoldOff KeySimEvent = "AP_ATT_HOLD_OFF"
KeyApLocHoldOff KeySimEvent = "AP_LOC_HOLD_OFF"
KeyApAprHoldOff KeySimEvent = "AP_APR_HOLD_OFF"
KeyApHdgHoldOff KeySimEvent = "AP_HDG_HOLD_OFF"
KeyApAltHoldOff KeySimEvent = "AP_ALT_HOLD_OFF"
KeyApWingLevelerOff KeySimEvent = "AP_WING_LEVELER_OFF"
KeyApBcHoldOff KeySimEvent = "AP_BC_HOLD_OFF"
KeyApNav1HoldOff KeySimEvent = "AP_NAV1_HOLD_OFF"
KeyApAirspeedHold KeySimEvent = "AP_AIRSPEED_HOLD"
KeyAutoThrottleArm KeySimEvent = "AUTO_THROTTLE_ARM"
KeyAutoThrottleToGa KeySimEvent = "AUTO_THROTTLE_TO_GA"
KeyHeadingBugInc KeySimEvent = "HEADING_BUG_INC"
KeyHeadingBugDec KeySimEvent = "HEADING_BUG_DEC"
KeyHeadingBugSet KeySimEvent = "HEADING_BUG_SET"
KeyApPanelSpeedHold KeySimEvent = "AP_PANEL_SPEED_HOLD"
KeyApAltVarInc KeySimEvent = "AP_ALT_VAR_INC"
KeyApAltVarDec KeySimEvent = "AP_ALT_VAR_DEC"
KeyApVsVarInc KeySimEvent = "AP_VS_VAR_INC"
KeyApVsVarDec KeySimEvent = "AP_VS_VAR_DEC"
KeyApSpdVarInc KeySimEvent = "AP_SPD_VAR_INC"
KeyApSpdVarDec KeySimEvent = "AP_SPD_VAR_DEC"
KeyApPanelMachHold KeySimEvent = "AP_PANEL_MACH_HOLD"
KeyApMachVarInc KeySimEvent = "AP_MACH_VAR_INC"
KeyApMachVarDec KeySimEvent = "AP_MACH_VAR_DEC"
KeyApMachHold KeySimEvent = "AP_MACH_HOLD"
KeyApAltVarSetMetric KeySimEvent = "AP_ALT_VAR_SET_METRIC"
KeyApVsVarSetEnglish KeySimEvent = "AP_VS_VAR_SET_ENGLISH"
KeyApSpdVarSet KeySimEvent = "AP_SPD_VAR_SET"
KeyApMachVarSet KeySimEvent = "AP_MACH_VAR_SET"
KeyYawDamperOn KeySimEvent = "YAW_DAMPER_ON"
KeyYawDamperOff KeySimEvent = "YAW_DAMPER_OFF"
KeyYawDamperSet KeySimEvent = "YAW_DAMPER_SET"
KeyApAirspeedOn KeySimEvent = "AP_AIRSPEED_ON"
KeyApAirspeedOff KeySimEvent = "AP_AIRSPEED_OFF"
KeyApAirspeedSet KeySimEvent = "AP_AIRSPEED_SET"
KeyApMachOn KeySimEvent = "AP_MACH_ON"
KeyApMachOff KeySimEvent = "AP_MACH_OFF"
KeyApMachSet KeySimEvent = "AP_MACH_SET"
KeyApPanelAltitudeOn KeySimEvent = "AP_PANEL_ALTITUDE_ON"
KeyApPanelAltitudeOff KeySimEvent = "AP_PANEL_ALTITUDE_OFF"
KeyApPanelAltitudeSet KeySimEvent = "AP_PANEL_ALTITUDE_SET"
KeyApPanelHeadingOn KeySimEvent = "AP_PANEL_HEADING_ON"
KeyApPanelHeadingOff KeySimEvent = "AP_PANEL_HEADING_OFF"
KeyApPanelHeadingSet KeySimEvent = "AP_PANEL_HEADING_SET"
KeyApPanelMachOn KeySimEvent = "AP_PANEL_MACH_ON"
KeyApPanelMachOff KeySimEvent = "AP_PANEL_MACH_OFF"
KeyApPanelMachSet KeySimEvent = "AP_PANEL_MACH_SET"
KeyApPanelSpeedOn KeySimEvent = "AP_PANEL_SPEED_ON"
KeyApPanelSpeedOff KeySimEvent = "AP_PANEL_SPEED_OFF"
KeyApPanelSpeedSet KeySimEvent = "AP_PANEL_SPEED_SET"
KeyApAltVarSetEnglish KeySimEvent = "AP_ALT_VAR_SET_ENGLISH"
KeyApVsVarSetMetric KeySimEvent = "AP_VS_VAR_SET_METRIC"
KeyToggleFlightDirector KeySimEvent = "TOGGLE_FLIGHT_DIRECTOR"
KeySyncFlightDirectorPitch KeySimEvent = "SYNC_FLIGHT_DIRECTOR_PITCH"
KeyIncAutobrakeControl KeySimEvent = "INCREASE_AUTOBRAKE_CONTROL"
KeyDecAutobrakeControl KeySimEvent = "DECREASE_AUTOBRAKE_CONTROL"
KeyAutopilotAirspeedHoldCurrent KeySimEvent = "AP_PANEL_SPEED_HOLD_TOGGLE"
KeyAutopilotMachHoldCurrent KeySimEvent = "AP_PANEL_MACH_HOLD_TOGGLE"
KeyApNavSelectSet KeySimEvent = "AP_NAV_SELECT_SET"
KeyHeadingBugSelect KeySimEvent = "HEADING_BUG_SELECT"
KeyAltitudeBugSelect KeySimEvent = "ALTITUDE_BUG_SELECT"
KeyVsiBugSelect KeySimEvent = "VSI_BUG_SELECT"
KeyAirspeedBugSelect KeySimEvent = "AIRSPEED_BUG_SELECT"
KeyApPitchRefIncUp KeySimEvent = "AP_PITCH_REF_INC_UP"
KeyApPitchRefIncDn KeySimEvent = "AP_PITCH_REF_INC_DN"
KeyApPitchRefSelect KeySimEvent = "AP_PITCH_REF_SELECT"
KeyApAttHold KeySimEvent = "AP_ATT_HOLD"
KeyApLocHold KeySimEvent = "AP_LOC_HOLD"
KeyApAprHold KeySimEvent = "AP_APR_HOLD"
KeyApHdgHold KeySimEvent = "AP_HDG_HOLD"
KeyApAltHold KeySimEvent = "AP_ALT_HOLD"
KeyApWingLeveler KeySimEvent = "AP_WING_LEVELER"
KeyApBcHold KeySimEvent = "AP_BC_HOLD"
KeyApNav1Hold KeySimEvent = "AP_NAV1_HOLD"
KeyFuelSelectorOff KeySimEvent = "FUEL_SELECTOR_OFF"
KeyFuelSelectorAll KeySimEvent = "FUEL_SELECTOR_ALL"
KeyFuelSelectorLeft KeySimEvent = "FUEL_SELECTOR_LEFT"
KeyFuelSelectorRight KeySimEvent = "FUEL_SELECTOR_RIGHT"
KeyFuelSelectorLeftAux KeySimEvent = "FUEL_SELECTOR_LEFT_AUX"
KeyFuelSelectorRightAux KeySimEvent = "FUEL_SELECTOR_RIGHT_AUX"
KeyFuelSelectorCenter KeySimEvent = "FUEL_SELECTOR_CENTER"
KeyFuelSelectorSet KeySimEvent = "FUEL_SELECTOR_SET"
KeyFuelSelector2Off KeySimEvent = "FUEL_SELECTOR_2_OFF"
KeyFuelSelector2All KeySimEvent = "FUEL_SELECTOR_2_ALL"
KeyFuelSelector2Left KeySimEvent = "FUEL_SELECTOR_2_LEFT"
KeyFuelSelector2Right KeySimEvent = "FUEL_SELECTOR_2_RIGHT"
KeyFuelSelector2LeftAux KeySimEvent = "FUEL_SELECTOR_2_LEFT_AUX"
KeyFuelSelector2RightAux KeySimEvent = "FUEL_SELECTOR_2_RIGHT_AUX"
KeyFuelSelector2Center KeySimEvent = "FUEL_SELECTOR_2_CENTER"
KeyFuelSelector2Set KeySimEvent = "FUEL_SELECTOR_2_SET"
KeyFuelSelector3Off KeySimEvent = "FUEL_SELECTOR_3_OFF"
KeyFuelSelector3All KeySimEvent = "FUEL_SELECTOR_3_ALL"
KeyFuelSelector3Left KeySimEvent = "FUEL_SELECTOR_3_LEFT"
KeyFuelSelector3Right KeySimEvent = "FUEL_SELECTOR_3_RIGHT"
KeyFuelSelector3LeftAux KeySimEvent = "FUEL_SELECTOR_3_LEFT_AUX"
KeyFuelSelector3RightAux KeySimEvent = "FUEL_SELECTOR_3_RIGHT_AUX"
KeyFuelSelector3Center KeySimEvent = "FUEL_SELECTOR_3_CENTER"
KeyFuelSelector3Set KeySimEvent = "FUEL_SELECTOR_3_SET"
KeyFuelSelector4Off KeySimEvent = "FUEL_SELECTOR_4_OFF"
KeyFuelSelector4All KeySimEvent = "FUEL_SELECTOR_4_ALL"
KeyFuelSelector4Left KeySimEvent = "FUEL_SELECTOR_4_LEFT"
KeyFuelSelector4Right KeySimEvent = "FUEL_SELECTOR_4_RIGHT"
KeyFuelSelector4LeftAux KeySimEvent = "FUEL_SELECTOR_4_LEFT_AUX"
KeyFuelSelector4RightAux KeySimEvent = "FUEL_SELECTOR_4_RIGHT_AUX"
KeyFuelSelector4Center KeySimEvent = "FUEL_SELECTOR_4_CENTER"
KeyFuelSelector4Set KeySimEvent = "FUEL_SELECTOR_4_SET"
KeyCrossFeedOpen KeySimEvent = "CROSS_FEED_OPEN"
KeyCrossFeedToggle KeySimEvent = "CROSS_FEED_TOGGLE"
KeyCrossFeedOff KeySimEvent = "CROSS_FEED_OFF"
KeyXpndr KeySimEvent = "XPNDR"
KeyAdf KeySimEvent = "ADF"
KeyDme KeySimEvent = "DME"
KeyComRadio KeySimEvent = "COM_RADIO"
KeyVorObs KeySimEvent = "VOR_OBS"
KeyNavRadio KeySimEvent = "NAV_RADIO"
KeyComRadioWholeDec KeySimEvent = "COM_RADIO_WHOLE_DEC"
KeyComRadioWholeInc KeySimEvent = "COM_RADIO_WHOLE_INC"
KeyComRadioFractDec KeySimEvent = "COM_RADIO_FRACT_DEC"
KeyComRadioFractInc KeySimEvent = "COM_RADIO_FRACT_INC"
KeyNav1RadioWholeDec KeySimEvent = "NAV1_RADIO_WHOLE_DEC"
KeyNav1RadioWholeInc KeySimEvent = "NAV1_RADIO_WHOLE_INC"
KeyNav1RadioFractDec KeySimEvent = "NAV1_RADIO_FRACT_DEC"
KeyNav1RadioFractInc KeySimEvent = "NAV1_RADIO_FRACT_INC"
KeyNav2RadioWholeDec KeySimEvent = "NAV2_RADIO_WHOLE_DEC"
KeyNav2RadioWholeInc KeySimEvent = "NAV2_RADIO_WHOLE_INC"
KeyNav2RadioFractDec KeySimEvent = "NAV2_RADIO_FRACT_DEC"
KeyNav2RadioFractInc KeySimEvent = "NAV2_RADIO_FRACT_INC"
KeyAdf100Inc KeySimEvent = "ADF_100_INC"
KeyAdf10Inc KeySimEvent = "ADF_10_INC"
KeyAdf1Inc KeySimEvent = "ADF_1_INC"
KeyXpndr1000Inc KeySimEvent = "XPNDR_1000_INC"
KeyXpndr100Inc KeySimEvent = "XPNDR_100_INC"
KeyXpndr10Inc KeySimEvent = "XPNDR_10_INC"
KeyXpndr1Inc KeySimEvent = "XPNDR_1_INC"
KeyVor1ObiDec KeySimEvent = "VOR1_OBI_DEC"
KeyVor1ObiInc KeySimEvent = "VOR1_OBI_INC"
KeyVor2ObiDec KeySimEvent = "VOR2_OBI_DEC"
KeyVor2ObiInc KeySimEvent = "VOR2_OBI_INC"
KeyAdf100Dec KeySimEvent = "ADF_100_DEC"
KeyAdf10Dec KeySimEvent = "ADF_10_DEC"
KeyAdf1Dec KeySimEvent = "ADF_1_DEC"
KeyComRadioSet KeySimEvent = "COM_RADIO_SET"
KeyNav1RadioSet KeySimEvent = "NAV1_RADIO_SET"
KeyNav2RadioSet KeySimEvent = "NAV2_RADIO_SET"
KeyAdfSet KeySimEvent = "ADF_SET"
KeyXpndrSet KeySimEvent = "XPNDR_SET"
KeyVor1Set KeySimEvent = "VOR1_SET"
KeyVor2Set KeySimEvent = "VOR2_SET"
KeyDme1Toggle KeySimEvent = "DME1_TOGGLE"
KeyDme2Toggle KeySimEvent = "DME2_TOGGLE"
KeyRadioVor1IdentDisable KeySimEvent = "RADIO_VOR1_IDENT_DISABLE"
KeyRadioVor2IdentDisable KeySimEvent = "RADIO_VOR2_IDENT_DISABLE"
KeyRadioDme1IdentDisable KeySimEvent = "RADIO_DME1_IDENT_DISABLE"
KeyRadioDme2IdentDisable KeySimEvent = "RADIO_DME2_IDENT_DISABLE"
KeyRadioAdfIdentDisable KeySimEvent = "RADIO_ADF_IDENT_DISABLE"
KeyRadioVor1IdentEnable KeySimEvent = "RADIO_VOR1_IDENT_ENABLE"
KeyRadioVor2IdentEnable KeySimEvent = "RADIO_VOR2_IDENT_ENABLE"
KeyRadioDme1IdentEnable KeySimEvent = "RADIO_DME1_IDENT_ENABLE"
KeyRadioDme2IdentEnable KeySimEvent = "RADIO_DME2_IDENT_ENABLE"
KeyRadioAdfIdentEnable KeySimEvent = "RADIO_ADF_IDENT_ENABLE"
KeyRadioVor1IdentToggle KeySimEvent = "RADIO_VOR1_IDENT_TOGGLE"
KeyRadioVor2IdentToggle KeySimEvent = "RADIO_VOR2_IDENT_TOGGLE"
KeyRadioDme1IdentToggle KeySimEvent = "RADIO_DME1_IDENT_TOGGLE"
KeyRadioDme2IdentToggle KeySimEvent = "RADIO_DME2_IDENT_TOGGLE"
KeyRadioAdfIdentToggle KeySimEvent = "RADIO_ADF_IDENT_TOGGLE"
KeyRadioVor1IdentSet KeySimEvent = "RADIO_VOR1_IDENT_SET"
KeyRadioVor2IdentSet KeySimEvent = "RADIO_VOR2_IDENT_SET"
KeyRadioDme1IdentSet KeySimEvent = "RADIO_DME1_IDENT_SET"
KeyRadioDme2IdentSet KeySimEvent = "RADIO_DME2_IDENT_SET"
KeyRadioAdfIdentSet KeySimEvent = "RADIO_ADF_IDENT_SET"
KeyAdfCardInc KeySimEvent = "ADF_CARD_INC"
KeyAdfCardDec KeySimEvent = "ADF_CARD_DEC"
KeyAdfCardSet KeySimEvent = "ADF_CARD_SET"
KeyDmeToggle KeySimEvent = "TOGGLE_DME"
KeyAvionicsMasterSet KeySimEvent = "AVIONICS_MASTER_SET"
KeyToggleAvionicsMaster KeySimEvent = "TOGGLE_AVIONICS_MASTER"
KeyComStbyRadioSet KeySimEvent = "COM_STBY_RADIO_SET"
KeyComStbyRadioSwitchTo KeySimEvent = "COM_STBY_RADIO_SWAP"
KeyComRadioSwap KeySimEvent = "COM_STBY_RADIO_SWAP"
KeyComRadioFractDecCarry KeySimEvent = "COM_RADIO_FRACT_DEC_CARRY"
KeyComRadioFractIncCarry KeySimEvent = "COM_RADIO_FRACT_INC_CARRY"
KeyCom2RadioWholeDec KeySimEvent = "COM2_RADIO_WHOLE_DEC"
KeyCom2RadioWholeInc KeySimEvent = "COM2_RADIO_WHOLE_INC"
KeyCom2RadioFractDec KeySimEvent = "COM2_RADIO_FRACT_DEC"
KeyCom2RadioFractDecCarry KeySimEvent = "COM2_RADIO_FRACT_DEC_CARRY"
KeyCom2RadioFractInc KeySimEvent = "COM2_RADIO_FRACT_INC"
KeyCom2RadioFractIncCarry KeySimEvent = "COM2_RADIO_FRACT_INC_CARRY"
KeyCom2RadioSet KeySimEvent = "COM2_RADIO_SET"
KeyCom2StbyRadioSet KeySimEvent = "COM2_STBY_RADIO_SET"
KeyCom2RadioSwap KeySimEvent = "COM2_RADIO_SWAP"
KeyNav1RadioFractDecCarry KeySimEvent = "NAV1_RADIO_FRACT_DEC_CARRY"
KeyNav1RadioFractIncCarry KeySimEvent = "NAV1_RADIO_FRACT_INC_CARRY"
KeyNav1StbySet KeySimEvent = "NAV1_STBY_SET"
KeyNav1RadioSwap KeySimEvent = "NAV1_RADIO_SWAP"
KeyNav2RadioFractDecCarry KeySimEvent = "NAV2_RADIO_FRACT_DEC_CARRY"
KeyNav2RadioFractIncCarry KeySimEvent = "NAV2_RADIO_FRACT_INC_CARRY"
KeyNav2StbySet KeySimEvent = "NAV2_STBY_SET"
KeyNav2RadioSwap KeySimEvent = "NAV2_RADIO_SWAP"
KeyAdf1RadioTenthsDec KeySimEvent = "ADF1_RADIO_TENTHS_DEC"
KeyAdf1RadioTenthsInc KeySimEvent = "ADF1_RADIO_TENTHS_INC"
KeyXpndr1000Dec KeySimEvent = "XPNDR_1000_DEC"
KeyXpndr100Dec KeySimEvent = "XPNDR_100_DEC"
KeyXpndr10Dec KeySimEvent = "XPNDR_10_DEC"
KeyXpndr1Dec KeySimEvent = "XPNDR_1_DEC"
KeyXpndrDecCarry KeySimEvent = "XPNDR_DEC_CARRY"
KeyXpndrIncCarry KeySimEvent = "XPNDR_INC_CARRY"
KeyAdfFractDecCarry KeySimEvent = "ADF_FRACT_DEC_CARRY"
KeyAdfFractIncCarry KeySimEvent = "ADF_FRACT_INC_CARRY"
KeyCom1TransmitSelect KeySimEvent = "COM1_TRANSMIT_SELECT"
KeyCom2TransmitSelect KeySimEvent = "COM2_TRANSMIT_SELECT"
KeyComReceiveAllToggle KeySimEvent = "COM_RECEIVE_ALL_TOGGLE"
KeyComReceiveAllSet KeySimEvent = "COM_RECEIVE_ALL_SET"
KeyMarkerSoundToggle KeySimEvent = "MARKER_SOUND_TOGGLE"
KeyAdfCompleteSet KeySimEvent = "ADF_COMPLETE_SET"
KeyAdfWholeInc KeySimEvent = "ADF1_WHOLE_INC"
KeyAdfWholeDec KeySimEvent = "ADF1_WHOLE_DEC"
KeyAdf2100Inc KeySimEvent = "ADF2_100_INC"
KeyAdf210Inc KeySimEvent = "ADF2_10_INC"
KeyAdf21Inc KeySimEvent = "ADF2_1_INC"
KeyAdf2RadioTenthsInc KeySimEvent = "ADF2_RADIO_TENTHS_INC"
KeyAdf2100Dec KeySimEvent = "ADF2_100_DEC"
KeyAdf210Dec KeySimEvent = "ADF2_10_DEC"
KeyAdf21Dec KeySimEvent = "ADF2_1_DEC"
KeyAdf2RadioTenthsDec KeySimEvent = "ADF2_RADIO_TENTHS_DEC"
KeyAdf2WholeInc KeySimEvent = "ADF2_WHOLE_INC"
KeyAdf2WholeDec KeySimEvent = "ADF2_WHOLE_DEC"
KeyAdf2FractIncCarry KeySimEvent = "ADF2_FRACT_DEC_CARRY"
KeyAdf2FractDecCarry KeySimEvent = "ADF2_FRACT_INC_CARRY"
KeyAdf2CompleteSet KeySimEvent = "ADF2_COMPLETE_SET"
KeyRadioAdf2IdentDisable KeySimEvent = "RADIO_ADF2_IDENT_DISABLE"
KeyRadioAdf2IdentEnable KeySimEvent = "RADIO_ADF2_IDENT_ENABLE"
KeyRadioAdf2IdentToggle KeySimEvent = "RADIO_ADF2_IDENT_TOGGLE"
KeyRadioAdf2IdentSet KeySimEvent = "RADIO_ADF2_IDENT_SET"
KeyFrequencySwap KeySimEvent = "FREQUENCY_SWAP"
KeyToggleGpsDrivesNav1 KeySimEvent = "TOGGLE_GPS_DRIVES_NAV1"
KeyGpsPowerButton KeySimEvent = "GPS_POWER_BUTTON"
KeyGpsNearestButton KeySimEvent = "GPS_NEAREST_BUTTON"
KeyGpsObsButton KeySimEvent = "GPS_OBS_BUTTON"
KeyGpsMsgButton KeySimEvent = "GPS_MSG_BUTTON"
KeyGpsMsgButtonDown KeySimEvent = "GPS_MSG_BUTTON_DOWN"
KeyGpsMsgButtonUp KeySimEvent = "GPS_MSG_BUTTON_UP"
KeyGpsFlightplanButton KeySimEvent = "GPS_FLIGHTPLAN_BUTTON"
KeyGpsTerrainButton KeySimEvent = "GPS_TERRAIN_BUTTON"
KeyGpsProcedureButton KeySimEvent = "GPS_PROCEDURE_BUTTON"
KeyGpsZoominButton KeySimEvent = "GPS_ZOOMIN_BUTTON"
KeyGpsZoomoutButton KeySimEvent = "GPS_ZOOMOUT_BUTTON"
KeyGpsDirecttoButton KeySimEvent = "GPS_DIRECTTO_BUTTON"
KeyGpsMenuButton KeySimEvent = "GPS_MENU_BUTTON"
KeyGpsClearButton KeySimEvent = "GPS_CLEAR_BUTTON"
KeyGpsClearAllButton KeySimEvent = "GPS_CLEAR_ALL_BUTTON"
KeyGpsClearButtonDown KeySimEvent = "GPS_CLEAR_BUTTON_DOWN"
KeyGpsClearButtonUp KeySimEvent = "GPS_CLEAR_BUTTON_UP"
KeyGpsEnterButton KeySimEvent = "GPS_ENTER_BUTTON"
KeyGpsCursorButton KeySimEvent = "GPS_CURSOR_BUTTON"
KeyGpsGroupKnobInc KeySimEvent = "GPS_GROUP_KNOB_INC"
KeyGpsGroupKnobDec KeySimEvent = "GPS_GROUP_KNOB_DEC"
KeyGpsPageKnobInc KeySimEvent = "GPS_PAGE_KNOB_INC"
KeyGpsPageKnobDec KeySimEvent = "GPS_PAGE_KNOB_DEC"
KeyEgt KeySimEvent = "EGT"
KeyEgtInc KeySimEvent = "EGT_INC"
KeyEgtDec KeySimEvent = "EGT_DEC"
KeyEgtSet KeySimEvent = "EGT_SET"
KeyBarometric KeySimEvent = "BAROMETRIC"
KeyGyroDriftInc KeySimEvent = "GYRO_DRIFT_INC"
KeyGyroDriftDec KeySimEvent = "GYRO_DRIFT_DEC"
KeyKohlsmanInc KeySimEvent = "KOHLSMAN_INC"
KeyKohlsmanDec KeySimEvent = "KOHLSMAN_DEC"
KeyKohlsmanSet KeySimEvent = "KOHLSMAN_SET"
KeyTrueAirspeedCalibrateInc KeySimEvent = "TRUE_AIRSPEED_CAL_INC"
KeyTrueAirspeedCalibrateDec KeySimEvent = "TRUE_AIRSPEED_CAL_DEC"
KeyTrueAirspeedCalSet KeySimEvent = "TRUE_AIRSPEED_CAL_SET"
KeyEgt1Inc KeySimEvent = "EGT1_INC"
KeyEgt1Dec KeySimEvent = "EGT1_DEC"
KeyEgt1Set KeySimEvent = "EGT1_SET"
KeyEgt2Inc KeySimEvent = "EGT2_INC"
KeyEgt2Dec KeySimEvent = "EGT2_DEC"
KeyEgt2Set KeySimEvent = "EGT2_SET"
KeyEgt3Inc KeySimEvent = "EGT3_INC"
KeyEgt3Dec KeySimEvent = "EGT3_DEC"
KeyEgt3Set KeySimEvent = "EGT3_SET"
KeyEgt4Inc KeySimEvent = "EGT4_INC"
KeyEgt4Dec KeySimEvent = "EGT4_DEC"
KeyEgt4Set KeySimEvent = "EGT4_SET"
KeyAttitudeBarsPositionInc KeySimEvent = "ATTITUDE_BARS_POSITION_UP"
KeyAttitudeBarsPositionDec KeySimEvent = "ATTITUDE_BARS_POSITION_DOWN"
KeyToggleAttitudeCage KeySimEvent = "ATTITUDE_CAGE_BUTTON"
KeyResetGForceIndicator KeySimEvent = "RESET_G_FORCE_INDICATOR"
KeyResetMaxRpmIndicator KeySimEvent = "RESET_MAX_RPM_INDICATOR"
KeyHeadingGyroSet KeySimEvent = "HEADING_GYRO_SET"
KeyGyroDriftSet KeySimEvent = "GYRO_DRIFT_SET"
KeyStrobesToggle KeySimEvent = "STROBES_TOGGLE"
KeyAllLightsToggle KeySimEvent = "ALL_LIGHTS_TOGGLE"
KeyPanelLightsToggle KeySimEvent = "PANEL_LIGHTS_TOGGLE"
KeyLandingLightsToggle KeySimEvent = "LANDING_LIGHTS_TOGGLE"
KeyLandingLightUp KeySimEvent = "LANDING_LIGHT_UP"
KeyLandingLightDown KeySimEvent = "LANDING_LIGHT_DOWN"
KeyLandingLightLeft KeySimEvent = "LANDING_LIGHT_LEFT"
KeyLandingLightRight KeySimEvent = "LANDING_LIGHT_RIGHT"
KeyLandingLightHome KeySimEvent = "LANDING_LIGHT_HOME"
KeyStrobesOn KeySimEvent = "STROBES_ON"
KeyStrobesOff KeySimEvent = "STROBES_OFF"
KeyStrobesSet KeySimEvent = "STROBES_SET"
KeyPanelLightsOn KeySimEvent = "PANEL_LIGHTS_ON"
KeyPanelLightsOff KeySimEvent = "PANEL_LIGHTS_OFF"
KeyPanelLightsSet KeySimEvent = "PANEL_LIGHTS_SET"
KeyLandingLightsOn KeySimEvent = "LANDING_LIGHTS_ON"
KeyLandingLightsOff KeySimEvent = "LANDING_LIGHTS_OFF"
KeyLandingLightsSet KeySimEvent = "LANDING_LIGHTS_SET"
KeyToggleBeaconLights KeySimEvent = "TOGGLE_BEACON_LIGHTS"
KeyToggleTaxiLights KeySimEvent = "TOGGLE_TAXI_LIGHTS"
KeyToggleLogoLights KeySimEvent = "TOGGLE_LOGO_LIGHTS"
KeyToggleRecognitionLights KeySimEvent = "TOGGLE_RECOGNITION_LIGHTS"
KeyToggleWingLights KeySimEvent = "TOGGLE_WING_LIGHTS"
KeyToggleNavLights KeySimEvent = "TOGGLE_NAV_LIGHTS"
KeyToggleCabinLights KeySimEvent = "TOGGLE_CABIN_LIGHTS"
KeyToggleVacuumFailure KeySimEvent = "TOGGLE_VACUUM_FAILURE"
KeyToggleElectricalFailure KeySimEvent = "TOGGLE_ELECTRICAL_FAILURE"
KeyTogglePitotBlockage KeySimEvent = "TOGGLE_PITOT_BLOCKAGE"
KeyToggleStaticPortBlockage KeySimEvent = "TOGGLE_STATIC_PORT_BLOCKAGE"
KeyToggleHydraulicFailure KeySimEvent = "TOGGLE_HYDRAULIC_FAILURE"
KeyToggleTotalBrakeFailure KeySimEvent = "TOGGLE_TOTAL_BRAKE_FAILURE"
KeyToggleLeftBrakeFailure KeySimEvent = "TOGGLE_LEFT_BRAKE_FAILURE"
KeyToggleRightBrakeFailure KeySimEvent = "TOGGLE_RIGHT_BRAKE_FAILURE"
KeyToggleEngine1Failure KeySimEvent = "TOGGLE_ENGINE1_FAILURE"
KeyToggleEngine2Failure KeySimEvent = "TOGGLE_ENGINE2_FAILURE"
KeyToggleEngine3Failure KeySimEvent = "TOGGLE_ENGINE3_FAILURE"
KeyToggleEngine4Failure KeySimEvent = "TOGGLE_ENGINE4_FAILURE"
KeySmokeToggle KeySimEvent = "SMOKE_TOGGLE"
KeyGearToggle KeySimEvent = "GEAR_TOGGLE"
KeyBrakes KeySimEvent = "BRAKES"
KeyGearSet KeySimEvent = "GEAR_SET"
KeyBrakesLeft KeySimEvent = "BRAKES_LEFT"
KeyBrakesRight KeySimEvent = "BRAKES_RIGHT"
KeyParkingBrakes KeySimEvent = "PARKING_BRAKES"
KeyGearPump KeySimEvent = "GEAR_PUMP"
KeyPitotHeatToggle KeySimEvent = "PITOT_HEAT_TOGGLE"
KeySmokeOn KeySimEvent = "SMOKE_ON"
KeySmokeOff KeySimEvent = "SMOKE_OFF"
KeySmokeSet KeySimEvent = "SMOKE_SET"
KeyPitotHeatOn KeySimEvent = "PITOT_HEAT_ON"
KeyPitotHeatOff KeySimEvent = "PITOT_HEAT_OFF"
KeyPitotHeatSet KeySimEvent = "PITOT_HEAT_SET"
KeyGearUp KeySimEvent = "GEAR_UP"
KeyGearDown KeySimEvent = "GEAR_DOWN"
KeyToggleMasterBattery KeySimEvent = "TOGGLE_MASTER_BATTERY"
KeyToggleMasterAlternator KeySimEvent = "TOGGLE_MASTER_ALTERNATOR"
KeyToggleElectricVacuumPump KeySimEvent = "TOGGLE_ELECTRIC_VACUUM_PUMP"
KeyToggleAlternateStatic KeySimEvent = "TOGGLE_ALTERNATE_STATIC"
KeyDecisionHeightDec KeySimEvent = "DECREASE_DECISION_HEIGHT"
KeyDecisionHeightInc KeySimEvent = "INCREASE_DECISION_HEIGHT"
KeyToggleStructuralDeice KeySimEvent = "TOGGLE_STRUCTURAL_DEICE"
KeyTogglePropellerDeice KeySimEvent = "TOGGLE_PROPELLER_DEICE"
KeyToggleAlternator1 KeySimEvent = "TOGGLE_ALTERNATOR1"
KeyToggleAlternator2 KeySimEvent = "TOGGLE_ALTERNATOR2"
KeyToggleAlternator3 KeySimEvent = "TOGGLE_ALTERNATOR3"
KeyToggleAlternator4 KeySimEvent = "TOGGLE_ALTERNATOR4"
KeyToggleMasterBatteryAlternator KeySimEvent = "TOGGLE_MASTER_BATTERY_ALTERNATOR"
KeyAxisLeftBrakeSet KeySimEvent = "AXIS_LEFT_BRAKE_SET"
KeyAxisRightBrakeSet KeySimEvent = "AXIS_RIGHT_BRAKE_SET"
KeyToggleAircraftExit KeySimEvent = "TOGGLE_AIRCRAFT_EXIT"
KeyToggleWingFold KeySimEvent = "TOGGLE_WING_FOLD"
KeySetWingFold KeySimEvent = "SET_WING_FOLD"
KeyToggleTailHookHandle KeySimEvent = "TOGGLE_TAIL_HOOK_HANDLE"
KeySetTailHookHandle KeySimEvent = "SET_TAIL_HOOK_HANDLE"
KeyToggleWaterRudder KeySimEvent = "TOGGLE_WATER_RUDDER"
KeyPushbackSet KeySimEvent = "TOGGLE_PUSHBACK"
KeyTugHeading KeySimEvent = "KeyTugHeading"
KeyTugSpeed KeySimEvent = "KeyTugSpeed"
KeyTugDisable KeySimEvent = "TUG_DISABLE"
KeyToggleMasterIgnitionSwitch KeySimEvent = "TOGGLE_MASTER_IGNITION_SWITCH"
KeyToggleTailwheelLock KeySimEvent = "TOGGLE_TAILWHEEL_LOCK"
KeyAddFuelQuantity KeySimEvent = "ADD_FUEL_QUANTITY"
KeyRotorBrake KeySimEvent = "ROTOR_BRAKE"
KeyRotorClutchSwitchToggle KeySimEvent = "ROTOR_CLUTCH_SWITCH_TOGGLE"
KeyRotorClutchSwitchSet KeySimEvent = "ROTOR_CLUTCH_SWITCH_SET"
KeyRotorGovSwitchToggle KeySimEvent = "ROTOR_GOV_SWITCH_TOGGLE"
KeyRotorGovSwitchSet KeySimEvent = "ROTOR_GOV_SWITCH_SET"
KeyRotorLateralTrimInc KeySimEvent = "ROTOR_LATERAL_TRIM_INC"
KeyRotorLateralTrimDec KeySimEvent = "ROTOR_LATERAL_TRIM_DEC"
KeyRotorLateralTrimSet KeySimEvent = "ROTOR_LATERAL_TRIM_SET"
KeySlewToggle KeySimEvent = "SLEW_TOGGLE"
KeySlewOff KeySimEvent = "SLEW_OFF"
KeySlewOn KeySimEvent = "SLEW_ON"
KeySlewSet KeySimEvent = "SLEW_SET"
KeySlewReset KeySimEvent = "SLEW_RESET"
KeySlewAltitUpFast KeySimEvent = "SLEW_ALTIT_UP_FAST"
KeySlewAltitUpSlow KeySimEvent = "SLEW_ALTIT_UP_SLOW"
KeySlewAltitFreeze KeySimEvent = "SLEW_ALTIT_FREEZE"
KeySlewAltitDnSlow KeySimEvent = "SLEW_ALTIT_DN_SLOW"
KeySlewAltitDnFast KeySimEvent = "SLEW_ALTIT_DN_FAST"
KeySlewAltitPlus KeySimEvent = "SLEW_ALTIT_PLUS"
KeySlewAltitMinus KeySimEvent = "SLEW_ALTIT_MINUS"
KeySlewPitchDnFast KeySimEvent = "SLEW_PITCH_DN_FAST"
KeySlewPitchDnSlow KeySimEvent = "SLEW_PITCH_DN_SLOW"
KeySlewPitchFreeze KeySimEvent = "SLEW_PITCH_FREEZE"
KeySlewPitchUpSlow KeySimEvent = "SLEW_PITCH_UP_SLOW"
KeySlewPitchUpFast KeySimEvent = "SLEW_PITCH_UP_FAST"
KeySlewPitchPlus KeySimEvent = "SLEW_PITCH_PLUS"
KeySlewPitchMinus KeySimEvent = "SLEW_PITCH_MINUS"
KeySlewBankMinus KeySimEvent = "SLEW_BANK_MINUS"
KeySlewAheadPlus KeySimEvent = "SLEW_AHEAD_PLUS"
KeySlewBankPlus KeySimEvent = "SLEW_BANK_PLUS"
KeySlewLeft KeySimEvent = "SLEW_LEFT"
KeySlewFreeze KeySimEvent = "SLEW_FREEZE"
KeySlewRight KeySimEvent = "SLEW_RIGHT"
KeySlewHeadingMinus KeySimEvent = "SLEW_HEADING_MINUS"
KeySlewAheadMinus KeySimEvent = "SLEW_AHEAD_MINUS"
KeySlewHeadingPlus KeySimEvent = "SLEW_HEADING_PLUS"
KeyAxisSlewAheadSet KeySimEvent = "AXIS_SLEW_AHEAD_SET"
KeyAxisSlewSidewaysSet KeySimEvent = "AXIS_SLEW_SIDEWAYS_SET"
KeyAxisSlewHeadingSet KeySimEvent = "AXIS_SLEW_HEADING_SET"
KeyAxisSlewAltSet KeySimEvent = "AXIS_SLEW_ALT_SET"
KeyAxisSlewBankSet KeySimEvent = "AXIS_SLEW_BANK_SET"
KeyAxisSlewPitchSet KeySimEvent = "AXIS_SLEW_PITCH_SET"
KeyViewMode KeySimEvent = "VIEW_MODE"
KeyViewWindowToFront KeySimEvent = "VIEW_WINDOW_TO_FRONT"
KeyViewReset KeySimEvent = "VIEW_RESET"
KeyViewAlwaysPanUp KeySimEvent = "VIEW_ALWAYS_PAN_UP"
KeyViewAlwaysPanDown KeySimEvent = "VIEW_ALWAYS_PAN_DOWN"
KeyNextSubView KeySimEvent = "NEXT_SUB_VIEW"
KeyPrevSubView KeySimEvent = "PREV_SUB_VIEW"
KeyViewTrackPanToggle KeySimEvent = "VIEW_TRACK_PAN_TOGGLE"
KeyViewPreviousToggle KeySimEvent = "VIEW_PREVIOUS_TOGGLE"
KeyViewCameraSelectStarting KeySimEvent = "VIEW_CAMERA_SELECT_START"
KeyPanelHudNext KeySimEvent = "PANEL_HUD_NEXT"
KeyPanelHudPrevious KeySimEvent = "PANEL_HUD_PREVIOUS"
KeyZoomIn KeySimEvent = "ZOOM_IN"
KeyZoomOut KeySimEvent = "ZOOM_OUT"
KeyMapZoomFineIn KeySimEvent = "MAP_ZOOM_FINE_IN"
KeyPanLeft KeySimEvent = "PAN_LEFT"
KeyPanRight KeySimEvent = "PAN_RIGHT"
KeyMapZoomFineOut KeySimEvent = "MAP_ZOOM_FINE_OUT"
KeyViewForward KeySimEvent = "VIEW_FORWARD"
KeyViewForwardRight KeySimEvent = "VIEW_FORWARD_RIGHT"
KeyViewRight KeySimEvent = "VIEW_RIGHT"
KeyViewRearRight KeySimEvent = "VIEW_REAR_RIGHT"
KeyViewRear KeySimEvent = "VIEW_REAR"
KeyViewRearLeft KeySimEvent = "VIEW_REAR_LEFT"
KeyViewLeft KeySimEvent = "VIEW_LEFT"
KeyViewForwardLeft KeySimEvent = "VIEW_FORWARD_LEFT"
KeyViewDown KeySimEvent = "VIEW_DOWN"
KeyZoomMinus KeySimEvent = "ZOOM_MINUS"
KeyZoomPlus KeySimEvent = "ZOOM_PLUS"
KeyPanUp KeySimEvent = "PAN_UP"
KeyPanDown KeySimEvent = "PAN_DOWN"
KeyViewModeRev KeySimEvent = "VIEW_MODE_REV"
KeyZoomInFine KeySimEvent = "ZOOM_IN_FINE"
KeyZoomOutFine KeySimEvent = "ZOOM_OUT_FINE"
KeyCloseView KeySimEvent = "CLOSE_VIEW"
KeyNewView KeySimEvent = "NEW_VIEW"
KeyNextView KeySimEvent = "NEXT_VIEW"
KeyPrevView KeySimEvent = "PREV_VIEW"
KeyPanLeftUp KeySimEvent = "PAN_LEFT_UP"
KeyPanLeftDown KeySimEvent = "PAN_LEFT_DOWN"
KeyPanRightUp KeySimEvent = "PAN_RIGHT_UP"
KeyPanRightDown KeySimEvent = "PAN_RIGHT_DOWN"
KeyPanTiltLeft KeySimEvent = "PAN_TILT_LEFT"
KeyPanTiltRight KeySimEvent = "PAN_TILT_RIGHT"
KeyPanReset KeySimEvent = "PAN_RESET"
KeyViewForwardUp KeySimEvent = "VIEW_FORWARD_UP"
KeyViewForwardRightUp KeySimEvent = "VIEW_FORWARD_RIGHT_UP"
KeyViewRightUp KeySimEvent = "VIEW_RIGHT_UP"
KeyViewRearRightUp KeySimEvent = "VIEW_REAR_RIGHT_UP"
KeyViewRearUp KeySimEvent = "VIEW_REAR_UP"
KeyViewRearLeftUp KeySimEvent = "VIEW_REAR_LEFT_UP"
KeyViewLeftUp KeySimEvent = "VIEW_LEFT_UP"
KeyViewForwardLeftUp KeySimEvent = "VIEW_FORWARD_LEFT_UP"
KeyViewUp KeySimEvent = "VIEW_UP"
KeyPanResetCockpit KeySimEvent = "PAN_RESET_COCKPIT"
KeyChaseViewNext KeySimEvent = "KeyChaseViewNext"
KeyChaseViewPrev KeySimEvent = "KeyChaseViewPrev"
KeyChaseViewToggle KeySimEvent = "CHASE_VIEW_TOGGLE"
KeyEyepointUp KeySimEvent = "EYEPOINT_UP"
KeyEyepointDown KeySimEvent = "EYEPOINT_DOWN"
KeyEyepointRight KeySimEvent = "EYEPOINT_RIGHT"
KeyEyepointLeft KeySimEvent = "EYEPOINT_LEFT"
KeyEyepointForward KeySimEvent = "EYEPOINT_FORWARD"
KeyEyepointBack KeySimEvent = "EYEPOINT_BACK"
KeyEyepointReset KeySimEvent = "EYEPOINT_RESET"
KeyNewMap KeySimEvent = "NEW_MAP"
KeyPauseToggle KeySimEvent = "PAUSE_TOGGLE"
KeyPauseOn KeySimEvent = "PAUSE_ON"
KeyPauseOff KeySimEvent = "PAUSE_OFF"
KeyPauseSet KeySimEvent = "PAUSE_SET"
KeyDemoStop KeySimEvent = "DEMO_STOP"
KeySelect1 KeySimEvent = "SELECT_1"
KeySelect2 KeySimEvent = "SELECT_2"
KeySelect3 KeySimEvent = "SELECT_3"
KeySelect4 KeySimEvent = "SELECT_4"
KeyMinus KeySimEvent = "MINUS"
KeyPlus KeySimEvent = "PLUS"
KeyZoom1x KeySimEvent = "ZOOM_1X"
KeySoundToggle KeySimEvent = "SOUND_TOGGLE"
KeySimRate KeySimEvent = "SIM_RATE"
KeyJoystickCalibrate KeySimEvent = "JOYSTICK_CALIBRATE"
KeySituationSave KeySimEvent = "SITUATION_SAVE"
KeySituationReset KeySimEvent = "SITUATION_RESET"
KeySoundSet KeySimEvent = "SOUND_SET"
KeyExit KeySimEvent = "EXIT"
KeyAbort KeySimEvent = "ABORT"
KeyReadoutsSlew KeySimEvent = "READOUTS_SLEW"
KeyReadoutsFlight KeySimEvent = "READOUTS_FLIGHT"
KeyMinusShift KeySimEvent = "MINUS_SHIFT"
KeyPlusShift KeySimEvent = "PLUS_SHIFT"
KeySimRateIncr KeySimEvent = "SIM_RATE_INCR"
KeySimRateDecr KeySimEvent = "SIM_RATE_DECR"
KeyKneeboard KeySimEvent = "KNEEBOARD_VIEW"
KeyPanel1 KeySimEvent = "PANEL_1"
KeyPanel2 KeySimEvent = "PANEL_2"
KeyPanel3 KeySimEvent = "PANEL_3"
KeyPanel4 KeySimEvent = "PANEL_4"
KeyPanel5 KeySimEvent = "PANEL_5"
KeyPanel6 KeySimEvent = "PANEL_6"
KeyPanel7 KeySimEvent = "PANEL_7"
KeyPanel8 KeySimEvent = "PANEL_8"
KeyPanel9 KeySimEvent = "PANEL_9"
KeySoundOn KeySimEvent = "SOUND_ON"
KeySoundOff KeySimEvent = "SOUND_OFF"
KeyInvokeHelp KeySimEvent = "INVOKE_HELP"
KeyToggleAircraftLabels KeySimEvent = "TOGGLE_AIRCRAFT_LABELS"
KeyFlightMap KeySimEvent = "FLIGHT_MAP"
KeyReloadPanels KeySimEvent = "RELOAD_PANELS"
KeyPanelIDToggle KeySimEvent = "PANEL_ID_TOGGLE"
KeyPanelIDOpen KeySimEvent = "PANEL_ID_OPEN"
KeyPanelIDClose KeySimEvent = "PANEL_ID_CLOSE"
KeyControlReloadUserAircraft KeySimEvent = "RELOAD_USER_AIRCRAFT"
KeySimReset KeySimEvent = "SIM_RESET"
KeyVirtualCopilotToggle KeySimEvent = "VIRTUAL_COPILOT_TOGGLE"
KeyVirtualCopilotSet KeySimEvent = "VIRTUAL_COPILOT_SET"
KeyVirtualCopilotAction KeySimEvent = "VIRTUAL_COPILOT_ACTION"
KeyRefreshScenery KeySimEvent = "REFRESH_SCENERY"
KeyClockHoursDec KeySimEvent = "CLOCK_HOURS_DEC"
KeyClockHoursInc KeySimEvent = "CLOCK_HOURS_INC"
KeyClockMinutesDec KeySimEvent = "CLOCK_MINUTES_DEC"
KeyClockMinutesInc KeySimEvent = "CLOCK_MINUTES_INC"
KeyClockSecondsZero KeySimEvent = "CLOCK_SECONDS_ZERO"
KeyClockHoursSet KeySimEvent = "CLOCK_HOURS_SET"
KeyClockMinutesSet KeySimEvent = "CLOCK_MINUTES_SET"
KeyZuluHoursSet KeySimEvent = "ZULU_HOURS_SET"
KeyZuluMinutesSet KeySimEvent = "ZULU_MINUTES_SET"
KeyZuluDaySet KeySimEvent = "ZULU_DAY_SET"
KeyZuluYearSet KeySimEvent = "ZULU_YEAR_SET"
KeyAtc KeySimEvent = "ATC"
KeyAtcMenu1 KeySimEvent = "ATC_MENU_1"
KeyAtcMenu2 KeySimEvent = "ATC_MENU_2"
KeyAtcMenu3 KeySimEvent = "ATC_MENU_3"
KeyAtcMenu4 KeySimEvent = "ATC_MENU_4"
KeyAtcMenu5 KeySimEvent = "ATC_MENU_5"
KeyAtcMenu6 KeySimEvent = "ATC_MENU_6"
KeyAtcMenu7 KeySimEvent = "ATC_MENU_7"
KeyAtcMenu8 KeySimEvent = "ATC_MENU_8"
KeyAtcMenu9 KeySimEvent = "ATC_MENU_9"
KeyAtcMenu0 KeySimEvent = "ATC_MENU_0"
KeyMultiplayerTransferControl KeySimEvent = "MP_TRANSFER_CONTROL"
KeyMultiplayerPlayerCycle KeySimEvent = "MP_PLAYER_CYCLE"
KeyMultiplayerPlayerFollow KeySimEvent = "MP_PLAYER_FOLLOW"
KeyMultiplayerChat KeySimEvent = "MP_CHAT"
KeyMultiplayerActivateChat KeySimEvent = "MP_ACTIVATE_CHAT"
KeyMultiplayerVoiceCaptureStart KeySimEvent = "MP_VOICE_CAPTURE_START"
KeyMultiplayerVoiceCaptureStop KeySimEvent = "MP_VOICE_CAPTURE_STOP"
KeyMultiplayerBroadcastVoiceCaptureStart KeySimEvent = "MP_BROADCAST_VOICE_CAPTURE_START"
KeyMultiplayerBroadcastVoiceCaptureStop KeySimEvent = "MP_BROADCAST_VOICE_CAPTURE_STOP"
)
```
Dcumentation based on <http://www.prepar3d.com/SDKv3/LearningCenter/utilities/variables/event_ids.html>
```
type SIMCONNECT_DATA_FACILITY_NDB struct {
SIMCONNECT_DATA_FACILITY_WAYPOINT
}
```
```
type SIMCONNECT_DATA_FACILITY_WAYPOINT struct {
SIMCONNECT_DATA_FACILITY_AIRPORT
}
```
```
type SIMCONNECT_DATA_MARKERSTATE struct {
}
```
```
type SIMCONNECT_DATA_RACE_RESULT struct {
MissionGUID *GUID
}
```
```
type SIMCONNECT_RECV struct {
}
```
```
type SIMCONNECT_RECV_AIRPORT_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
}
```
```
type SIMCONNECT_RECV_ASSIGNED_OBJECT_ID struct {
SIMCONNECT_RECV
}
```
when dwID == SIMCONNECT\_RECV\_ID\_ASSIGNED\_OBJECT\_ID
```
type SIMCONNECT_RECV_CLIENT_DATA struct {
SIMCONNECT_RECV_SIMOBJECT_DATA
}
```
```
type SIMCONNECT_RECV_CLOUD_STATE struct {
SIMCONNECT_RECV
}
```
when dwID == SIMCONNECT\_RECV\_ID\_CLOUD\_STATE
```
type SIMCONNECT_RECV_CUSTOM_ACTION struct {
SIMCONNECT_RECV_EVENT
}
```
```
type SIMCONNECT_RECV_EVENT struct {
SIMCONNECT_RECV
}
```
```
type SIMCONNECT_RECV_EVENT_FILENAME struct {
SIMCONNECT_RECV_EVENT
}
```
```
type SIMCONNECT_RECV_EVENT_FRAME struct {
SIMCONNECT_RECV_EVENT
}
```
```
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_CLIENT_STARTED struct {
SIMCONNECT_RECV_EVENT
}
```
```
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SERVER_STARTED struct {
SIMCONNECT_RECV_EVENT
}
```
```
type SIMCONNECT_RECV_EVENT_MULTIPLAYER_SESSION_ENDED struct {
SIMCONNECT_RECV_EVENT
}
```
```
type SIMCONNECT_RECV_EVENT_OBJECT_ADDREMOVE struct {
SIMCONNECT_RECV_EVENT
}
```
```
type SIMCONNECT_RECV_EVENT_RACE_END struct {
SIMCONNECT_RECV_EVENT
RacerData SIMCONNECT_DATA_RACE_RESULT
}
```
```
type SIMCONNECT_RECV_EVENT_RACE_LAP struct {
SIMCONNECT_RECV_EVENT
RacerData SIMCONNECT_DATA_RACE_RESULT
}
```
```
type SIMCONNECT_RECV_EVENT_WEATHER_MODE struct {
SIMCONNECT_RECV_EVENT
}
```
```
type SIMCONNECT_RECV_EXCEPTION struct {
SIMCONNECT_RECV
}
```
```
type SIMCONNECT_RECV_FACILITIES_LIST struct {
SIMCONNECT_RECV
}
```
```
type SIMCONNECT_RECV_NDB_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
}
```
```
type SIMCONNECT_RECV_OPEN struct {
SIMCONNECT_RECV
}
```
```
type SIMCONNECT_RECV_QUIT struct {
SIMCONNECT_RECV
}
```
```
type SIMCONNECT_RECV_RESERVED_KEY struct {
SIMCONNECT_RECV
}
```
when dwID == SIMCONNECT\_RECV\_ID\_RESERVED\_KEY
```
type SIMCONNECT_RECV_SIMOBJECT_DATA struct {
SIMCONNECT_RECV
}
```
```
type SIMCONNECT_RECV_SIMOBJECT_DATA_BYTYPE struct {
SIMCONNECT_RECV_SIMOBJECT_DATA
}
```
```
type SIMCONNECT_RECV_SYSTEM_STATE struct {
SIMCONNECT_RECV
}
```
when dwID == SIMCONNECT\_RECV\_ID\_SYSTEM\_STATE
```
type SIMCONNECT_RECV_VOR_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
}
```
```
type SIMCONNECT_RECV_WAYPOINT_LIST struct {
SIMCONNECT_RECV_FACILITIES_LIST
}
```
```
type SIMCONNECT_RECV_WEATHER_OBSERVATION struct {
SIMCONNECT_RECV
}
```
```
type SimConnect struct {
}
```
SimConnect golang interface
```
func NewSimConnect() (*SimConnect, error)
```
NewSimConnect get instance of SimConnect
AICreateEnrouteATCAircraft SimConnect\_AICreateEnrouteATCAircraft(HANDLE hSimConnect, const char \* szContainerTitle, const char \* szTailNumber, int iFlightNumber, const char \* szFlightPlanPath, double dFlightPlanPosition, BOOL bTouchAndGo, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
AICreateNonATCAircraft SimConnect\_AICreateNonATCAircraft(HANDLE hSimConnect, const char \* szContainerTitle, const char \* szTailNumber, SIMCONNECT\_DATA\_INITPOSITION InitPos, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
AICreateParkedATCAircraft SimConnect\_AICreateParkedATCAircraft(HANDLE hSimConnect, const char \* szContainerTitle, const char \* szTailNumber, const char \* szAirportID, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
AICreateSimulatedObject SimConnect\_AICreateSimulatedObject(HANDLE hSimConnect, const char \* szContainerTitle, SIMCONNECT\_DATA\_INITPOSITION InitPos, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
AIReleaseControl SimConnect\_AIReleaseControl(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
AIRemoveObject SimConnect\_AIRemoveObject(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
AISetAircraftFlightPlan SimConnect\_AISetAircraftFlightPlan(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID, const char \* szFlightPlanPath, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
AddClientEventToNotificationGroup SimConnect\_AddClientEventToNotificationGroup(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, BOOL bMaskable = FALSE);
AddToClientDataDefinition SimConnect\_AddToClientDataDefinition(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_DEFINITION\_ID DefineID, DWORD dwOffset, DWORD dwSizeOrType, float fEpsilon = 0, DWORD DatumID = SIMCONNECT\_UNUSED);
AddToDataDefinition SimConnect\_AddToDataDefinition(HANDLE hSimConnect, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID, const char \* DatumName, const char \* UnitsName, SIMCONNECT\_DATATYPE DatumType = SIMCONNECT\_DATATYPE\_FLOAT64, float fEpsilon = 0, DWORD DatumID = SIMCONNECT\_UNUSED);
CameraSetRelative6DOF SimConnect\_CameraSetRelative6DOF(HANDLE hSimConnect, float fDeltaX, float fDeltaY, float fDeltaZ, float fPitchDeg, float fBankDeg, float fHeadingDeg);
ClearClientDataDefinition SimConnect\_ClearClientDataDefinition(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_DEFINITION\_ID DefineID);
ClearDataDefinition SimConnect\_ClearDataDefinition(HANDLE hSimConnect, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID);
ClearInputGroup SimConnect\_ClearInputGroup(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID);
ClearNotificationGroup SimConnect\_ClearNotificationGroup(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID);
Close SimConnect\_Close(HANDLE hSimConnect);
```
func (sc *SimConnect) CompleteCustomMissionAction(guidInstanceID GUID) (error, uint32)
```
CompleteCustomMissionAction SimConnect\_CompleteCustomMissionAction(HANDLE hSimConnect, const GUID guidInstanceId);
CreateClientData SimConnect\_CreateClientData(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_ID ClientDataID, DWORD dwSize, SIMCONNECT\_CREATE\_CLIENT\_DATA\_FLAG Flags);
```
func (sc *SimConnect) ExecuteMissionAction(guidInstanceID GUID) (error, uint32)
```
ExecuteMissionAction SimConnect\_ExecuteMissionAction(HANDLE hSimConnect, const GUID guidInstanceId);
FlightLoad SimConnect\_FlightLoad(HANDLE hSimConnect, const char \* szFileName);
FlightPlanLoad SimConnect\_FlightPlanLoad(HANDLE hSimConnect, const char \* szFileName);
FlightSave SimConnect\_FlightSave(HANDLE hSimConnect, const char \* szFileName, const char \* szTitle, const char \* szDescription, DWORD Flags);
GetLastSentPacketID SimConnect\_GetLastSentPacketID(HANDLE hSimConnect, DWORD \* pdwError);
GetNextDispatch SimConnect\_GetNextDispatch(HANDLE hSimConnect, SIMCONNECT\_RECV \*\* ppData, DWORD \* pcbData);
InsertString SimConnect\_InsertString(char \* pDest, DWORD cbDest, void \*\* ppEnd, DWORD \* pcbStringV, const char \* pSource);
MapClientDataNameToID SimConnect\_MapClientDataNameToID(HANDLE hSimConnect, const char \* szClientDataName, SIMCONNECT\_CLIENT\_DATA\_ID ClientDataID);
MapClientEventToSimEvent SimConnect\_MapClientEventToSimEvent(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, const char \* EventName = "")
MapInputEventToClientEvent SimConnect\_MapInputEventToClientEvent(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID, const char \* szInputDefinition, SIMCONNECT\_CLIENT\_EVENT\_ID DownEventID, DWORD DownValue = 0, SIMCONNECT\_CLIENT\_EVENT\_ID UpEventID = (SIMCONNECT\_CLIENT\_EVENT\_ID)SIMCONNECT\_UNUSED, DWORD UpValue = 0, BOOL bMaskable = FALSE);
MenuAddItem SimConnect\_MenuAddItem(HANDLE hSimConnect, const char \* szMenuItem, SIMCONNECT\_CLIENT\_EVENT\_ID MenuEventID, DWORD dwData);
MenuAddSubItem SimConnect\_MenuAddSubItem(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID MenuEventID, const char \* szMenuItem, SIMCONNECT\_CLIENT\_EVENT\_ID SubMenuEventID, DWORD dwData);
MenuDeleteItem SimConnect\_MenuDeleteItem(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID MenuEventID);
MenuDeleteSubItem SimConnect\_MenuDeleteSubItem(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID MenuEventID, const SIMCONNECT\_CLIENT\_EVENT\_ID SubMenuEventID);
Open SimConnect\_Open(HANDLE \* phSimConnect, LPCSTR szName, HWND hWnd, DWORD UserEventWin32, HANDLE hEventHandle, DWORD ConfigIndex);
RemoveClientEvent SimConnect\_RemoveClientEvent(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, SIMCONNECT\_CLIENT\_EVENT\_ID EventID);
RemoveInputEvent SimConnect\_RemoveInputEvent(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID, const char \* szInputDefinition);
RequestClientData SimConnect\_RequestClientData(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_ID ClientDataID, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, SIMCONNECT\_CLIENT\_DATA\_DEFINITION\_ID DefineID, SIMCONNECT\_CLIENT\_DATA\_PERIOD Period = SIMCONNECT\_CLIENT\_DATA\_PERIOD\_ONCE, SIMCONNECT\_CLIENT\_DATA\_REQUEST\_FLAG Flags = 0, DWORD origin = 0, DWORD interval = 0, DWORD limit = 0);
RequestDataOnSimObject SimConnect\_RequestDataOnSimObject(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_PERIOD Period, SIMCONNECT\_DATA\_REQUEST\_FLAG Flags = 0, DWORD origin = 0, DWORD interval = 0, DWORD limit = 0);
RequestDataOnSimObjectType SimConnect\_RequestDataOnSimObjectType(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID, DWORD dwRadiusMeters, SIMCONNECT\_SIMOBJECT\_TYPE type);
RequestFacilitiesList SimConnect\_RequestFacilitiesList(HANDLE hSimConnect, SIMCONNECT\_FACILITY\_LIST\_TYPE type, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
RequestNotificationGroup SimConnect\_RequestNotificationGroup(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, DWORD dwReserved = 0, DWORD Flags = 0);
RequestReservedKey SimConnect\_RequestReservedKey(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, const char \* szKeyChoice1 = "", const char \* szKeyChoice2 = "", const char \* szKeyChoice3 = "");
RequestResponseTimes SimConnect\_RequestResponseTimes(HANDLE hSimConnect, DWORD nCount, float \* fElapsedSeconds);
RequestSystemState SimConnect\_RequestSystemState(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, const char \* szState);
RetrieveString SimConnect\_RetrieveString(SIMCONNECT\_RECV \* pData, DWORD cbData, void \* pStringV, char \*\* pszString, DWORD \* pcbString);
SetClientData SimConnect\_SetClientData(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_DATA\_ID ClientDataID, SIMCONNECT\_CLIENT\_DATA\_DEFINITION\_ID DefineID, SIMCONNECT\_CLIENT\_DATA\_SET\_FLAG Flags, DWORD dwReserved, DWORD cbUnitSize, void \* pDataSet);
SetDataOnSimObject SimConnect\_SetDataOnSimObject(HANDLE hSimConnect, SIMCONNECT\_DATA\_DEFINITION\_ID DefineID, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_DATA\_SET\_FLAG Flags, DWORD ArrayCount, DWORD cbUnitSize, void \* pDataSet);
SetInputGroupPriority SimConnect\_SetInputGroupPriority(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID, DWORD uPriority);
SetInputGroupState SimConnect\_SetInputGroupState(HANDLE hSimConnect, SIMCONNECT\_INPUT\_GROUP\_ID GroupID, DWORD dwState);
SetNotificationGroupPriority SimConnect\_SetNotificationGroupPriority(HANDLE hSimConnect, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, DWORD uPriority);
SetSystemEventState SimConnect\_SetSystemEventState(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, SIMCONNECT\_STATE dwState);
SetSystemState SimConnect\_SetSystemState(HANDLE hSimConnect, const char \* szState, DWORD dwInteger, float fFloat, const char \* szString);
SubscribeToFacilities SimConnect\_SubscribeToFacilities(HANDLE hSimConnect, SIMCONNECT\_FACILITY\_LIST\_TYPE type, SIMCONNECT\_DATA\_REQUEST\_ID RequestID);
SubscribeToSystemEvent SimConnect\_SubscribeToSystemEvent(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, const char \* SystemEventName);
Text SimConnect\_Text(HANDLE hSimConnect, SIMCONNECT\_TEXT\_TYPE type, float fTimeSeconds, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, DWORD cbUnitSize, void \* pDataSet);
TransmitClientEvent SimConnect\_TransmitClientEvent(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID, SIMCONNECT\_CLIENT\_EVENT\_ID EventID, DWORD dwData, SIMCONNECT\_NOTIFICATION\_GROUP\_ID GroupID, SIMCONNECT\_EVENT\_FLAG Flags);
UnsubscribeFromSystemEvent SimConnect\_UnsubscribeFromSystemEvent(HANDLE hSimConnect, SIMCONNECT\_CLIENT\_EVENT\_ID EventID);
UnsubscribeToFacilities SimConnect\_UnsubscribeToFacilities(HANDLE hSimConnect, SIMCONNECT\_FACILITY\_LIST\_TYPE type);
WeatherCreateStation SimConnect\_WeatherCreateStation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, const char \* szICAO, const char \* szName, float lat, float lon, float alt);
```
func (sc *SimConnect) WeatherCreateThermal(RequestID uint32, lat float32, lon float32, alt float32, radius float32, height float32, coreRate float32, coreTurbulence float32, sinkRate float32, sinkTurbulence float32, coreSize float32, coreTransitionSize float32, sinkLayerSize float32, sinkTransitionSize float32) (error, uint32)
```
WeatherCreateThermal SimConnect\_WeatherCreateThermal(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, float lat, float lon, float alt, float radius, float height, float coreRate = 3.0f, float coreTurbulence = 0.05f, float sinkRate = 3.0f, float sinkTurbulence = 0.2f, float coreSize = 0.4f, float coreTransitionSize = 0.1f, float sinkLayerSize = 0.4f, float sinkTransitionSize = 0.1f);
WeatherRemoveStation SimConnect\_WeatherRemoveStation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, const char \* szICAO);
WeatherRemoveThermal SimConnect\_WeatherRemoveThermal(HANDLE hSimConnect, SIMCONNECT\_OBJECT\_ID ObjectID);
WeatherRequestCloudState SimConnect\_WeatherRequestCloudState(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, float minLat, float minLon, float minAlt, float maxLat, float maxLon, float maxAlt, DWORD dwFlags = 0);
WeatherRequestInterpolatedObservation SimConnect\_WeatherRequestInterpolatedObservation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, float lat, float lon, float alt);
WeatherRequestObservationAtNearestStation SimConnect\_WeatherRequestObservationAtNearestStation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, float lat, float lon);
WeatherRequestObservationAtStation SimConnect\_WeatherRequestObservationAtStation(HANDLE hSimConnect, SIMCONNECT\_DATA\_REQUEST\_ID RequestID, const char \* szICAO);
WeatherSetDynamicUpdateRate SimConnect\_WeatherSetDynamicUpdateRate(HANDLE hSimConnect, DWORD dwRate);
WeatherSetModeCustom SimConnect\_WeatherSetModeCustom(HANDLE hSimConnect);
WeatherSetModeGlobal SimConnect\_WeatherSetModeGlobal(HANDLE hSimConnect);
WeatherSetModeServer SimConnect\_WeatherSetModeServer(HANDLE hSimConnect, DWORD dwPort, DWORD dwSeconds);
WeatherSetModeTheme SimConnect\_WeatherSetModeTheme(HANDLE hSimConnect, const char \* szThemeName);
WeatherSetObservation SimConnect\_WeatherSetObservation(HANDLE hSimConnect, DWORD Seconds, const char \* szMETAR);
```
const (
SIMCONNECT_STATE_OFF SimConnectStat = iota
SIMCONNECT_STATE_ON
)
```
```
type SimEvent struct {
Mapping KeySimEvent
Value int
}
```
SimEvent Use for generate action in the simulator
Run return chan bool when receive the event is finish
```
func (s SimEvent) RunWithValue(value int) <-chan int32
```
RunWithValue return chan bool when receive the event is finish
SimVar is usued for all SimVar describtion
```
func SimVarAbsoluteTime(args ...interface{}) SimVar
```
SimVarAbsoluteTime Simvar args contain optional index and/or unit
#### func [SimVarAccelerationBodyX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3516) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyX "Go to SimVarAccelerationBodyX")
```
func SimVarAccelerationBodyX(args ...interface{}) SimVar
```
SimVarAccelerationBodyX Simvar args contain optional index and/or unit
#### func [SimVarAccelerationBodyY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3528) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyY "Go to SimVarAccelerationBodyY")
```
func SimVarAccelerationBodyY(args ...interface{}) SimVar
```
SimVarAccelerationBodyY Simvar args contain optional index and/or unit
#### func [SimVarAccelerationBodyZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3540) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAccelerationBodyZ "Go to SimVarAccelerationBodyZ")
```
func SimVarAccelerationBodyZ(args ...interface{}) SimVar
```
SimVarAccelerationBodyZ Simvar args contain optional index and/or unit
```
func SimVarAccelerationWorldX(args ...interface{}) SimVar
```
SimVarAccelerationWorldX Simvar args contain optional index and/or unit
```
func SimVarAccelerationWorldY(args ...interface{}) SimVar
```
SimVarAccelerationWorldY Simvar args contain optional index and/or unit
```
func SimVarAccelerationWorldZ(args ...interface{}) SimVar
```
SimVarAccelerationWorldZ Simvar args contain optional index and/or unit
```
func SimVarAdfActiveFrequency(args ...interface{}) SimVar
```
SimVarAdfActiveFrequency Simvar args contain optional index and/or unit
```
func SimVarAdfAvailable(args ...interface{}) SimVar
```
SimVarAdfAvailable Simvar args contain optional index and/or unit
```
func SimVarAdfCard(args ...interface{}) SimVar
```
SimVarAdfCard Simvar args contain optional index and/or unit
```
func SimVarAdfExtFrequency(args ...interface{}) SimVar
```
SimVarAdfExtFrequency Simvar args contain optional index and/or unit
```
func SimVarAdfFrequency(args ...interface{}) SimVar
```
SimVarAdfFrequency Simvar args contain optional index and/or unit
```
func SimVarAdfIdent(args ...interface{}) SimVar
```
SimVarAdfIdent Simvar args contain optional index and/or unit
```
func SimVarAdfLatlonalt(args ...interface{}) SimVar
```
SimVarAdfLatlonalt Simvar args contain optional index and/or unit
```
func SimVarAdfName(args ...interface{}) SimVar
```
SimVarAdfName Simvar args contain optional index and/or unit
```
func SimVarAdfRadial(args ...interface{}) SimVar
```
SimVarAdfRadial Simvar args contain optional index and/or unit
```
func SimVarAdfSignal(args ...interface{}) SimVar
```
SimVarAdfSignal Simvar args contain optional index and/or unit
```
func SimVarAdfSound(args ...interface{}) SimVar
```
SimVarAdfSound Simvar args contain optional index and/or unit
#### func [SimVarAdfStandbyFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4716) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAdfStandbyFrequency "Go to SimVarAdfStandbyFrequency")
```
func SimVarAdfStandbyFrequency(args ...interface{}) SimVar
```
SimVarAdfStandbyFrequency Simvar args contain optional index and/or unit
```
func SimVarAiCurrentWaypoint(args ...interface{}) SimVar
```
SimVarAiCurrentWaypoint Simvar args contain optional index and/or unit
```
func SimVarAiDesiredHeading(args ...interface{}) SimVar
```
SimVarAiDesiredHeading Simvar args contain optional index and/or unit
```
func SimVarAiDesiredSpeed(args ...interface{}) SimVar
```
SimVarAiDesiredSpeed Simvar args contain optional index and/or unit
```
func SimVarAiGroundcruisespeed(args ...interface{}) SimVar
```
SimVarAiGroundcruisespeed Simvar args contain optional index and/or unit
```
func SimVarAiGroundturnspeed(args ...interface{}) SimVar
```
SimVarAiGroundturnspeed Simvar args contain optional index and/or unit
```
func SimVarAiGroundturntime(args ...interface{}) SimVar
```
SimVarAiGroundturntime Simvar args contain optional index and/or unit
```
func SimVarAiTrafficAssignedParking(args ...interface{}) SimVar
```
SimVarAiTrafficAssignedParking Simvar args contain optional index and/or unit
```
func SimVarAiTrafficAssignedRunway(args ...interface{}) SimVar
```
SimVarAiTrafficAssignedRunway Simvar args contain optional index and/or unit
```
func SimVarAiTrafficCurrentAirport(args ...interface{}) SimVar
```
SimVarAiTrafficCurrentAirport Simvar args contain optional index and/or unit
```
func SimVarAiTrafficEta(args ...interface{}) SimVar
```
SimVarAiTrafficEta Simvar args contain optional index and/or unit
```
func SimVarAiTrafficEtd(args ...interface{}) SimVar
```
SimVarAiTrafficEtd Simvar args contain optional index and/or unit
```
func SimVarAiTrafficFromairport(args ...interface{}) SimVar
```
SimVarAiTrafficFromairport Simvar args contain optional index and/or unit
```
func SimVarAiTrafficIsifr(args ...interface{}) SimVar
```
SimVarAiTrafficIsifr Simvar args contain optional index and/or unit
```
func SimVarAiTrafficState(args ...interface{}) SimVar
```
SimVarAiTrafficState Simvar args contain optional index and/or unit
```
func SimVarAiTrafficToairport(args ...interface{}) SimVar
```
SimVarAiTrafficToairport Simvar args contain optional index and/or unit
```
func SimVarAiWaypointList(args ...interface{}) SimVar
```
SimVarAiWaypointList Actually not supported args contain optional index and/or unit
```
func SimVarAileronAverageDeflection(args ...interface{}) SimVar
```
SimVarAileronAverageDeflection Simvar args contain optional index and/or unit
```
func SimVarAileronLeftDeflection(args ...interface{}) SimVar
```
SimVarAileronLeftDeflection Simvar args contain optional index and/or unit
```
func SimVarAileronLeftDeflectionPct(args ...interface{}) SimVar
```
SimVarAileronLeftDeflectionPct Simvar args contain optional index and/or unit
```
func SimVarAileronPosition(args ...interface{}) SimVar
```
SimVarAileronPosition Simvar args contain optional index and/or unit
```
func SimVarAileronRightDeflection(args ...interface{}) SimVar
```
SimVarAileronRightDeflection Simvar args contain optional index and/or unit
```
func SimVarAileronRightDeflectionPct(args ...interface{}) SimVar
```
SimVarAileronRightDeflectionPct Simvar args contain optional index and/or unit
```
func SimVarAileronTrim(args ...interface{}) SimVar
```
SimVarAileronTrim Simvar args contain optional index and/or unit
```
func SimVarAileronTrimPct(args ...interface{}) SimVar
```
SimVarAileronTrimPct Simvar args contain optional index and/or unit
```
func SimVarAircraftWindX(args ...interface{}) SimVar
```
SimVarAircraftWindX Simvar args contain optional index and/or unit
```
func SimVarAircraftWindY(args ...interface{}) SimVar
```
SimVarAircraftWindY Simvar args contain optional index and/or unit
```
func SimVarAircraftWindZ(args ...interface{}) SimVar
```
SimVarAircraftWindZ Simvar args contain optional index and/or unit
```
func SimVarAirspeedBarberPole(args ...interface{}) SimVar
```
SimVarAirspeedBarberPole Simvar args contain optional index and/or unit
```
func SimVarAirspeedIndicated(args ...interface{}) SimVar
```
SimVarAirspeedIndicated Simvar args contain optional index and/or unit
```
func SimVarAirspeedMach(args ...interface{}) SimVar
```
SimVarAirspeedMach Simvar args contain optional index and/or unit
```
func SimVarAirspeedSelectIndicatedOrTrue(args ...interface{}) SimVar
```
SimVarAirspeedSelectIndicatedOrTrue Simvar args contain optional index and/or unit
```
func SimVarAirspeedTrue(args ...interface{}) SimVar
```
SimVarAirspeedTrue Simvar args contain optional index and/or unit
```
func SimVarAirspeedTrueCalibrate(args ...interface{}) SimVar
```
SimVarAirspeedTrueCalibrate Simvar args contain optional index and/or unit
```
func SimVarAlternateStaticSourceOpen(args ...interface{}) SimVar
```
SimVarAlternateStaticSourceOpen Simvar args contain optional index and/or unit
```
func SimVarAmbientDensity(args ...interface{}) SimVar
```
SimVarAmbientDensity Simvar args contain optional index and/or unit
```
func SimVarAmbientInCloud(args ...interface{}) SimVar
```
SimVarAmbientInCloud Simvar args contain optional index and/or unit
```
func SimVarAmbientPrecipState(args ...interface{}) SimVar
```
SimVarAmbientPrecipState Simvar args contain optional index and/or unit
```
func SimVarAmbientPressure(args ...interface{}) SimVar
```
SimVarAmbientPressure Simvar args contain optional index and/or unit
```
func SimVarAmbientTemperature(args ...interface{}) SimVar
```
SimVarAmbientTemperature Simvar args contain optional index and/or unit
```
func SimVarAmbientVisibility(args ...interface{}) SimVar
```
SimVarAmbientVisibility Simvar args contain optional index and/or unit
```
func SimVarAmbientWindDirection(args ...interface{}) SimVar
```
SimVarAmbientWindDirection Simvar args contain optional index and/or unit
```
func SimVarAmbientWindVelocity(args ...interface{}) SimVar
```
SimVarAmbientWindVelocity Simvar args contain optional index and/or unit
```
func SimVarAmbientWindX(args ...interface{}) SimVar
```
SimVarAmbientWindX Simvar args contain optional index and/or unit
```
func SimVarAmbientWindY(args ...interface{}) SimVar
```
SimVarAmbientWindY Simvar args contain optional index and/or unit
```
func SimVarAmbientWindZ(args ...interface{}) SimVar
```
SimVarAmbientWindZ Simvar args contain optional index and/or unit
```
func SimVarAnemometerPctRpm(args ...interface{}) SimVar
```
SimVarAnemometerPctRpm Simvar args contain optional index and/or unit
```
func SimVarAngleOfAttackIndicator(args ...interface{}) SimVar
```
SimVarAngleOfAttackIndicator Simvar args contain optional index and/or unit
```
func SimVarAntiskidBrakesActive(args ...interface{}) SimVar
```
SimVarAntiskidBrakesActive Simvar args contain optional index and/or unit
```
func SimVarApplyHeatToSystems(args ...interface{}) SimVar
```
SimVarApplyHeatToSystems Simvar args contain optional index and/or unit
```
func SimVarApuGeneratorActive(args ...interface{}) SimVar
```
SimVarApuGeneratorActive Simvar args contain optional index and/or unit
```
func SimVarApuGeneratorSwitch(args ...interface{}) SimVar
```
SimVarApuGeneratorSwitch Simvar args contain optional index and/or unit
```
func SimVarApuOnFireDetected(args ...interface{}) SimVar
```
SimVarApuOnFireDetected Simvar args contain optional index and/or unit
```
func SimVarApuPctRpm(args ...interface{}) SimVar
```
SimVarApuPctRpm Simvar args contain optional index and/or unit
```
func SimVarApuPctStarter(args ...interface{}) SimVar
```
SimVarApuPctStarter Simvar args contain optional index and/or unit
```
func SimVarApuVolts(args ...interface{}) SimVar
```
SimVarApuVolts Simvar args contain optional index and/or unit
```
func SimVarArtificialGroundElevation(args ...interface{}) SimVar
```
SimVarArtificialGroundElevation Simvar args contain optional index and/or unit
```
func SimVarAtcAirline(args ...interface{}) SimVar
```
SimVarAtcAirline Simvar args contain optional index and/or unit
```
func SimVarAtcFlightNumber(args ...interface{}) SimVar
```
SimVarAtcFlightNumber Simvar args contain optional index and/or unit
```
func SimVarAtcHeavy(args ...interface{}) SimVar
```
SimVarAtcHeavy Simvar args contain optional index and/or unit
```
func SimVarAtcId(args ...interface{}) SimVar
```
SimVarAtcId Simvar args contain optional index and/or unit
```
func SimVarAtcModel(args ...interface{}) SimVar
```
SimVarAtcModel Simvar args contain optional index and/or unit
#### func [SimVarAtcSuggestedMinRwyLanding](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8422) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarAtcSuggestedMinRwyLanding "Go to SimVarAtcSuggestedMinRwyLanding")
```
func SimVarAtcSuggestedMinRwyLanding(args ...interface{}) SimVar
```
SimVarAtcSuggestedMinRwyLanding Simvar args contain optional index and/or unit
```
func SimVarAtcSuggestedMinRwyTakeoff(args ...interface{}) SimVar
```
SimVarAtcSuggestedMinRwyTakeoff Simvar args contain optional index and/or unit
```
func SimVarAtcType(args ...interface{}) SimVar
```
SimVarAtcType Simvar args contain optional index and/or unit
```
func SimVarAttitudeBarsPosition(args ...interface{}) SimVar
```
SimVarAttitudeBarsPosition Simvar args contain optional index and/or unit
```
func SimVarAttitudeCage(args ...interface{}) SimVar
```
SimVarAttitudeCage Simvar args contain optional index and/or unit
```
func SimVarAttitudeIndicatorBankDegrees(args ...interface{}) SimVar
```
SimVarAttitudeIndicatorBankDegrees Simvar args contain optional index and/or unit
```
func SimVarAttitudeIndicatorPitchDegrees(args ...interface{}) SimVar
```
SimVarAttitudeIndicatorPitchDegrees Simvar args contain optional index and/or unit
```
func SimVarAutoBrakeSwitchCb(args ...interface{}) SimVar
```
SimVarAutoBrakeSwitchCb Simvar args contain optional index and/or unit
```
func SimVarAutoCoordination(args ...interface{}) SimVar
```
SimVarAutoCoordination Simvar args contain optional index and/or unit
```
func SimVarAutopilotAirspeedHold(args ...interface{}) SimVar
```
SimVarAutopilotAirspeedHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotAirspeedHoldVar(args ...interface{}) SimVar
```
SimVarAutopilotAirspeedHoldVar Simvar args contain optional index and/or unit
```
func SimVarAutopilotAltitudeLock(args ...interface{}) SimVar
```
SimVarAutopilotAltitudeLock Simvar args contain optional index and/or unit
```
func SimVarAutopilotAltitudeLockVar(args ...interface{}) SimVar
```
SimVarAutopilotAltitudeLockVar Simvar args contain optional index and/or unit
```
func SimVarAutopilotApproachHold(args ...interface{}) SimVar
```
SimVarAutopilotApproachHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotAttitudeHold(args ...interface{}) SimVar
```
SimVarAutopilotAttitudeHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotAvailable(args ...interface{}) SimVar
```
SimVarAutopilotAvailable Simvar args contain optional index and/or unit
```
func SimVarAutopilotBackcourseHold(args ...interface{}) SimVar
```
SimVarAutopilotBackcourseHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotFlightDirectorActive(args ...interface{}) SimVar
```
SimVarAutopilotFlightDirectorActive Simvar args contain optional index and/or unit
```
func SimVarAutopilotFlightDirectorBank(args ...interface{}) SimVar
```
SimVarAutopilotFlightDirectorBank Simvar args contain optional index and/or unit
```
func SimVarAutopilotFlightDirectorPitch(args ...interface{}) SimVar
```
SimVarAutopilotFlightDirectorPitch Simvar args contain optional index and/or unit
```
func SimVarAutopilotGlideslopeHold(args ...interface{}) SimVar
```
SimVarAutopilotGlideslopeHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotHeadingLock(args ...interface{}) SimVar
```
SimVarAutopilotHeadingLock Simvar args contain optional index and/or unit
```
func SimVarAutopilotHeadingLockDir(args ...interface{}) SimVar
```
SimVarAutopilotHeadingLockDir Simvar args contain optional index and/or unit
```
func SimVarAutopilotMachHold(args ...interface{}) SimVar
```
SimVarAutopilotMachHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotMachHoldVar(args ...interface{}) SimVar
```
SimVarAutopilotMachHoldVar Simvar args contain optional index and/or unit
```
func SimVarAutopilotMaster(args ...interface{}) SimVar
```
SimVarAutopilotMaster Simvar args contain optional index and/or unit
```
func SimVarAutopilotMaxBank(args ...interface{}) SimVar
```
SimVarAutopilotMaxBank Simvar args contain optional index and/or unit
```
func SimVarAutopilotNav1Lock(args ...interface{}) SimVar
```
SimVarAutopilotNav1Lock Simvar
```
func SimVarAutopilotNavSelected(args ...interface{}) SimVar
```
SimVarAutopilotNavSelected Simvar args contain optional index and/or unit
```
func SimVarAutopilotPitchHold(args ...interface{}) SimVar
```
SimVarAutopilotPitchHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotPitchHoldRef(args ...interface{}) SimVar
```
SimVarAutopilotPitchHoldRef Simvar args contain optional index and/or unit
```
func SimVarAutopilotRpmHold(args ...interface{}) SimVar
```
SimVarAutopilotRpmHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotRpmHoldVar(args ...interface{}) SimVar
```
SimVarAutopilotRpmHoldVar Simvar args contain optional index and/or unit
```
func SimVarAutopilotTakeoffPowerActive(args ...interface{}) SimVar
```
SimVarAutopilotTakeoffPowerActive Simvar args contain optional index and/or unit
```
func SimVarAutopilotThrottleArm(args ...interface{}) SimVar
```
SimVarAutopilotThrottleArm Simvar args contain optional index and/or unit
```
func SimVarAutopilotVerticalHold(args ...interface{}) SimVar
```
SimVarAutopilotVerticalHold Simvar args contain optional index and/or unit
```
func SimVarAutopilotVerticalHoldVar(args ...interface{}) SimVar
```
SimVarAutopilotVerticalHoldVar Simvar args contain optional index and/or unit
```
func SimVarAutopilotWingLeveler(args ...interface{}) SimVar
```
SimVarAutopilotWingLeveler Simvar args contain optional index and/or unit
```
func SimVarAutopilotYawDamper(args ...interface{}) SimVar
```
SimVarAutopilotYawDamper Simvar args contain optional index and/or unit
```
func SimVarAutothrottleActive(args ...interface{}) SimVar
```
SimVarAutothrottleActive Simvar args contain optional index and/or unit
```
func SimVarAuxWheelRotationAngle(args ...interface{}) SimVar
```
SimVarAuxWheelRotationAngle Simvar args contain optional index and/or unit
```
func SimVarAuxWheelRpm(args ...interface{}) SimVar
```
SimVarAuxWheelRpm Simvar args contain optional index and/or unit
```
func SimVarAvionicsMasterSwitch(args ...interface{}) SimVar
```
SimVarAvionicsMasterSwitch Simvar args contain optional index and/or unit
```
func SimVarBarberPoleMach(args ...interface{}) SimVar
```
SimVarBarberPoleMach Simvar args contain optional index and/or unit
```
func SimVarBarometerPressure(args ...interface{}) SimVar
```
SimVarBarometerPressure Simvar args contain optional index and/or unit
```
func SimVarBetaDot(args ...interface{}) SimVar
```
SimVarBetaDot Simvar args contain optional index and/or unit
```
func SimVarBlastShieldPosition(args ...interface{}) SimVar
```
SimVarBlastShieldPosition Simvar args contain optional index and/or unit
```
func SimVarBleedAirSourceControl(args ...interface{}) SimVar
```
SimVarBleedAirSourceControl Simvar args contain optional index and/or unit
```
func SimVarBrakeDependentHydraulicPressure(args ...interface{}) SimVar
```
SimVarBrakeDependentHydraulicPressure Simvar args contain optional index and/or unit
```
func SimVarBrakeIndicator(args ...interface{}) SimVar
```
SimVarBrakeIndicator Simvar args contain optional index and/or unit
```
func SimVarBrakeLeftPosition(args ...interface{}) SimVar
```
SimVarBrakeLeftPosition Simvar args contain optional index and/or unit
```
func SimVarBrakeParkingIndicator(args ...interface{}) SimVar
```
SimVarBrakeParkingIndicator Simvar args contain optional index and/or unit
```
func SimVarBrakeParkingPosition(args ...interface{}) SimVar
```
SimVarBrakeParkingPosition Simvar args contain optional index and/or unit
```
func SimVarBrakeRightPosition(args ...interface{}) SimVar
```
SimVarBrakeRightPosition Simvar args contain optional index and/or unit
```
func SimVarCabinNoSmokingAlertSwitch(args ...interface{}) SimVar
```
SimVarCabinNoSmokingAlertSwitch Simvar args contain optional index and/or unit
```
func SimVarCabinSeatbeltsAlertSwitch(args ...interface{}) SimVar
```
SimVarCabinSeatbeltsAlertSwitch Simvar args contain optional index and/or unit
```
func SimVarCanopyOpen(args ...interface{}) SimVar
```
SimVarCanopyOpen Simvar args contain optional index and/or unit
```
func SimVarCarbHeatAvailable(args ...interface{}) SimVar
```
SimVarCarbHeatAvailable Simvar args contain optional index and/or unit
```
func SimVarCategory(args ...interface{}) SimVar
```
SimVarCategory Simvar args contain optional index and/or unit
```
func SimVarCenterWheelRotationAngle(args ...interface{}) SimVar
```
SimVarCenterWheelRotationAngle Simvar args contain optional index and/or unit
```
func SimVarCenterWheelRpm(args ...interface{}) SimVar
```
SimVarCenterWheelRpm Simvar args contain optional index and/or unit
```
func SimVarCgAftLimit(args ...interface{}) SimVar
```
SimVarCgAftLimit Simvar args contain optional index and/or unit
```
func SimVarCgFwdLimit(args ...interface{}) SimVar
```
SimVarCgFwdLimit Simvar args contain optional index and/or unit
```
func SimVarCgMaxMach(args ...interface{}) SimVar
```
SimVarCgMaxMach Simvar args contain optional index and/or unit
```
func SimVarCgMinMach(args ...interface{}) SimVar
```
SimVarCgMinMach Simvar args contain optional index and/or unit
```
func SimVarCgPercent(args ...interface{}) SimVar
```
SimVarCgPercent Simvar args contain optional index and/or unit
```
func SimVarCgPercentLateral(args ...interface{}) SimVar
```
SimVarCgPercentLateral Simvar args contain optional index and/or unit
```
func SimVarCircuitAutoBrakesOn(args ...interface{}) SimVar
```
SimVarCircuitAutoBrakesOn Simvar args contain optional index and/or unit
```
func SimVarCircuitAutoFeatherOn(args ...interface{}) SimVar
```
SimVarCircuitAutoFeatherOn Simvar args contain optional index and/or unit
```
func SimVarCircuitAutopilotOn(args ...interface{}) SimVar
```
SimVarCircuitAutopilotOn Simvar args contain optional index and/or unit
```
func SimVarCircuitAvionicsOn(args ...interface{}) SimVar
```
SimVarCircuitAvionicsOn Simvar args contain optional index and/or unit
```
func SimVarCircuitFlapMotorOn(args ...interface{}) SimVar
```
SimVarCircuitFlapMotorOn Simvar args contain optional index and/or unit
```
func SimVarCircuitGearMotorOn(args ...interface{}) SimVar
```
SimVarCircuitGearMotorOn Simvar args contain optional index and/or unit
```
func SimVarCircuitGearWarningOn(args ...interface{}) SimVar
```
SimVarCircuitGearWarningOn Simvar args contain optional index and/or unit
```
func SimVarCircuitGeneralPanelOn(args ...interface{}) SimVar
```
SimVarCircuitGeneralPanelOn Simvar args contain optional index and/or unit
```
func SimVarCircuitHydraulicPumpOn(args ...interface{}) SimVar
```
SimVarCircuitHydraulicPumpOn Simvar args contain optional index and/or unit
```
func SimVarCircuitMarkerBeaconOn(args ...interface{}) SimVar
```
SimVarCircuitMarkerBeaconOn Simvar args contain optional index and/or unit
```
func SimVarCircuitPitotHeatOn(args ...interface{}) SimVar
```
SimVarCircuitPitotHeatOn Simvar args contain optional index and/or unit
```
func SimVarCircuitPropSyncOn(args ...interface{}) SimVar
```
SimVarCircuitPropSyncOn Simvar args contain optional index and/or unit
#### func [SimVarCircuitStandyVacuumOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L8110) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarCircuitStandyVacuumOn "Go to SimVarCircuitStandyVacuumOn")
```
func SimVarCircuitStandyVacuumOn(args ...interface{}) SimVar
```
SimVarCircuitStandyVacuumOn Simvar args contain optional index and/or unit
```
func SimVarComActiveFrequency(args ...interface{}) SimVar
```
SimVarComActiveFrequency Simvar args contain optional index and/or unit
```
func SimVarComAvailable(args ...interface{}) SimVar
```
SimVarComAvailable Simvar args contain optional index and/or unit
```
func SimVarComReceiveAll(args ...interface{}) SimVar
```
SimVarComReceiveAll Simvar args contain optional index and/or unit
```
func SimVarComRecieveAll(args ...interface{}) SimVar
```
SimVarComRecieveAll Simvar args contain optional index and/or unit
#### func [SimVarComStandbyFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4428) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarComStandbyFrequency "Go to SimVarComStandbyFrequency")
```
func SimVarComStandbyFrequency(args ...interface{}) SimVar
```
SimVarComStandbyFrequency Simvar args contain optional index and/or unit
```
func SimVarComStatus(args ...interface{}) SimVar
```
SimVarComStatus Simvar args contain optional index and/or unit
```
func SimVarComTest(args ...interface{}) SimVar
```
SimVarComTest Simvar args contain optional index and/or unit
```
func SimVarComTransmit(args ...interface{}) SimVar
```
SimVarComTransmit Simvar args contain optional index and/or unit
```
func SimVarConcordeNoseAngle(args ...interface{}) SimVar
```
SimVarConcordeNoseAngle Simvar args contain optional index and/or unit
#### func [SimVarConcordeVisorNoseHandle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9188) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarConcordeVisorNoseHandle "Go to SimVarConcordeVisorNoseHandle")
```
func SimVarConcordeVisorNoseHandle(args ...interface{}) SimVar
```
SimVarConcordeVisorNoseHandle Simvar args contain optional index and/or unit
```
func SimVarConcordeVisorPositionPercent(args ...interface{}) SimVar
```
SimVarConcordeVisorPositionPercent Simvar args contain optional index and/or unit
```
func SimVarCrashFlag(args ...interface{}) SimVar
```
SimVarCrashFlag Simvar args contain optional index and/or unit
```
func SimVarCrashSequence(args ...interface{}) SimVar
```
SimVarCrashSequence Simvar args contain optional index and/or unit
```
func SimVarDecisionAltitudeMsl(args ...interface{}) SimVar
```
SimVarDecisionAltitudeMsl Simvar args contain optional index and/or unit
```
func SimVarDecisionHeight(args ...interface{}) SimVar
```
SimVarDecisionHeight Simvar args contain optional index and/or unit
```
func SimVarDeltaHeadingRate(args ...interface{}) SimVar
```
SimVarDeltaHeadingRate Simvar args contain optional index and/or unit
```
func SimVarDesignSpeedVc(args ...interface{}) SimVar
```
SimVarDesignSpeedVc Simvar args contain optional index and/or unit
```
func SimVarDesignSpeedVs0(args ...interface{}) SimVar
```
SimVarDesignSpeedVs0 Simvar
```
func SimVarDesignSpeedVs1(args ...interface{}) SimVar
```
SimVarDesignSpeedVs1 Simvar
```
func SimVarDiskBankAngle(args ...interface{}) SimVar
```
SimVarDiskBankAngle Simvar args contain optional index and/or unit
```
func SimVarDiskBankPct(args ...interface{}) SimVar
```
SimVarDiskBankPct Simvar args contain optional index and/or unit
```
func SimVarDiskConingPct(args ...interface{}) SimVar
```
SimVarDiskConingPct Simvar args contain optional index and/or unit
```
func SimVarDiskPitchAngle(args ...interface{}) SimVar
```
SimVarDiskPitchAngle Simvar args contain optional index and/or unit
```
func SimVarDiskPitchPct(args ...interface{}) SimVar
```
SimVarDiskPitchPct Simvar args contain optional index and/or unit
```
func SimVarDmeSound(args ...interface{}) SimVar
```
SimVarDmeSound Simvar args contain optional index and/or unit
```
func SimVarDroppableObjectsCount(args ...interface{}) SimVar
```
SimVarDroppableObjectsCount Simvar args contain optional index and/or unit
```
func SimVarDroppableObjectsType(args ...interface{}) SimVar
```
SimVarDroppableObjectsType Simvar args contain optional index and/or unit
```
func SimVarDroppableObjectsUiName(args ...interface{}) SimVar
```
SimVarDroppableObjectsUiName Simvar args contain optional index and/or unit
```
func SimVarDynamicPressure(args ...interface{}) SimVar
```
SimVarDynamicPressure Simvar args contain optional index and/or unit
```
func SimVarElectricalAvionicsBusAmps(args ...interface{}) SimVar
```
SimVarElectricalAvionicsBusAmps Simvar args contain optional index and/or unit
```
func SimVarElectricalAvionicsBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalAvionicsBusVoltage Simvar args contain optional index and/or unit
```
func SimVarElectricalBatteryBusAmps(args ...interface{}) SimVar
```
SimVarElectricalBatteryBusAmps Simvar args contain optional index and/or unit
```
func SimVarElectricalBatteryBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalBatteryBusVoltage Simvar args contain optional index and/or unit
```
func SimVarElectricalBatteryLoad(args ...interface{}) SimVar
```
SimVarElectricalBatteryLoad Simvar args contain optional index and/or unit
```
func SimVarElectricalBatteryVoltage(args ...interface{}) SimVar
```
SimVarElectricalBatteryVoltage Simvar args contain optional index and/or unit
```
func SimVarElectricalGenaltBusAmps(args ...interface{}) SimVar
```
SimVarElectricalGenaltBusAmps Simvar args contain optional index and/or unit
```
func SimVarElectricalGenaltBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalGenaltBusVoltage Simvar args contain optional index and/or unit
```
func SimVarElectricalHotBatteryBusAmps(args ...interface{}) SimVar
```
SimVarElectricalHotBatteryBusAmps Simvar args contain optional index and/or unit
```
func SimVarElectricalHotBatteryBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalHotBatteryBusVoltage Simvar args contain optional index and/or unit
#### func [SimVarElectricalMainBusAmps](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7894) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusAmps "Go to SimVarElectricalMainBusAmps")
```
func SimVarElectricalMainBusAmps(args ...interface{}) SimVar
```
SimVarElectricalMainBusAmps Simvar args contain optional index and/or unit
#### func [SimVarElectricalMainBusVoltage](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7882) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarElectricalMainBusVoltage "Go to SimVarElectricalMainBusVoltage")
```
func SimVarElectricalMainBusVoltage(args ...interface{}) SimVar
```
SimVarElectricalMainBusVoltage Simvar args contain optional index and/or unit
```
func SimVarElectricalMasterBattery(args ...interface{}) SimVar
```
SimVarElectricalMasterBattery Simvar args contain optional index and/or unit
```
func SimVarElectricalOldChargingAmps(args ...interface{}) SimVar
```
SimVarElectricalOldChargingAmps Simvar args contain optional index and/or unit
```
func SimVarElectricalTotalLoadAmps(args ...interface{}) SimVar
```
SimVarElectricalTotalLoadAmps Simvar args contain optional index and/or unit
```
func SimVarElevatorDeflection(args ...interface{}) SimVar
```
SimVarElevatorDeflection Simvar args contain optional index and/or unit
```
func SimVarElevatorDeflectionPct(args ...interface{}) SimVar
```
SimVarElevatorDeflectionPct Simvar args contain optional index and/or unit
```
func SimVarElevatorPosition(args ...interface{}) SimVar
```
SimVarElevatorPosition Simvar args contain optional index and/or unit
```
func SimVarElevatorTrimIndicator(args ...interface{}) SimVar
```
SimVarElevatorTrimIndicator Simvar args contain optional index and/or unit
```
func SimVarElevatorTrimPct(args ...interface{}) SimVar
```
SimVarElevatorTrimPct Simvar args contain optional index and/or unit
```
func SimVarElevatorTrimPosition(args ...interface{}) SimVar
```
SimVarElevatorTrimPosition Simvar args contain optional index and/or unit
```
func SimVarElevonDeflection(args ...interface{}) SimVar
```
SimVarElevonDeflection Simvar args contain optional index and/or unit
```
func SimVarEmptyWeight(args ...interface{}) SimVar
```
SimVarEmptyWeight Simvar args contain optional index and/or unit
```
func SimVarEmptyWeightCrossCoupledMoi(args ...interface{}) SimVar
```
SimVarEmptyWeightCrossCoupledMoi Simvar args contain optional index and/or unit
```
func SimVarEmptyWeightPitchMoi(args ...interface{}) SimVar
```
SimVarEmptyWeightPitchMoi Simvar args contain optional index and/or unit
```
func SimVarEmptyWeightRollMoi(args ...interface{}) SimVar
```
SimVarEmptyWeightRollMoi Simvar args contain optional index and/or unit
```
func SimVarEmptyWeightYawMoi(args ...interface{}) SimVar
```
SimVarEmptyWeightYawMoi Simvar args contain optional index and/or unit
```
func SimVarEngAntiIce(args ...interface{}) SimVar
```
SimVarEngAntiIce Simvar args contain optional index and/or unit
```
func SimVarEngCombustion(args ...interface{}) SimVar
```
SimVarEngCombustion Simvar args contain optional index and/or unit
```
func SimVarEngCylinderHeadTemperature(args ...interface{}) SimVar
```
SimVarEngCylinderHeadTemperature Simvar args contain optional index and/or unit
```
func SimVarEngElectricalLoad(args ...interface{}) SimVar
```
SimVarEngElectricalLoad Simvar args contain optional index and/or unit
```
func SimVarEngExhaustGasTemperature(args ...interface{}) SimVar
```
SimVarEngExhaustGasTemperature Simvar args contain optional index and/or unit
```
func SimVarEngExhaustGasTemperatureGes(args ...interface{}) SimVar
```
SimVarEngExhaustGasTemperatureGes Simvar args contain optional index and/or unit
```
func SimVarEngFailed(args ...interface{}) SimVar
```
SimVarEngFailed Simvar args contain optional index and/or unit
```
func SimVarEngFuelFlowBugPosition(args ...interface{}) SimVar
```
SimVarEngFuelFlowBugPosition Simvar args contain optional index and/or unit
```
func SimVarEngFuelFlowPph(args ...interface{}) SimVar
```
SimVarEngFuelFlowPph Simvar args contain optional index and/or unit
```
func SimVarEngFuelPressure(args ...interface{}) SimVar
```
SimVarEngFuelPressure Simvar args contain optional index and/or unit
```
func SimVarEngHydraulicPressure(args ...interface{}) SimVar
```
SimVarEngHydraulicPressure Simvar args contain optional index and/or unit
```
func SimVarEngHydraulicQuantity(args ...interface{}) SimVar
```
SimVarEngHydraulicQuantity Simvar args contain optional index and/or unit
```
func SimVarEngManifoldPressure(args ...interface{}) SimVar
```
SimVarEngManifoldPressure Simvar args contain optional index and/or unit
```
func SimVarEngMaxRpm(args ...interface{}) SimVar
```
SimVarEngMaxRpm Simvar args contain optional index and/or unit
```
func SimVarEngN1Rpm(args ...interface{}) SimVar
```
SimVarEngN1Rpm Simvar
```
func SimVarEngN2Rpm(args ...interface{}) SimVar
```
SimVarEngN2Rpm Simvar
```
func SimVarEngOilPressure(args ...interface{}) SimVar
```
SimVarEngOilPressure Simvar args contain optional index and/or unit
```
func SimVarEngOilQuantity(args ...interface{}) SimVar
```
SimVarEngOilQuantity Simvar args contain optional index and/or unit
```
func SimVarEngOilTemperature(args ...interface{}) SimVar
```
SimVarEngOilTemperature Simvar args contain optional index and/or unit
```
func SimVarEngOnFire(args ...interface{}) SimVar
```
SimVarEngOnFire Simvar args contain optional index and/or unit
```
func SimVarEngPressureRatio(args ...interface{}) SimVar
```
SimVarEngPressureRatio Simvar args contain optional index and/or unit
```
func SimVarEngRotorRpm(args ...interface{}) SimVar
```
SimVarEngRotorRpm Simvar args contain optional index and/or unit
```
func SimVarEngRpmAnimationPercent(args ...interface{}) SimVar
```
SimVarEngRpmAnimationPercent Simvar args contain optional index and/or unit
```
func SimVarEngRpmScaler(args ...interface{}) SimVar
```
SimVarEngRpmScaler Simvar args contain optional index and/or unit
```
func SimVarEngTorque(args ...interface{}) SimVar
```
SimVarEngTorque Simvar args contain optional index and/or unit
```
func SimVarEngTorquePercent(args ...interface{}) SimVar
```
SimVarEngTorquePercent Simvar args contain optional index and/or unit
```
func SimVarEngTransmissionPressure(args ...interface{}) SimVar
```
SimVarEngTransmissionPressure Simvar args contain optional index and/or unit
```
func SimVarEngTransmissionTemperature(args ...interface{}) SimVar
```
SimVarEngTransmissionTemperature Simvar args contain optional index and/or unit
```
func SimVarEngTurbineTemperature(args ...interface{}) SimVar
```
SimVarEngTurbineTemperature Simvar args contain optional index and/or unit
```
func SimVarEngVibration(args ...interface{}) SimVar
```
SimVarEngVibration Simvar args contain optional index and/or unit
```
func SimVarEngineControlSelect(args ...interface{}) SimVar
```
SimVarEngineControlSelect Simvar args contain optional index and/or unit
```
func SimVarEngineMixureAvailable(args ...interface{}) SimVar
```
SimVarEngineMixureAvailable Simvar args contain optional index and/or unit
```
func SimVarEngineType(args ...interface{}) SimVar
```
SimVarEngineType Simvar args contain optional index and/or unit
```
func SimVarEstimatedCruiseSpeed(args ...interface{}) SimVar
```
SimVarEstimatedCruiseSpeed Simvar args contain optional index and/or unit
```
func SimVarEstimatedFuelFlow(args ...interface{}) SimVar
```
SimVarEstimatedFuelFlow Simvar args contain optional index and/or unit
```
func SimVarExitOpen(args ...interface{}) SimVar
```
SimVarExitOpen Simvar args contain optional index and/or unit
```
func SimVarExitPosx(args ...interface{}) SimVar
```
SimVarExitPosx Simvar args contain optional index and/or unit
```
func SimVarExitPosy(args ...interface{}) SimVar
```
SimVarExitPosy Simvar args contain optional index and/or unit
```
func SimVarExitPosz(args ...interface{}) SimVar
```
SimVarExitPosz Simvar args contain optional index and/or unit
```
func SimVarExitType(args ...interface{}) SimVar
```
SimVarExitType Simvar args contain optional index and/or unit
```
func SimVarEyepointPosition(args ...interface{}) SimVar
```
SimVarEyepointPosition Simvar args contain optional index and/or unit
```
func SimVarFireBottleDischarged(args ...interface{}) SimVar
```
SimVarFireBottleDischarged Simvar args contain optional index and/or unit
```
func SimVarFireBottleSwitch(args ...interface{}) SimVar
```
SimVarFireBottleSwitch Simvar args contain optional index and/or unit
```
func SimVarFlapDamageBySpeed(args ...interface{}) SimVar
```
SimVarFlapDamageBySpeed Simvar args contain optional index and/or unit
```
func SimVarFlapSpeedExceeded(args ...interface{}) SimVar
```
SimVarFlapSpeedExceeded Simvar args contain optional index and/or unit
```
func SimVarFlapsAvailable(args ...interface{}) SimVar
```
SimVarFlapsAvailable Simvar args contain optional index and/or unit
#### func [SimVarFlapsHandleIndex](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6011) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandleIndex "Go to SimVarFlapsHandleIndex")
```
func SimVarFlapsHandleIndex(args ...interface{}) SimVar
```
SimVarFlapsHandleIndex Simvar args contain optional index and/or unit
#### func [SimVarFlapsHandlePercent](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5999) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsHandlePercent "Go to SimVarFlapsHandlePercent")
```
func SimVarFlapsHandlePercent(args ...interface{}) SimVar
```
SimVarFlapsHandlePercent Simvar args contain optional index and/or unit
#### func [SimVarFlapsNumHandlePositions](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6023) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFlapsNumHandlePositions "Go to SimVarFlapsNumHandlePositions")
```
func SimVarFlapsNumHandlePositions(args ...interface{}) SimVar
```
SimVarFlapsNumHandlePositions Simvar args contain optional index and/or unit
```
func SimVarFlyByWireElacFailed(args ...interface{}) SimVar
```
SimVarFlyByWireElacFailed Simvar args contain optional index and/or unit
```
func SimVarFlyByWireElacSwitch(args ...interface{}) SimVar
```
SimVarFlyByWireElacSwitch Simvar args contain optional index and/or unit
```
func SimVarFlyByWireFacFailed(args ...interface{}) SimVar
```
SimVarFlyByWireFacFailed Simvar args contain optional index and/or unit
```
func SimVarFlyByWireFacSwitch(args ...interface{}) SimVar
```
SimVarFlyByWireFacSwitch Simvar args contain optional index and/or unit
```
func SimVarFlyByWireSecFailed(args ...interface{}) SimVar
```
SimVarFlyByWireSecFailed Simvar args contain optional index and/or unit
```
func SimVarFlyByWireSecSwitch(args ...interface{}) SimVar
```
SimVarFlyByWireSecSwitch Simvar args contain optional index and/or unit
```
func SimVarFoldingWingLeftPercent(args ...interface{}) SimVar
```
SimVarFoldingWingLeftPercent Simvar args contain optional index and/or unit
```
func SimVarFoldingWingRightPercent(args ...interface{}) SimVar
```
SimVarFoldingWingRightPercent Simvar args contain optional index and/or unit
```
func SimVarFuelCrossFeed(args ...interface{}) SimVar
```
SimVarFuelCrossFeed Simvar args contain optional index and/or unit
```
func SimVarFuelLeftCapacity(args ...interface{}) SimVar
```
SimVarFuelLeftCapacity Simvar args contain optional index and/or unit
```
func SimVarFuelLeftQuantity(args ...interface{}) SimVar
```
SimVarFuelLeftQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelRightCapacity(args ...interface{}) SimVar
```
SimVarFuelRightCapacity Simvar args contain optional index and/or unit
```
func SimVarFuelRightQuantity(args ...interface{}) SimVar
```
SimVarFuelRightQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelSelectedQuantity(args ...interface{}) SimVar
```
SimVarFuelSelectedQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelSelectedQuantityPercent(args ...interface{}) SimVar
```
SimVarFuelSelectedQuantityPercent Simvar args contain optional index and/or unit
```
func SimVarFuelSelectedTransferMode(args ...interface{}) SimVar
```
SimVarFuelSelectedTransferMode Simvar args contain optional index and/or unit
```
func SimVarFuelTankCenter2Capacity(args ...interface{}) SimVar
```
SimVarFuelTankCenter2Capacity Simvar
```
func SimVarFuelTankCenter2Level(args ...interface{}) SimVar
```
SimVarFuelTankCenter2Level Simvar
```
func SimVarFuelTankCenter2Quantity(args ...interface{}) SimVar
```
SimVarFuelTankCenter2Quantity Simvar
```
func SimVarFuelTankCenter3Capacity(args ...interface{}) SimVar
```
SimVarFuelTankCenter3Capacity Simvar
```
func SimVarFuelTankCenter3Level(args ...interface{}) SimVar
```
SimVarFuelTankCenter3Level Simvar
```
func SimVarFuelTankCenter3Quantity(args ...interface{}) SimVar
```
SimVarFuelTankCenter3Quantity Simvar
```
func SimVarFuelTankCenterCapacity(args ...interface{}) SimVar
```
SimVarFuelTankCenterCapacity Simvar args contain optional index and/or unit
```
func SimVarFuelTankCenterLevel(args ...interface{}) SimVar
```
SimVarFuelTankCenterLevel Simvar args contain optional index and/or unit
```
func SimVarFuelTankCenterQuantity(args ...interface{}) SimVar
```
SimVarFuelTankCenterQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelTankExternal1Capacity(args ...interface{}) SimVar
```
SimVarFuelTankExternal1Capacity Simvar
```
func SimVarFuelTankExternal1Level(args ...interface{}) SimVar
```
SimVarFuelTankExternal1Level Simvar
```
func SimVarFuelTankExternal1Quantity(args ...interface{}) SimVar
```
SimVarFuelTankExternal1Quantity Simvar
```
func SimVarFuelTankExternal2Capacity(args ...interface{}) SimVar
```
SimVarFuelTankExternal2Capacity Simvar
```
func SimVarFuelTankExternal2Level(args ...interface{}) SimVar
```
SimVarFuelTankExternal2Level Simvar
```
func SimVarFuelTankExternal2Quantity(args ...interface{}) SimVar
```
SimVarFuelTankExternal2Quantity Simvar
```
func SimVarFuelTankLeftAuxCapacity(args ...interface{}) SimVar
```
SimVarFuelTankLeftAuxCapacity Simvar args contain optional index and/or unit
```
func SimVarFuelTankLeftAuxLevel(args ...interface{}) SimVar
```
SimVarFuelTankLeftAuxLevel Simvar args contain optional index and/or unit
```
func SimVarFuelTankLeftAuxQuantity(args ...interface{}) SimVar
```
SimVarFuelTankLeftAuxQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftMainCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2862) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainCapacity "Go to SimVarFuelTankLeftMainCapacity")
```
func SimVarFuelTankLeftMainCapacity(args ...interface{}) SimVar
```
SimVarFuelTankLeftMainCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftMainLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2734) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainLevel "Go to SimVarFuelTankLeftMainLevel")
```
func SimVarFuelTankLeftMainLevel(args ...interface{}) SimVar
```
SimVarFuelTankLeftMainLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankLeftMainQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3014) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankLeftMainQuantity "Go to SimVarFuelTankLeftMainQuantity")
```
func SimVarFuelTankLeftMainQuantity(args ...interface{}) SimVar
```
SimVarFuelTankLeftMainQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelTankLeftTipCapacity(args ...interface{}) SimVar
```
SimVarFuelTankLeftTipCapacity Simvar args contain optional index and/or unit
```
func SimVarFuelTankLeftTipLevel(args ...interface{}) SimVar
```
SimVarFuelTankLeftTipLevel Simvar args contain optional index and/or unit
```
func SimVarFuelTankLeftTipQuantity(args ...interface{}) SimVar
```
SimVarFuelTankLeftTipQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelTankRightAuxCapacity(args ...interface{}) SimVar
```
SimVarFuelTankRightAuxCapacity Simvar args contain optional index and/or unit
```
func SimVarFuelTankRightAuxLevel(args ...interface{}) SimVar
```
SimVarFuelTankRightAuxLevel Simvar args contain optional index and/or unit
```
func SimVarFuelTankRightAuxQuantity(args ...interface{}) SimVar
```
SimVarFuelTankRightAuxQuantity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightMainCapacity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2898) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainCapacity "Go to SimVarFuelTankRightMainCapacity")
```
func SimVarFuelTankRightMainCapacity(args ...interface{}) SimVar
```
SimVarFuelTankRightMainCapacity Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightMainLevel](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L2770) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainLevel "Go to SimVarFuelTankRightMainLevel")
```
func SimVarFuelTankRightMainLevel(args ...interface{}) SimVar
```
SimVarFuelTankRightMainLevel Simvar args contain optional index and/or unit
#### func [SimVarFuelTankRightMainQuantity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3050) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarFuelTankRightMainQuantity "Go to SimVarFuelTankRightMainQuantity")
```
func SimVarFuelTankRightMainQuantity(args ...interface{}) SimVar
```
SimVarFuelTankRightMainQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelTankRightTipCapacity(args ...interface{}) SimVar
```
SimVarFuelTankRightTipCapacity Simvar args contain optional index and/or unit
```
func SimVarFuelTankRightTipLevel(args ...interface{}) SimVar
```
SimVarFuelTankRightTipLevel Simvar args contain optional index and/or unit
```
func SimVarFuelTankRightTipQuantity(args ...interface{}) SimVar
```
SimVarFuelTankRightTipQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelTankSelector(args ...interface{}) SimVar
```
SimVarFuelTankSelector Simvar args contain optional index and/or unit
```
func SimVarFuelTotalCapacity(args ...interface{}) SimVar
```
SimVarFuelTotalCapacity Simvar args contain optional index and/or unit
```
func SimVarFuelTotalQuantity(args ...interface{}) SimVar
```
SimVarFuelTotalQuantity Simvar args contain optional index and/or unit
```
func SimVarFuelTotalQuantityWeight(args ...interface{}) SimVar
```
SimVarFuelTotalQuantityWeight Simvar args contain optional index and/or unit
```
func SimVarFuelWeightPerGallon(args ...interface{}) SimVar
```
SimVarFuelWeightPerGallon Simvar args contain optional index and/or unit
```
func SimVarFullThrottleThrustToWeightRatio(args ...interface{}) SimVar
```
SimVarFullThrottleThrustToWeightRatio Simvar args contain optional index and/or unit
```
func SimVarGForce(args ...interface{}) SimVar
```
SimVarGForce Simvar args contain optional index and/or unit
```
func SimVarGearAnimationPosition(args ...interface{}) SimVar
```
SimVarGearAnimationPosition Simvar args contain optional index and/or unit
```
func SimVarGearAuxPosition(args ...interface{}) SimVar
```
SimVarGearAuxPosition Simvar args contain optional index and/or unit
```
func SimVarGearAuxSteerAngle(args ...interface{}) SimVar
```
SimVarGearAuxSteerAngle Simvar args contain optional index and/or unit
```
func SimVarGearAuxSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearAuxSteerAnglePct Simvar args contain optional index and/or unit
```
func SimVarGearCenterPosition(args ...interface{}) SimVar
```
SimVarGearCenterPosition Simvar args contain optional index and/or unit
```
func SimVarGearCenterSteerAngle(args ...interface{}) SimVar
```
SimVarGearCenterSteerAngle Simvar args contain optional index and/or unit
```
func SimVarGearCenterSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearCenterSteerAnglePct Simvar args contain optional index and/or unit
```
func SimVarGearDamageBySpeed(args ...interface{}) SimVar
```
SimVarGearDamageBySpeed Simvar args contain optional index and/or unit
#### func [SimVarGearEmergencyHandlePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7210) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearEmergencyHandlePosition "Go to SimVarGearEmergencyHandlePosition")
```
func SimVarGearEmergencyHandlePosition(args ...interface{}) SimVar
```
SimVarGearEmergencyHandlePosition Simvar args contain optional index and/or unit
#### func [SimVarGearHandlePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6191) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarGearHandlePosition "Go to SimVarGearHandlePosition")
```
func SimVarGearHandlePosition(args ...interface{}) SimVar
```
SimVarGearHandlePosition Simvar args contain optional index and/or unit
```
func SimVarGearHydraulicPressure(args ...interface{}) SimVar
```
SimVarGearHydraulicPressure Simvar args contain optional index and/or unit
```
func SimVarGearLeftPosition(args ...interface{}) SimVar
```
SimVarGearLeftPosition Simvar args contain optional index and/or unit
```
func SimVarGearLeftSteerAngle(args ...interface{}) SimVar
```
SimVarGearLeftSteerAngle Simvar args contain optional index and/or unit
```
func SimVarGearLeftSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearLeftSteerAnglePct Simvar args contain optional index and/or unit
```
func SimVarGearPosition(args ...interface{}) SimVar
```
SimVarGearPosition Simvar args contain optional index and/or unit
```
func SimVarGearRightPosition(args ...interface{}) SimVar
```
SimVarGearRightPosition Simvar args contain optional index and/or unit
```
func SimVarGearRightSteerAngle(args ...interface{}) SimVar
```
SimVarGearRightSteerAngle Simvar args contain optional index and/or unit
```
func SimVarGearRightSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearRightSteerAnglePct Simvar args contain optional index and/or unit
```
func SimVarGearSpeedExceeded(args ...interface{}) SimVar
```
SimVarGearSpeedExceeded Simvar args contain optional index and/or unit
```
func SimVarGearSteerAngle(args ...interface{}) SimVar
```
SimVarGearSteerAngle Simvar args contain optional index and/or unit
```
func SimVarGearSteerAnglePct(args ...interface{}) SimVar
```
SimVarGearSteerAnglePct Simvar args contain optional index and/or unit
```
func SimVarGearTailPosition(args ...interface{}) SimVar
```
SimVarGearTailPosition Simvar args contain optional index and/or unit
```
func SimVarGearTotalPctExtended(args ...interface{}) SimVar
```
SimVarGearTotalPctExtended Simvar args contain optional index and/or unit
```
func SimVarGearWarning(args ...interface{}) SimVar
```
SimVarGearWarning Simvar args contain optional index and/or unit
```
func SimVarGeneralEngAntiIcePosition(args ...interface{}) SimVar
```
SimVarGeneralEngAntiIcePosition Simvar args contain optional index and/or unit
```
func SimVarGeneralEngCombustion(args ...interface{}) SimVar
```
SimVarGeneralEngCombustion Simvar args contain optional index and/or unit
```
func SimVarGeneralEngCombustionSoundPercent(args ...interface{}) SimVar
```
SimVarGeneralEngCombustionSoundPercent Simvar args contain optional index and/or unit
```
func SimVarGeneralEngDamagePercent(args ...interface{}) SimVar
```
SimVarGeneralEngDamagePercent Simvar args contain optional index and/or unit
```
func SimVarGeneralEngElapsedTime(args ...interface{}) SimVar
```
SimVarGeneralEngElapsedTime Simvar args contain optional index and/or unit
```
func SimVarGeneralEngExhaustGasTemperature(args ...interface{}) SimVar
```
SimVarGeneralEngExhaustGasTemperature Simvar args contain optional index and/or unit
```
func SimVarGeneralEngFailed(args ...interface{}) SimVar
```
SimVarGeneralEngFailed Simvar args contain optional index and/or unit
```
func SimVarGeneralEngFuelPressure(args ...interface{}) SimVar
```
SimVarGeneralEngFuelPressure Simvar args contain optional index and/or unit
```
func SimVarGeneralEngFuelPumpOn(args ...interface{}) SimVar
```
SimVarGeneralEngFuelPumpOn Simvar args contain optional index and/or unit
```
func SimVarGeneralEngFuelPumpSwitch(args ...interface{}) SimVar
```
SimVarGeneralEngFuelPumpSwitch Simvar args contain optional index and/or unit
```
func SimVarGeneralEngFuelUsedSinceStart(args ...interface{}) SimVar
```
SimVarGeneralEngFuelUsedSinceStart Simvar args contain optional index and/or unit
```
func SimVarGeneralEngFuelValve(args ...interface{}) SimVar
```
SimVarGeneralEngFuelValve Simvar args contain optional index and/or unit
```
func SimVarGeneralEngGeneratorActive(args ...interface{}) SimVar
```
SimVarGeneralEngGeneratorActive Simvar args contain optional index and/or unit
```
func SimVarGeneralEngGeneratorSwitch(args ...interface{}) SimVar
```
SimVarGeneralEngGeneratorSwitch Simvar args contain optional index and/or unit
```
func SimVarGeneralEngMasterAlternator(args ...interface{}) SimVar
```
SimVarGeneralEngMasterAlternator Simvar args contain optional index and/or unit
```
func SimVarGeneralEngMaxReachedRpm(args ...interface{}) SimVar
```
SimVarGeneralEngMaxReachedRpm Simvar args contain optional index and/or unit
```
func SimVarGeneralEngMixtureLeverPosition(args ...interface{}) SimVar
```
SimVarGeneralEngMixtureLeverPosition Simvar args contain optional index and/or unit
```
func SimVarGeneralEngOilLeakedPercent(args ...interface{}) SimVar
```
SimVarGeneralEngOilLeakedPercent Simvar args contain optional index and/or unit
```
func SimVarGeneralEngOilPressure(args ...interface{}) SimVar
```
SimVarGeneralEngOilPressure Simvar args contain optional index and/or unit
```
func SimVarGeneralEngOilTemperature(args ...interface{}) SimVar
```
SimVarGeneralEngOilTemperature Simvar args contain optional index and/or unit
```
func SimVarGeneralEngPctMaxRpm(args ...interface{}) SimVar
```
SimVarGeneralEngPctMaxRpm Simvar args contain optional index and/or unit
```
func SimVarGeneralEngPropellerLeverPosition(args ...interface{}) SimVar
```
SimVarGeneralEngPropellerLeverPosition Simvar args contain optional index and/or unit
```
func SimVarGeneralEngRpm(args ...interface{}) SimVar
```
SimVarGeneralEngRpm Simvar args contain optional index and/or unit
```
func SimVarGeneralEngStarter(args ...interface{}) SimVar
```
SimVarGeneralEngStarter Simvar args contain optional index and/or unit
```
func SimVarGeneralEngStarterActive(args ...interface{}) SimVar
```
SimVarGeneralEngStarterActive Simvar args contain optional index and/or unit
```
func SimVarGeneralEngThrottleLeverPosition(args ...interface{}) SimVar
```
SimVarGeneralEngThrottleLeverPosition Simvar args contain optional index and/or unit
```
func SimVarGenerator(iFace interface{}) ([]SimVar, error)
```
```
func SimVarGpsApproachAirportId(args ...interface{}) SimVar
```
SimVarGpsApproachAirportId Simvar args contain optional index and/or unit
```
func SimVarGpsApproachApproachId(args ...interface{}) SimVar
```
SimVarGpsApproachApproachId Simvar args contain optional index and/or unit
```
func SimVarGpsApproachApproachIndex(args ...interface{}) SimVar
```
SimVarGpsApproachApproachIndex Simvar args contain optional index and/or unit
```
func SimVarGpsApproachApproachType(args ...interface{}) SimVar
```
SimVarGpsApproachApproachType Simvar args contain optional index and/or unit
```
func SimVarGpsApproachIsFinal(args ...interface{}) SimVar
```
SimVarGpsApproachIsFinal Simvar args contain optional index and/or unit
```
func SimVarGpsApproachIsMissed(args ...interface{}) SimVar
```
SimVarGpsApproachIsMissed Simvar args contain optional index and/or unit
```
func SimVarGpsApproachIsWpRunway(args ...interface{}) SimVar
```
SimVarGpsApproachIsWpRunway Simvar args contain optional index and/or unit
```
func SimVarGpsApproachMode(args ...interface{}) SimVar
```
SimVarGpsApproachMode Simvar args contain optional index and/or unit
```
func SimVarGpsApproachSegmentType(args ...interface{}) SimVar
```
SimVarGpsApproachSegmentType Simvar args contain optional index and/or unit
```
func SimVarGpsApproachTimezoneDeviation(args ...interface{}) SimVar
```
SimVarGpsApproachTimezoneDeviation Simvar args contain optional index and/or unit
```
func SimVarGpsApproachTransitionId(args ...interface{}) SimVar
```
SimVarGpsApproachTransitionId Simvar args contain optional index and/or unit
```
func SimVarGpsApproachTransitionIndex(args ...interface{}) SimVar
```
SimVarGpsApproachTransitionIndex Simvar args contain optional index and/or unit
```
func SimVarGpsApproachWpCount(args ...interface{}) SimVar
```
SimVarGpsApproachWpCount Simvar args contain optional index and/or unit
```
func SimVarGpsApproachWpIndex(args ...interface{}) SimVar
```
SimVarGpsApproachWpIndex Simvar args contain optional index and/or unit
```
func SimVarGpsApproachWpType(args ...interface{}) SimVar
```
SimVarGpsApproachWpType Simvar args contain optional index and/or unit
```
func SimVarGpsCourseToSteer(args ...interface{}) SimVar
```
SimVarGpsCourseToSteer Simvar args contain optional index and/or unit
```
func SimVarGpsDrivesNav1(args ...interface{}) SimVar
```
SimVarGpsDrivesNav1 Simvar
```
func SimVarGpsEta(args ...interface{}) SimVar
```
SimVarGpsEta Simvar args contain optional index and/or unit
```
func SimVarGpsEte(args ...interface{}) SimVar
```
SimVarGpsEte Simvar args contain optional index and/or unit
```
func SimVarGpsFlightPlanWpCount(args ...interface{}) SimVar
```
SimVarGpsFlightPlanWpCount Simvar args contain optional index and/or unit
```
func SimVarGpsFlightPlanWpIndex(args ...interface{}) SimVar
```
SimVarGpsFlightPlanWpIndex Simvar args contain optional index and/or unit
```
func SimVarGpsGroundMagneticTrack(args ...interface{}) SimVar
```
SimVarGpsGroundMagneticTrack Simvar args contain optional index and/or unit
```
func SimVarGpsGroundSpeed(args ...interface{}) SimVar
```
SimVarGpsGroundSpeed Simvar args contain optional index and/or unit
```
func SimVarGpsGroundTrueHeading(args ...interface{}) SimVar
```
SimVarGpsGroundTrueHeading Simvar args contain optional index and/or unit
```
func SimVarGpsGroundTrueTrack(args ...interface{}) SimVar
```
SimVarGpsGroundTrueTrack Simvar args contain optional index and/or unit
```
func SimVarGpsIsActiveFlightPlan(args ...interface{}) SimVar
```
SimVarGpsIsActiveFlightPlan Simvar args contain optional index and/or unit
```
func SimVarGpsIsActiveWayPoint(args ...interface{}) SimVar
```
SimVarGpsIsActiveWayPoint Simvar args contain optional index and/or unit
```
func SimVarGpsIsActiveWpLocked(args ...interface{}) SimVar
```
SimVarGpsIsActiveWpLocked Simvar args contain optional index and/or unit
```
func SimVarGpsIsApproachActive(args ...interface{}) SimVar
```
SimVarGpsIsApproachActive Simvar args contain optional index and/or unit
```
func SimVarGpsIsApproachLoaded(args ...interface{}) SimVar
```
SimVarGpsIsApproachLoaded Simvar args contain optional index and/or unit
```
func SimVarGpsIsArrived(args ...interface{}) SimVar
```
SimVarGpsIsArrived Simvar args contain optional index and/or unit
```
func SimVarGpsIsDirecttoFlightplan(args ...interface{}) SimVar
```
SimVarGpsIsDirecttoFlightplan Simvar args contain optional index and/or unit
```
func SimVarGpsMagvar(args ...interface{}) SimVar
```
SimVarGpsMagvar Simvar args contain optional index and/or unit
```
func SimVarGpsPositionAlt(args ...interface{}) SimVar
```
SimVarGpsPositionAlt Simvar args contain optional index and/or unit
```
func SimVarGpsPositionLat(args ...interface{}) SimVar
```
SimVarGpsPositionLat Simvar args contain optional index and/or unit
```
func SimVarGpsPositionLon(args ...interface{}) SimVar
```
SimVarGpsPositionLon Simvar args contain optional index and/or unit
```
func SimVarGpsTargetAltitude(args ...interface{}) SimVar
```
SimVarGpsTargetAltitude Simvar args contain optional index and/or unit
```
func SimVarGpsTargetDistance(args ...interface{}) SimVar
```
SimVarGpsTargetDistance Simvar args contain optional index and/or unit
```
func SimVarGpsWpBearing(args ...interface{}) SimVar
```
SimVarGpsWpBearing Simvar args contain optional index and/or unit
```
func SimVarGpsWpCrossTrk(args ...interface{}) SimVar
```
SimVarGpsWpCrossTrk Simvar args contain optional index and/or unit
```
func SimVarGpsWpDesiredTrack(args ...interface{}) SimVar
```
SimVarGpsWpDesiredTrack Simvar args contain optional index and/or unit
```
func SimVarGpsWpDistance(args ...interface{}) SimVar
```
SimVarGpsWpDistance Simvar args contain optional index and/or unit
```
func SimVarGpsWpEta(args ...interface{}) SimVar
```
SimVarGpsWpEta Simvar args contain optional index and/or unit
```
func SimVarGpsWpEte(args ...interface{}) SimVar
```
SimVarGpsWpEte Simvar args contain optional index and/or unit
```
func SimVarGpsWpNextAlt(args ...interface{}) SimVar
```
SimVarGpsWpNextAlt Simvar args contain optional index and/or unit
```
func SimVarGpsWpNextId(args ...interface{}) SimVar
```
SimVarGpsWpNextId Simvar args contain optional index and/or unit
```
func SimVarGpsWpNextLat(args ...interface{}) SimVar
```
SimVarGpsWpNextLat Simvar args contain optional index and/or unit
```
func SimVarGpsWpNextLon(args ...interface{}) SimVar
```
SimVarGpsWpNextLon Simvar args contain optional index and/or unit
```
func SimVarGpsWpPrevAlt(args ...interface{}) SimVar
```
SimVarGpsWpPrevAlt Simvar args contain optional index and/or unit
```
func SimVarGpsWpPrevId(args ...interface{}) SimVar
```
SimVarGpsWpPrevId Simvar args contain optional index and/or unit
```
func SimVarGpsWpPrevLat(args ...interface{}) SimVar
```
SimVarGpsWpPrevLat Simvar args contain optional index and/or unit
```
func SimVarGpsWpPrevLon(args ...interface{}) SimVar
```
SimVarGpsWpPrevLon Simvar args contain optional index and/or unit
```
func SimVarGpsWpPrevValid(args ...interface{}) SimVar
```
SimVarGpsWpPrevValid Simvar args contain optional index and/or unit
```
func SimVarGpsWpTrackAngleError(args ...interface{}) SimVar
```
SimVarGpsWpTrackAngleError Simvar args contain optional index and/or unit
```
func SimVarGpsWpTrueBearing(args ...interface{}) SimVar
```
SimVarGpsWpTrueBearing Simvar args contain optional index and/or unit
```
func SimVarGpsWpTrueReqHdg(args ...interface{}) SimVar
```
SimVarGpsWpTrueReqHdg Simvar args contain optional index and/or unit
```
func SimVarGpsWpVerticalSpeed(args ...interface{}) SimVar
```
SimVarGpsWpVerticalSpeed Simvar args contain optional index and/or unit
```
func SimVarGpwsSystemActive(args ...interface{}) SimVar
```
SimVarGpwsSystemActive Simvar args contain optional index and/or unit
```
func SimVarGpwsWarning(args ...interface{}) SimVar
```
SimVarGpwsWarning Simvar args contain optional index and/or unit
```
func SimVarGroundAltitude(args ...interface{}) SimVar
```
SimVarGroundAltitude Simvar args contain optional index and/or unit
```
func SimVarGroundVelocity(args ...interface{}) SimVar
```
SimVarGroundVelocity Simvar args contain optional index and/or unit
```
func SimVarGyroDriftError(args ...interface{}) SimVar
```
SimVarGyroDriftError Simvar args contain optional index and/or unit
```
func SimVarHeadingIndicator(args ...interface{}) SimVar
```
SimVarHeadingIndicator Simvar args contain optional index and/or unit
```
func SimVarHoldbackBarInstalled(args ...interface{}) SimVar
```
SimVarHoldbackBarInstalled Simvar args contain optional index and/or unit
```
func SimVarHsiBearing(args ...interface{}) SimVar
```
SimVarHsiBearing Simvar args contain optional index and/or unit
```
func SimVarHsiBearingValid(args ...interface{}) SimVar
```
SimVarHsiBearingValid Simvar args contain optional index and/or unit
```
func SimVarHsiCdiNeedle(args ...interface{}) SimVar
```
SimVarHsiCdiNeedle Simvar args contain optional index and/or unit
```
func SimVarHsiCdiNeedleValid(args ...interface{}) SimVar
```
SimVarHsiCdiNeedleValid Simvar args contain optional index and/or unit
```
func SimVarHsiDistance(args ...interface{}) SimVar
```
SimVarHsiDistance Simvar args contain optional index and/or unit
```
func SimVarHsiGsiNeedle(args ...interface{}) SimVar
```
SimVarHsiGsiNeedle Simvar args contain optional index and/or unit
```
func SimVarHsiGsiNeedleValid(args ...interface{}) SimVar
```
SimVarHsiGsiNeedleValid Simvar args contain optional index and/or unit
```
func SimVarHsiHasLocalizer(args ...interface{}) SimVar
```
SimVarHsiHasLocalizer Simvar args contain optional index and/or unit
```
func SimVarHsiSpeed(args ...interface{}) SimVar
```
SimVarHsiSpeed Simvar args contain optional index and/or unit
```
func SimVarHsiStationIdent(args ...interface{}) SimVar
```
SimVarHsiStationIdent Simvar args contain optional index and/or unit
```
func SimVarHsiTfFlags(args ...interface{}) SimVar
```
SimVarHsiTfFlags Simvar args contain optional index and/or unit
```
func SimVarHydraulicPressure(args ...interface{}) SimVar
```
SimVarHydraulicPressure Simvar args contain optional index and/or unit
```
func SimVarHydraulicReservoirPercent(args ...interface{}) SimVar
```
SimVarHydraulicReservoirPercent Simvar args contain optional index and/or unit
```
func SimVarHydraulicSwitch(args ...interface{}) SimVar
```
SimVarHydraulicSwitch Simvar args contain optional index and/or unit
```
func SimVarHydraulicSystemIntegrity(args ...interface{}) SimVar
```
SimVarHydraulicSystemIntegrity Simvar args contain optional index and/or unit
```
func SimVarIncidenceAlpha(args ...interface{}) SimVar
```
SimVarIncidenceAlpha Simvar args contain optional index and/or unit
```
func SimVarIncidenceBeta(args ...interface{}) SimVar
```
SimVarIncidenceBeta Simvar args contain optional index and/or unit
```
func SimVarIndicatedAltitude(args ...interface{}) SimVar
```
SimVarIndicatedAltitude Simvar args contain optional index and/or unit
```
func SimVarInductorCompassHeadingRef(args ...interface{}) SimVar
```
SimVarInductorCompassHeadingRef Simvar args contain optional index and/or unit
```
func SimVarInductorCompassPercentDeviation(args ...interface{}) SimVar
```
SimVarInductorCompassPercentDeviation Simvar args contain optional index and/or unit
```
func SimVarInnerMarker(args ...interface{}) SimVar
```
SimVarInnerMarker Simvar args contain optional index and/or unit
```
func SimVarInnerMarkerLatlonalt(args ...interface{}) SimVar
```
SimVarInnerMarkerLatlonalt Simvar args contain optional index and/or unit
```
func SimVarIsAltitudeFreezeOn(args ...interface{}) SimVar
```
SimVarIsAltitudeFreezeOn Simvar args contain optional index and/or unit
```
func SimVarIsAttachedToSling(args ...interface{}) SimVar
```
SimVarIsAttachedToSling Simvar args contain optional index and/or unit
```
func SimVarIsAttitudeFreezeOn(args ...interface{}) SimVar
```
SimVarIsAttitudeFreezeOn Simvar args contain optional index and/or unit
```
func SimVarIsGearFloats(args ...interface{}) SimVar
```
SimVarIsGearFloats Simvar args contain optional index and/or unit
```
func SimVarIsGearRetractable(args ...interface{}) SimVar
```
SimVarIsGearRetractable Simvar args contain optional index and/or unit
```
func SimVarIsGearSkids(args ...interface{}) SimVar
```
SimVarIsGearSkids Simvar args contain optional index and/or unit
```
func SimVarIsGearSkis(args ...interface{}) SimVar
```
SimVarIsGearSkis Simvar args contain optional index and/or unit
```
func SimVarIsGearWheels(args ...interface{}) SimVar
```
SimVarIsGearWheels Simvar args contain optional index and/or unit
```
func SimVarIsLatitudeLongitudeFreezeOn(args ...interface{}) SimVar
```
SimVarIsLatitudeLongitudeFreezeOn Simvar args contain optional index and/or unit
```
func SimVarIsSlewActive(args ...interface{}) SimVar
```
SimVarIsSlewActive Simvar args contain optional index and/or unit
```
func SimVarIsSlewAllowed(args ...interface{}) SimVar
```
SimVarIsSlewAllowed Simvar args contain optional index and/or unit
```
func SimVarIsTailDragger(args ...interface{}) SimVar
```
SimVarIsTailDragger Simvar args contain optional index and/or unit
```
func SimVarIsUserSim(args ...interface{}) SimVar
```
SimVarIsUserSim Simvar args contain optional index and/or unit
```
func SimVarKohlsmanSettingHg(args ...interface{}) SimVar
```
SimVarKohlsmanSettingHg Simvar args contain optional index and/or unit
```
func SimVarKohlsmanSettingMb(args ...interface{}) SimVar
```
SimVarKohlsmanSettingMb Simvar args contain optional index and/or unit
#### func [SimVarLandingLightPbh](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L606) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLandingLightPbh "Go to SimVarLandingLightPbh")
```
func SimVarLandingLightPbh(args ...interface{}) SimVar
```
SimVarLandingLightPbh Simvar args contain optional index and/or unit
```
func SimVarLaunchbarPosition(args ...interface{}) SimVar
```
SimVarLaunchbarPosition Simvar args contain optional index and/or unit
```
func SimVarLeadingEdgeFlapsLeftAngle(args ...interface{}) SimVar
```
SimVarLeadingEdgeFlapsLeftAngle Simvar args contain optional index and/or unit
```
func SimVarLeadingEdgeFlapsLeftPercent(args ...interface{}) SimVar
```
SimVarLeadingEdgeFlapsLeftPercent Simvar args contain optional index and/or unit
```
func SimVarLeadingEdgeFlapsRightAngle(args ...interface{}) SimVar
```
SimVarLeadingEdgeFlapsRightAngle Simvar args contain optional index and/or unit
```
func SimVarLeadingEdgeFlapsRightPercent(args ...interface{}) SimVar
```
SimVarLeadingEdgeFlapsRightPercent Simvar args contain optional index and/or unit
```
func SimVarLeftWheelRotationAngle(args ...interface{}) SimVar
```
SimVarLeftWheelRotationAngle Simvar args contain optional index and/or unit
```
func SimVarLeftWheelRpm(args ...interface{}) SimVar
```
SimVarLeftWheelRpm Simvar args contain optional index and/or unit
```
func SimVarLightBeacon(args ...interface{}) SimVar
```
SimVarLightBeacon Simvar args contain optional index and/or unit
```
func SimVarLightBeaconOn(args ...interface{}) SimVar
```
SimVarLightBeaconOn Simvar args contain optional index and/or unit
```
func SimVarLightBrakeOn(args ...interface{}) SimVar
```
SimVarLightBrakeOn Simvar args contain optional index and/or unit
```
func SimVarLightCabin(args ...interface{}) SimVar
```
SimVarLightCabin Simvar args contain optional index and/or unit
```
func SimVarLightCabinOn(args ...interface{}) SimVar
```
SimVarLightCabinOn Simvar args contain optional index and/or unit
```
func SimVarLightHeadOn(args ...interface{}) SimVar
```
SimVarLightHeadOn Simvar args contain optional index and/or unit
#### func [SimVarLightLanding](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3288) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLanding "Go to SimVarLightLanding")
```
func SimVarLightLanding(args ...interface{}) SimVar
```
SimVarLightLanding Simvar args contain optional index and/or unit
#### func [SimVarLightLandingOn](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L750) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarLightLandingOn "Go to SimVarLightLandingOn")
```
func SimVarLightLandingOn(args ...interface{}) SimVar
```
SimVarLightLandingOn Simvar args contain optional index and/or unit
```
func SimVarLightLogo(args ...interface{}) SimVar
```
SimVarLightLogo Simvar args contain optional index and/or unit
```
func SimVarLightLogoOn(args ...interface{}) SimVar
```
SimVarLightLogoOn Simvar args contain optional index and/or unit
```
func SimVarLightNav(args ...interface{}) SimVar
```
SimVarLightNav Simvar args contain optional index and/or unit
```
func SimVarLightNavOn(args ...interface{}) SimVar
```
SimVarLightNavOn Simvar args contain optional index and/or unit
```
func SimVarLightOnStates(args ...interface{}) SimVar
```
SimVarLightOnStates Simvar args contain optional index and/or unit
```
func SimVarLightPanel(args ...interface{}) SimVar
```
SimVarLightPanel Simvar args contain optional index and/or unit
```
func SimVarLightPanelOn(args ...interface{}) SimVar
```
SimVarLightPanelOn Simvar args contain optional index and/or unit
```
func SimVarLightRecognition(args ...interface{}) SimVar
```
SimVarLightRecognition Simvar args contain optional index and/or unit
```
func SimVarLightRecognitionOn(args ...interface{}) SimVar
```
SimVarLightRecognitionOn Simvar args contain optional index and/or unit
```
func SimVarLightStates(args ...interface{}) SimVar
```
SimVarLightStates Simvar args contain optional index and/or unit
```
func SimVarLightStrobe(args ...interface{}) SimVar
```
SimVarLightStrobe Simvar args contain optional index and/or unit
```
func SimVarLightStrobeOn(args ...interface{}) SimVar
```
SimVarLightStrobeOn Simvar args contain optional index and/or unit
```
func SimVarLightTaxi(args ...interface{}) SimVar
```
SimVarLightTaxi Simvar args contain optional index and/or unit
```
func SimVarLightTaxiOn(args ...interface{}) SimVar
```
SimVarLightTaxiOn Simvar args contain optional index and/or unit
```
func SimVarLightWing(args ...interface{}) SimVar
```
SimVarLightWing Simvar args contain optional index and/or unit
```
func SimVarLightWingOn(args ...interface{}) SimVar
```
SimVarLightWingOn Simvar args contain optional index and/or unit
```
func SimVarLinearClAlpha(args ...interface{}) SimVar
```
SimVarLinearClAlpha Simvar args contain optional index and/or unit
```
func SimVarLocalDayOfMonth(args ...interface{}) SimVar
```
SimVarLocalDayOfMonth Simvar args contain optional index and/or unit
```
func SimVarLocalDayOfWeek(args ...interface{}) SimVar
```
SimVarLocalDayOfWeek Simvar args contain optional index and/or unit
```
func SimVarLocalDayOfYear(args ...interface{}) SimVar
```
SimVarLocalDayOfYear Simvar args contain optional index and/or unit
```
func SimVarLocalMonthOfYear(args ...interface{}) SimVar
```
SimVarLocalMonthOfYear Simvar args contain optional index and/or unit
```
func SimVarLocalTime(args ...interface{}) SimVar
```
SimVarLocalTime Simvar args contain optional index and/or unit
```
func SimVarLocalYear(args ...interface{}) SimVar
```
SimVarLocalYear Simvar args contain optional index and/or unit
```
func SimVarMachMaxOperate(args ...interface{}) SimVar
```
SimVarMachMaxOperate Simvar args contain optional index and/or unit
```
func SimVarMagneticCompass(args ...interface{}) SimVar
```
SimVarMagneticCompass Simvar args contain optional index and/or unit
```
func SimVarMagvar(args ...interface{}) SimVar
```
SimVarMagvar Simvar args contain optional index and/or unit
#### func [SimVarManualFuelPumpHandle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9140) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarManualFuelPumpHandle "Go to SimVarManualFuelPumpHandle")
```
func SimVarManualFuelPumpHandle(args ...interface{}) SimVar
```
SimVarManualFuelPumpHandle Simvar args contain optional index and/or unit
```
func SimVarManualInstrumentLights(args ...interface{}) SimVar
```
SimVarManualInstrumentLights Simvar args contain optional index and/or unit
```
func SimVarMarkerBeaconState(args ...interface{}) SimVar
```
SimVarMarkerBeaconState Simvar args contain optional index and/or unit
```
func SimVarMarkerSound(args ...interface{}) SimVar
```
SimVarMarkerSound Simvar args contain optional index and/or unit
```
func SimVarMasterIgnitionSwitch(args ...interface{}) SimVar
```
SimVarMasterIgnitionSwitch Simvar args contain optional index and/or unit
```
func SimVarMaxGForce(args ...interface{}) SimVar
```
SimVarMaxGForce Simvar args contain optional index and/or unit
```
func SimVarMaxGrossWeight(args ...interface{}) SimVar
```
SimVarMaxGrossWeight Simvar args contain optional index and/or unit
```
func SimVarMaxRatedEngineRpm(args ...interface{}) SimVar
```
SimVarMaxRatedEngineRpm Simvar args contain optional index and/or unit
```
func SimVarMiddleMarker(args ...interface{}) SimVar
```
SimVarMiddleMarker Simvar args contain optional index and/or unit
```
func SimVarMiddleMarkerLatlonalt(args ...interface{}) SimVar
```
SimVarMiddleMarkerLatlonalt Simvar args contain optional index and/or unit
```
func SimVarMinDragVelocity(args ...interface{}) SimVar
```
SimVarMinDragVelocity Simvar args contain optional index and/or unit
```
func SimVarMinGForce(args ...interface{}) SimVar
```
SimVarMinGForce Simvar args contain optional index and/or unit
```
func SimVarNavActiveFrequency(args ...interface{}) SimVar
```
SimVarNavActiveFrequency Simvar args contain optional index and/or unit
```
func SimVarNavAvailable(args ...interface{}) SimVar
```
SimVarNavAvailable Simvar args contain optional index and/or unit
```
func SimVarNavBackCourseFlags(args ...interface{}) SimVar
```
SimVarNavBackCourseFlags Simvar args contain optional index and/or unit
```
func SimVarNavCdi(args ...interface{}) SimVar
```
SimVarNavCdi Simvar args contain optional index and/or unit
```
func SimVarNavCodes(args ...interface{}) SimVar
```
SimVarNavCodes Simvar args contain optional index and/or unit
```
func SimVarNavDme(args ...interface{}) SimVar
```
SimVarNavDme Simvar args contain optional index and/or unit
```
func SimVarNavDmeLatlonalt(args ...interface{}) SimVar
```
SimVarNavDmeLatlonalt Simvar args contain optional index and/or unit
```
func SimVarNavDmespeed(args ...interface{}) SimVar
```
SimVarNavDmespeed Simvar args contain optional index and/or unit
```
func SimVarNavGlideSlope(args ...interface{}) SimVar
```
SimVarNavGlideSlope Simvar args contain optional index and/or unit
```
func SimVarNavGlideSlopeError(args ...interface{}) SimVar
```
SimVarNavGlideSlopeError Simvar args contain optional index and/or unit
```
func SimVarNavGsFlag(args ...interface{}) SimVar
```
SimVarNavGsFlag Simvar args contain optional index and/or unit
```
func SimVarNavGsLatlonalt(args ...interface{}) SimVar
```
SimVarNavGsLatlonalt Simvar args contain optional index and/or unit
```
func SimVarNavGsLlaf64(args ...interface{}) SimVar
```
SimVarNavGsLlaf64 Simvar
```
func SimVarNavGsi(args ...interface{}) SimVar
```
SimVarNavGsi Simvar args contain optional index and/or unit
```
func SimVarNavHasDme(args ...interface{}) SimVar
```
SimVarNavHasDme Simvar args contain optional index and/or unit
```
func SimVarNavHasGlideSlope(args ...interface{}) SimVar
```
SimVarNavHasGlideSlope Simvar args contain optional index and/or unit
```
func SimVarNavHasLocalizer(args ...interface{}) SimVar
```
SimVarNavHasLocalizer Simvar args contain optional index and/or unit
```
func SimVarNavHasNav(args ...interface{}) SimVar
```
SimVarNavHasNav Simvar args contain optional index and/or unit
```
func SimVarNavIdent(args ...interface{}) SimVar
```
SimVarNavIdent Simvar args contain optional index and/or unit
```
func SimVarNavLocalizer(args ...interface{}) SimVar
```
SimVarNavLocalizer Simvar args contain optional index and/or unit
```
func SimVarNavMagvar(args ...interface{}) SimVar
```
SimVarNavMagvar Simvar args contain optional index and/or unit
```
func SimVarNavName(args ...interface{}) SimVar
```
SimVarNavName Simvar args contain optional index and/or unit
```
func SimVarNavObs(args ...interface{}) SimVar
```
SimVarNavObs Simvar args contain optional index and/or unit
```
func SimVarNavRadial(args ...interface{}) SimVar
```
SimVarNavRadial Simvar args contain optional index and/or unit
```
func SimVarNavRadialError(args ...interface{}) SimVar
```
SimVarNavRadialError Simvar args contain optional index and/or unit
```
func SimVarNavRawGlideSlope(args ...interface{}) SimVar
```
SimVarNavRawGlideSlope Simvar args contain optional index and/or unit
```
func SimVarNavRelativeBearingToStation(args ...interface{}) SimVar
```
SimVarNavRelativeBearingToStation Simvar args contain optional index and/or unit
```
func SimVarNavSignal(args ...interface{}) SimVar
```
SimVarNavSignal Simvar args contain optional index and/or unit
```
func SimVarNavSound(args ...interface{}) SimVar
```
SimVarNavSound Simvar args contain optional index and/or unit
#### func [SimVarNavStandbyFrequency](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L4476) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarNavStandbyFrequency "Go to SimVarNavStandbyFrequency")
```
func SimVarNavStandbyFrequency(args ...interface{}) SimVar
```
SimVarNavStandbyFrequency Simvar args contain optional index and/or unit
```
func SimVarNavTofrom(args ...interface{}) SimVar
```
SimVarNavTofrom Simvar args contain optional index and/or unit
```
func SimVarNavVorLatlonalt(args ...interface{}) SimVar
```
SimVarNavVorLatlonalt Simvar args contain optional index and/or unit
```
func SimVarNavVorLlaf64(args ...interface{}) SimVar
```
SimVarNavVorLlaf64 Simvar
```
func SimVarNumFuelSelectors(args ...interface{}) SimVar
```
SimVarNumFuelSelectors Simvar args contain optional index and/or unit
```
func SimVarNumberOfCatapults(args ...interface{}) SimVar
```
SimVarNumberOfCatapults Simvar args contain optional index and/or unit
```
func SimVarNumberOfEngines(args ...interface{}) SimVar
```
SimVarNumberOfEngines Simvar args contain optional index and/or unit
```
func SimVarOuterMarker(args ...interface{}) SimVar
```
SimVarOuterMarker Simvar args contain optional index and/or unit
```
func SimVarOuterMarkerLatlonalt(args ...interface{}) SimVar
```
SimVarOuterMarkerLatlonalt Simvar args contain optional index and/or unit
```
func SimVarOverspeedWarning(args ...interface{}) SimVar
```
SimVarOverspeedWarning Simvar args contain optional index and/or unit
```
func SimVarPanelAntiIceSwitch(args ...interface{}) SimVar
```
SimVarPanelAntiIceSwitch Simvar args contain optional index and/or unit
```
func SimVarPanelAutoFeatherSwitch(args ...interface{}) SimVar
```
SimVarPanelAutoFeatherSwitch Simvar args contain optional index and/or unit
```
func SimVarPartialPanelAdf(args ...interface{}) SimVar
```
SimVarPartialPanelAdf Simvar args contain optional index and/or unit
```
func SimVarPartialPanelAirspeed(args ...interface{}) SimVar
```
SimVarPartialPanelAirspeed Simvar args contain optional index and/or unit
```
func SimVarPartialPanelAltimeter(args ...interface{}) SimVar
```
SimVarPartialPanelAltimeter Simvar args contain optional index and/or unit
```
func SimVarPartialPanelAttitude(args ...interface{}) SimVar
```
SimVarPartialPanelAttitude Simvar args contain optional index and/or unit
```
func SimVarPartialPanelAvionics(args ...interface{}) SimVar
```
SimVarPartialPanelAvionics Simvar args contain optional index and/or unit
```
func SimVarPartialPanelComm(args ...interface{}) SimVar
```
SimVarPartialPanelComm Simvar args contain optional index and/or unit
```
func SimVarPartialPanelCompass(args ...interface{}) SimVar
```
SimVarPartialPanelCompass Simvar args contain optional index and/or unit
```
func SimVarPartialPanelElectrical(args ...interface{}) SimVar
```
SimVarPartialPanelElectrical Simvar args contain optional index and/or unit
```
func SimVarPartialPanelEngine(args ...interface{}) SimVar
```
SimVarPartialPanelEngine Simvar args contain optional index and/or unit
```
func SimVarPartialPanelFuelIndicator(args ...interface{}) SimVar
```
SimVarPartialPanelFuelIndicator Simvar args contain optional index and/or unit
```
func SimVarPartialPanelHeading(args ...interface{}) SimVar
```
SimVarPartialPanelHeading Simvar args contain optional index and/or unit
```
func SimVarPartialPanelNav(args ...interface{}) SimVar
```
SimVarPartialPanelNav Simvar args contain optional index and/or unit
```
func SimVarPartialPanelPitot(args ...interface{}) SimVar
```
SimVarPartialPanelPitot Simvar args contain optional index and/or unit
```
func SimVarPartialPanelTransponder(args ...interface{}) SimVar
```
SimVarPartialPanelTransponder Simvar args contain optional index and/or unit
```
func SimVarPartialPanelTurnCoordinator(args ...interface{}) SimVar
```
SimVarPartialPanelTurnCoordinator Simvar args contain optional index and/or unit
```
func SimVarPartialPanelVacuum(args ...interface{}) SimVar
```
SimVarPartialPanelVacuum Simvar args contain optional index and/or unit
```
func SimVarPartialPanelVerticalVelocity(args ...interface{}) SimVar
```
SimVarPartialPanelVerticalVelocity Simvar args contain optional index and/or unit
```
func SimVarPayloadStationCount(args ...interface{}) SimVar
```
SimVarPayloadStationCount Simvar args contain optional index and/or unit
```
func SimVarPayloadStationName(args ...interface{}) SimVar
```
SimVarPayloadStationName Simvar args contain optional index and/or unit
```
func SimVarPayloadStationNumSimobjects(args ...interface{}) SimVar
```
SimVarPayloadStationNumSimobjects Simvar args contain optional index and/or unit
```
func SimVarPayloadStationObject(args ...interface{}) SimVar
```
SimVarPayloadStationObject Simvar args contain optional index and/or unit
```
func SimVarPayloadStationWeight(args ...interface{}) SimVar
```
SimVarPayloadStationWeight Simvar args contain optional index and/or unit
```
func SimVarPitotHeat(args ...interface{}) SimVar
```
SimVarPitotHeat Simvar args contain optional index and/or unit
```
func SimVarPitotIcePct(args ...interface{}) SimVar
```
SimVarPitotIcePct Simvar args contain optional index and/or unit
```
func SimVarPlaneAltAboveGround(args ...interface{}) SimVar
```
SimVarPlaneAltAboveGround Simvar args contain optional index and/or unit
```
func SimVarPlaneAltitude(args ...interface{}) SimVar
```
SimVarPlaneAltitude Simvar args contain optional index and/or unit
```
func SimVarPlaneBankDegrees(args ...interface{}) SimVar
```
SimVarPlaneBankDegrees Simvar args contain optional index and/or unit
```
func SimVarPlaneHeadingDegreesGyro(args ...interface{}) SimVar
```
SimVarPlaneHeadingDegreesGyro Simvar args contain optional index and/or unit
```
func SimVarPlaneHeadingDegreesMagnetic(args ...interface{}) SimVar
```
SimVarPlaneHeadingDegreesMagnetic Simvar args contain optional index and/or unit
```
func SimVarPlaneHeadingDegreesTrue(args ...interface{}) SimVar
```
SimVarPlaneHeadingDegreesTrue Simvar args contain optional index and/or unit
```
func SimVarPlaneLatitude(args ...interface{}) SimVar
```
SimVarPlaneLatitude Simvar args contain optional index and/or unit
```
func SimVarPlaneLongitude(args ...interface{}) SimVar
```
SimVarPlaneLongitude Simvar args contain optional index and/or unit
```
func SimVarPlanePitchDegrees(args ...interface{}) SimVar
```
SimVarPlanePitchDegrees Simvar args contain optional index and/or unit
```
func SimVarPressureAltitude(args ...interface{}) SimVar
```
SimVarPressureAltitude Simvar args contain optional index and/or unit
```
func SimVarPressurizationCabinAltitude(args ...interface{}) SimVar
```
SimVarPressurizationCabinAltitude Simvar args contain optional index and/or unit
```
func SimVarPressurizationCabinAltitudeGoal(args ...interface{}) SimVar
```
SimVarPressurizationCabinAltitudeGoal Simvar args contain optional index and/or unit
```
func SimVarPressurizationCabinAltitudeRate(args ...interface{}) SimVar
```
SimVarPressurizationCabinAltitudeRate Simvar args contain optional index and/or unit
```
func SimVarPressurizationDumpSwitch(args ...interface{}) SimVar
```
SimVarPressurizationDumpSwitch Simvar args contain optional index and/or unit
```
func SimVarPressurizationPressureDifferential(args ...interface{}) SimVar
```
SimVarPressurizationPressureDifferential Simvar args contain optional index and/or unit
```
func SimVarPropAutoCruiseActive(args ...interface{}) SimVar
```
SimVarPropAutoCruiseActive Simvar args contain optional index and/or unit
```
func SimVarPropAutoFeatherArmed(args ...interface{}) SimVar
```
SimVarPropAutoFeatherArmed Simvar args contain optional index and/or unit
```
func SimVarPropBeta(args ...interface{}) SimVar
```
SimVarPropBeta Simvar args contain optional index and/or unit
```
func SimVarPropBetaMax(args ...interface{}) SimVar
```
SimVarPropBetaMax Simvar args contain optional index and/or unit
```
func SimVarPropBetaMin(args ...interface{}) SimVar
```
SimVarPropBetaMin Simvar args contain optional index and/or unit
```
func SimVarPropBetaMinReverse(args ...interface{}) SimVar
```
SimVarPropBetaMinReverse Simvar args contain optional index and/or unit
```
func SimVarPropDeiceSwitch(args ...interface{}) SimVar
```
SimVarPropDeiceSwitch Simvar args contain optional index and/or unit
```
func SimVarPropFeatherSwitch(args ...interface{}) SimVar
```
SimVarPropFeatherSwitch Simvar args contain optional index and/or unit
```
func SimVarPropFeathered(args ...interface{}) SimVar
```
SimVarPropFeathered Simvar args contain optional index and/or unit
```
func SimVarPropFeatheringInhibit(args ...interface{}) SimVar
```
SimVarPropFeatheringInhibit Simvar args contain optional index and/or unit
```
func SimVarPropMaxRpmPercent(args ...interface{}) SimVar
```
SimVarPropMaxRpmPercent Simvar args contain optional index and/or unit
```
func SimVarPropRotationAngle(args ...interface{}) SimVar
```
SimVarPropRotationAngle Simvar args contain optional index and/or unit
```
func SimVarPropRpm(args ...interface{}) SimVar
```
SimVarPropRpm Simvar args contain optional index and/or unit
```
func SimVarPropSyncActive(args ...interface{}) SimVar
```
SimVarPropSyncActive Simvar args contain optional index and/or unit
```
func SimVarPropSyncDeltaLever(args ...interface{}) SimVar
```
SimVarPropSyncDeltaLever Simvar args contain optional index and/or unit
```
func SimVarPropThrust(args ...interface{}) SimVar
```
SimVarPropThrust Simvar args contain optional index and/or unit
```
func SimVarPushbackAngle(args ...interface{}) SimVar
```
SimVarPushbackAngle Simvar args contain optional index and/or unit
```
func SimVarPushbackContactx(args ...interface{}) SimVar
```
SimVarPushbackContactx Simvar args contain optional index and/or unit
```
func SimVarPushbackContacty(args ...interface{}) SimVar
```
SimVarPushbackContacty Simvar args contain optional index and/or unit
```
func SimVarPushbackContactz(args ...interface{}) SimVar
```
SimVarPushbackContactz Simvar args contain optional index and/or unit
```
func SimVarPushbackState(args ...interface{}) SimVar
```
SimVarPushbackState Simvar args contain optional index and/or unit
```
func SimVarPushbackWait(args ...interface{}) SimVar
```
SimVarPushbackWait Simvar args contain optional index and/or unit
```
func SimVarRadInsSwitch(args ...interface{}) SimVar
```
SimVarRadInsSwitch Simvar args contain optional index and/or unit
```
func SimVarRadioHeight(args ...interface{}) SimVar
```
SimVarRadioHeight Simvar args contain optional index and/or unit
```
func SimVarRealism(args ...interface{}) SimVar
```
SimVarRealism Simvar args contain optional index and/or unit
```
func SimVarRealismCrashDetection(args ...interface{}) SimVar
```
SimVarRealismCrashDetection Simvar args contain optional index and/or unit
```
func SimVarRealismCrashWithOthers(args ...interface{}) SimVar
```
SimVarRealismCrashWithOthers Simvar args contain optional index and/or unit
```
func SimVarRecipCarburetorTemperature(args ...interface{}) SimVar
```
SimVarRecipCarburetorTemperature Simvar args contain optional index and/or unit
```
func SimVarRecipEngAlternateAirPosition(args ...interface{}) SimVar
```
SimVarRecipEngAlternateAirPosition Simvar args contain optional index and/or unit
```
func SimVarRecipEngAntidetonationTankMaxQuantity(args ...interface{}) SimVar
```
SimVarRecipEngAntidetonationTankMaxQuantity Simvar args contain optional index and/or unit
```
func SimVarRecipEngAntidetonationTankQuantity(args ...interface{}) SimVar
```
SimVarRecipEngAntidetonationTankQuantity Simvar args contain optional index and/or unit
```
func SimVarRecipEngAntidetonationTankValve(args ...interface{}) SimVar
```
SimVarRecipEngAntidetonationTankValve Simvar args contain optional index and/or unit
```
func SimVarRecipEngBrakePower(args ...interface{}) SimVar
```
SimVarRecipEngBrakePower Simvar args contain optional index and/or unit
```
func SimVarRecipEngCoolantReservoirPercent(args ...interface{}) SimVar
```
SimVarRecipEngCoolantReservoirPercent Simvar args contain optional index and/or unit
```
func SimVarRecipEngCowlFlapPosition(args ...interface{}) SimVar
```
SimVarRecipEngCowlFlapPosition Simvar args contain optional index and/or unit
```
func SimVarRecipEngCylinderHeadTemperature(args ...interface{}) SimVar
```
SimVarRecipEngCylinderHeadTemperature Simvar args contain optional index and/or unit
```
func SimVarRecipEngCylinderHealth(args ...interface{}) SimVar
```
SimVarRecipEngCylinderHealth Simvar args contain optional index and/or unit
```
func SimVarRecipEngDetonating(args ...interface{}) SimVar
```
SimVarRecipEngDetonating Simvar args contain optional index and/or unit
```
func SimVarRecipEngEmergencyBoostActive(args ...interface{}) SimVar
```
SimVarRecipEngEmergencyBoostActive Simvar args contain optional index and/or unit
```
func SimVarRecipEngEmergencyBoostElapsedTime(args ...interface{}) SimVar
```
SimVarRecipEngEmergencyBoostElapsedTime Simvar args contain optional index and/or unit
```
func SimVarRecipEngFuelAvailable(args ...interface{}) SimVar
```
SimVarRecipEngFuelAvailable Simvar args contain optional index and/or unit
```
func SimVarRecipEngFuelFlow(args ...interface{}) SimVar
```
SimVarRecipEngFuelFlow Simvar args contain optional index and/or unit
```
func SimVarRecipEngFuelNumberTanksUsed(args ...interface{}) SimVar
```
SimVarRecipEngFuelNumberTanksUsed Simvar args contain optional index and/or unit
```
func SimVarRecipEngFuelTankSelector(args ...interface{}) SimVar
```
SimVarRecipEngFuelTankSelector Simvar args contain optional index and/or unit
```
func SimVarRecipEngFuelTanksUsed(args ...interface{}) SimVar
```
SimVarRecipEngFuelTanksUsed Simvar args contain optional index and/or unit
```
func SimVarRecipEngLeftMagneto(args ...interface{}) SimVar
```
SimVarRecipEngLeftMagneto Simvar args contain optional index and/or unit
```
func SimVarRecipEngManifoldPressure(args ...interface{}) SimVar
```
SimVarRecipEngManifoldPressure Simvar args contain optional index and/or unit
```
func SimVarRecipEngNitrousTankMaxQuantity(args ...interface{}) SimVar
```
SimVarRecipEngNitrousTankMaxQuantity Simvar args contain optional index and/or unit
```
func SimVarRecipEngNitrousTankQuantity(args ...interface{}) SimVar
```
SimVarRecipEngNitrousTankQuantity Simvar args contain optional index and/or unit
```
func SimVarRecipEngNitrousTankValve(args ...interface{}) SimVar
```
SimVarRecipEngNitrousTankValve Simvar args contain optional index and/or unit
```
func SimVarRecipEngNumCylinders(args ...interface{}) SimVar
```
SimVarRecipEngNumCylinders Simvar args contain optional index and/or unit
```
func SimVarRecipEngNumCylindersFailed(args ...interface{}) SimVar
```
SimVarRecipEngNumCylindersFailed Simvar args contain optional index and/or unit
```
func SimVarRecipEngPrimer(args ...interface{}) SimVar
```
SimVarRecipEngPrimer Simvar args contain optional index and/or unit
```
func SimVarRecipEngRadiatorTemperature(args ...interface{}) SimVar
```
SimVarRecipEngRadiatorTemperature Simvar args contain optional index and/or unit
```
func SimVarRecipEngRightMagneto(args ...interface{}) SimVar
```
SimVarRecipEngRightMagneto Simvar args contain optional index and/or unit
```
func SimVarRecipEngStarterTorque(args ...interface{}) SimVar
```
SimVarRecipEngStarterTorque Simvar args contain optional index and/or unit
```
func SimVarRecipEngTurbineInletTemperature(args ...interface{}) SimVar
```
SimVarRecipEngTurbineInletTemperature Simvar args contain optional index and/or unit
```
func SimVarRecipEngTurbochargerFailed(args ...interface{}) SimVar
```
SimVarRecipEngTurbochargerFailed Simvar args contain optional index and/or unit
```
func SimVarRecipEngWastegatePosition(args ...interface{}) SimVar
```
SimVarRecipEngWastegatePosition Simvar args contain optional index and/or unit
```
func SimVarRecipMixtureRatio(args ...interface{}) SimVar
```
SimVarRecipMixtureRatio Simvar args contain optional index and/or unit
#### func [SimVarRelativeWindVelocityBodyX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3588) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyX "Go to SimVarRelativeWindVelocityBodyX")
```
func SimVarRelativeWindVelocityBodyX(args ...interface{}) SimVar
```
SimVarRelativeWindVelocityBodyX Simvar args contain optional index and/or unit
#### func [SimVarRelativeWindVelocityBodyY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3600) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyY "Go to SimVarRelativeWindVelocityBodyY")
```
func SimVarRelativeWindVelocityBodyY(args ...interface{}) SimVar
```
SimVarRelativeWindVelocityBodyY Simvar args contain optional index and/or unit
#### func [SimVarRelativeWindVelocityBodyZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3612) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRelativeWindVelocityBodyZ "Go to SimVarRelativeWindVelocityBodyZ")
```
func SimVarRelativeWindVelocityBodyZ(args ...interface{}) SimVar
```
SimVarRelativeWindVelocityBodyZ Simvar args contain optional index and/or unit
```
func SimVarRetractFloatSwitch(args ...interface{}) SimVar
```
SimVarRetractFloatSwitch Simvar args contain optional index and/or unit
```
func SimVarRetractLeftFloatExtended(args ...interface{}) SimVar
```
SimVarRetractLeftFloatExtended Simvar args contain optional index and/or unit
```
func SimVarRetractRightFloatExtended(args ...interface{}) SimVar
```
SimVarRetractRightFloatExtended Simvar args contain optional index and/or unit
```
func SimVarRightWheelRotationAngle(args ...interface{}) SimVar
```
SimVarRightWheelRotationAngle Simvar args contain optional index and/or unit
```
func SimVarRightWheelRpm(args ...interface{}) SimVar
```
SimVarRightWheelRpm Simvar args contain optional index and/or unit
#### func [SimVarRotationVelocityBodyX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3552) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyX "Go to SimVarRotationVelocityBodyX")
```
func SimVarRotationVelocityBodyX(args ...interface{}) SimVar
```
SimVarRotationVelocityBodyX Simvar args contain optional index and/or unit
#### func [SimVarRotationVelocityBodyY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3564) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyY "Go to SimVarRotationVelocityBodyY")
```
func SimVarRotationVelocityBodyY(args ...interface{}) SimVar
```
SimVarRotationVelocityBodyY Simvar args contain optional index and/or unit
#### func [SimVarRotationVelocityBodyZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3576) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotationVelocityBodyZ "Go to SimVarRotationVelocityBodyZ")
```
func SimVarRotationVelocityBodyZ(args ...interface{}) SimVar
```
SimVarRotationVelocityBodyZ Simvar args contain optional index and/or unit
```
func SimVarRotorBrakeActive(args ...interface{}) SimVar
```
SimVarRotorBrakeActive Simvar args contain optional index and/or unit
#### func [SimVarRotorBrakeHandlePos](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7522) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarRotorBrakeHandlePos "Go to SimVarRotorBrakeHandlePos")
```
func SimVarRotorBrakeHandlePos(args ...interface{}) SimVar
```
SimVarRotorBrakeHandlePos Simvar args contain optional index and/or unit
```
func SimVarRotorChipDetected(args ...interface{}) SimVar
```
SimVarRotorChipDetected Simvar args contain optional index and/or unit
```
func SimVarRotorClutchActive(args ...interface{}) SimVar
```
SimVarRotorClutchActive Simvar args contain optional index and/or unit
```
func SimVarRotorClutchSwitchPos(args ...interface{}) SimVar
```
SimVarRotorClutchSwitchPos Simvar args contain optional index and/or unit
```
func SimVarRotorGovActive(args ...interface{}) SimVar
```
SimVarRotorGovActive Simvar args contain optional index and/or unit
```
func SimVarRotorGovSwitchPos(args ...interface{}) SimVar
```
SimVarRotorGovSwitchPos Simvar args contain optional index and/or unit
```
func SimVarRotorLateralTrimPct(args ...interface{}) SimVar
```
SimVarRotorLateralTrimPct Simvar args contain optional index and/or unit
```
func SimVarRotorRotationAngle(args ...interface{}) SimVar
```
SimVarRotorRotationAngle Simvar args contain optional index and/or unit
```
func SimVarRotorRpmPct(args ...interface{}) SimVar
```
SimVarRotorRpmPct Simvar args contain optional index and/or unit
```
func SimVarRotorTemperature(args ...interface{}) SimVar
```
SimVarRotorTemperature Simvar args contain optional index and/or unit
```
func SimVarRudderDeflection(args ...interface{}) SimVar
```
SimVarRudderDeflection Simvar args contain optional index and/or unit
```
func SimVarRudderDeflectionPct(args ...interface{}) SimVar
```
SimVarRudderDeflectionPct Simvar args contain optional index and/or unit
```
func SimVarRudderPedalIndicator(args ...interface{}) SimVar
```
SimVarRudderPedalIndicator Simvar args contain optional index and/or unit
```
func SimVarRudderPedalPosition(args ...interface{}) SimVar
```
SimVarRudderPedalPosition Simvar args contain optional index and/or unit
```
func SimVarRudderPosition(args ...interface{}) SimVar
```
SimVarRudderPosition Simvar args contain optional index and/or unit
```
func SimVarRudderTrim(args ...interface{}) SimVar
```
SimVarRudderTrim Simvar args contain optional index and/or unit
```
func SimVarRudderTrimPct(args ...interface{}) SimVar
```
SimVarRudderTrimPct Simvar args contain optional index and/or unit
```
func SimVarSeaLevelPressure(args ...interface{}) SimVar
```
SimVarSeaLevelPressure Simvar args contain optional index and/or unit
```
func SimVarSelectedDme(args ...interface{}) SimVar
```
SimVarSelectedDme Simvar args contain optional index and/or unit
#### func [SimVarSemibodyLoadfactorY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9272) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorY "Go to SimVarSemibodyLoadfactorY")
```
func SimVarSemibodyLoadfactorY(args ...interface{}) SimVar
```
SimVarSemibodyLoadfactorY Simvar args contain optional index and/or unit
#### func [SimVarSemibodyLoadfactorYdot](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9284) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSemibodyLoadfactorYdot "Go to SimVarSemibodyLoadfactorYdot")
```
func SimVarSemibodyLoadfactorYdot(args ...interface{}) SimVar
```
SimVarSemibodyLoadfactorYdot Simvar args contain optional index and/or unit
```
func SimVarSigmaSqrt(args ...interface{}) SimVar
```
SimVarSigmaSqrt Simvar args contain optional index and/or unit
```
func SimVarSimDisabled(args ...interface{}) SimVar
```
SimVarSimDisabled Simvar args contain optional index and/or unit
```
func SimVarSimOnGround(args ...interface{}) SimVar
```
SimVarSimOnGround Simvar args contain optional index and/or unit
```
func SimVarSimulatedRadius(args ...interface{}) SimVar
```
SimVarSimulatedRadius Simvar args contain optional index and/or unit
```
func SimVarSimulationRate(args ...interface{}) SimVar
```
SimVarSimulationRate Simvar args contain optional index and/or unit
```
func SimVarSlingActivePayloadStation(args ...interface{}) SimVar
```
SimVarSlingActivePayloadStation Simvar args contain optional index and/or unit
```
func SimVarSlingCableBroken(args ...interface{}) SimVar
```
SimVarSlingCableBroken Simvar args contain optional index and/or unit
```
func SimVarSlingCableExtendedLength(args ...interface{}) SimVar
```
SimVarSlingCableExtendedLength Simvar args contain optional index and/or unit
```
func SimVarSlingHoistPercentDeployed(args ...interface{}) SimVar
```
SimVarSlingHoistPercentDeployed Simvar args contain optional index and/or unit
```
func SimVarSlingHookInPickupMode(args ...interface{}) SimVar
```
SimVarSlingHookInPickupMode Simvar args contain optional index and/or unit
```
func SimVarSlingObjectAttached(args ...interface{}) SimVar
```
SimVarSlingObjectAttached Simvar args contain optional index and/or unit
```
func SimVarSmokeEnable(args ...interface{}) SimVar
```
SimVarSmokeEnable Simvar args contain optional index and/or unit
```
func SimVarSmokesystemAvailable(args ...interface{}) SimVar
```
SimVarSmokesystemAvailable Simvar args contain optional index and/or unit
```
func SimVarSpoilerAvailable(args ...interface{}) SimVar
```
SimVarSpoilerAvailable Simvar args contain optional index and/or unit
```
func SimVarSpoilersArmed(args ...interface{}) SimVar
```
SimVarSpoilersArmed Simvar args contain optional index and/or unit
#### func [SimVarSpoilersHandlePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L5963) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarSpoilersHandlePosition "Go to SimVarSpoilersHandlePosition")
```
func SimVarSpoilersHandlePosition(args ...interface{}) SimVar
```
SimVarSpoilersHandlePosition Simvar args contain optional index and/or unit
```
func SimVarSpoilersLeftPosition(args ...interface{}) SimVar
```
SimVarSpoilersLeftPosition Simvar args contain optional index and/or unit
```
func SimVarSpoilersRightPosition(args ...interface{}) SimVar
```
SimVarSpoilersRightPosition Simvar args contain optional index and/or unit
```
func SimVarStallAlpha(args ...interface{}) SimVar
```
SimVarStallAlpha Simvar args contain optional index and/or unit
```
func SimVarStallHornAvailable(args ...interface{}) SimVar
```
SimVarStallHornAvailable Simvar args contain optional index and/or unit
```
func SimVarStallWarning(args ...interface{}) SimVar
```
SimVarStallWarning Simvar args contain optional index and/or unit
#### func [SimVarStandardAtmTemperature](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L7510) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStandardAtmTemperature "Go to SimVarStandardAtmTemperature")
```
func SimVarStandardAtmTemperature(args ...interface{}) SimVar
```
SimVarStandardAtmTemperature Simvar args contain optional index and/or unit
```
func SimVarStaticCgToGround(args ...interface{}) SimVar
```
SimVarStaticCgToGround Simvar args contain optional index and/or unit
```
func SimVarStaticPitch(args ...interface{}) SimVar
```
SimVarStaticPitch Simvar args contain optional index and/or unit
```
func SimVarSteerInputControl(args ...interface{}) SimVar
```
SimVarSteerInputControl Simvar args contain optional index and/or unit
```
func SimVarStrobesAvailable(args ...interface{}) SimVar
```
SimVarStrobesAvailable Simvar args contain optional index and/or unit
```
func SimVarStructAmbientWind(args ...interface{}) SimVar
```
SimVarStructAmbientWind Simvar args contain optional index and/or unit
#### func [SimVarStructBodyRotationVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1158) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyRotationVelocity "Go to SimVarStructBodyRotationVelocity")
```
func SimVarStructBodyRotationVelocity(args ...interface{}) SimVar
```
SimVarStructBodyRotationVelocity Simvar args contain optional index and/or unit
#### func [SimVarStructBodyVelocity](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L1146) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarStructBodyVelocity "Go to SimVarStructBodyVelocity")
```
func SimVarStructBodyVelocity(args ...interface{}) SimVar
```
SimVarStructBodyVelocity Simvar args contain optional index and/or unit
```
func SimVarStructEnginePosition(args ...interface{}) SimVar
```
SimVarStructEnginePosition Simvar args contain optional index and/or unit
```
func SimVarStructEyepointDynamicAngle(args ...interface{}) SimVar
```
SimVarStructEyepointDynamicAngle Simvar args contain optional index and/or unit
```
func SimVarStructEyepointDynamicOffset(args ...interface{}) SimVar
```
SimVarStructEyepointDynamicOffset Simvar args contain optional index and/or unit
```
func SimVarStructLatlonalt(args ...interface{}) SimVar
```
SimVarStructLatlonalt Simvar args contain optional index and/or unit
```
func SimVarStructLatlonaltpbh(args ...interface{}) SimVar
```
SimVarStructLatlonaltpbh Simvar args contain optional index and/or unit
```
func SimVarStructSurfaceRelativeVelocity(args ...interface{}) SimVar
```
SimVarStructSurfaceRelativeVelocity Simvar args contain optional index and/or unit
```
func SimVarStructWorldAcceleration(args ...interface{}) SimVar
```
SimVarStructWorldAcceleration Simvar args contain optional index and/or unit
```
func SimVarStructWorldRotationVelocity(args ...interface{}) SimVar
```
SimVarStructWorldRotationVelocity Simvar args contain optional index and/or unit
```
func SimVarStructWorldvelocity(args ...interface{}) SimVar
```
SimVarStructWorldvelocity Simvar args contain optional index and/or unit
```
func SimVarStructuralDeiceSwitch(args ...interface{}) SimVar
```
SimVarStructuralDeiceSwitch Simvar args contain optional index and/or unit
```
func SimVarStructuralIcePct(args ...interface{}) SimVar
```
SimVarStructuralIcePct Simvar args contain optional index and/or unit
```
func SimVarSuctionPressure(args ...interface{}) SimVar
```
SimVarSuctionPressure Simvar args contain optional index and/or unit
```
func SimVarSurfaceCondition(args ...interface{}) SimVar
```
SimVarSurfaceCondition Simvar args contain optional index and/or unit
```
func SimVarSurfaceInfoValid(args ...interface{}) SimVar
```
SimVarSurfaceInfoValid Simvar args contain optional index and/or unit
```
func SimVarSurfaceType(args ...interface{}) SimVar
```
SimVarSurfaceType Simvar args contain optional index and/or unit
```
func SimVarTailhookPosition(args ...interface{}) SimVar
```
SimVarTailhookPosition Simvar args contain optional index and/or unit
```
func SimVarTailwheelLockOn(args ...interface{}) SimVar
```
SimVarTailwheelLockOn Simvar args contain optional index and/or unit
```
func SimVarThrottleLowerLimit(args ...interface{}) SimVar
```
SimVarThrottleLowerLimit Simvar args contain optional index and/or unit
```
func SimVarTimeOfDay(args ...interface{}) SimVar
```
SimVarTimeOfDay Simvar args contain optional index and/or unit
```
func SimVarTimeZoneOffset(args ...interface{}) SimVar
```
SimVarTimeZoneOffset Simvar args contain optional index and/or unit
```
func SimVarTitle(args ...interface{}) SimVar
```
SimVarTitle Simvar args contain optional index and/or unit
```
func SimVarToeBrakesAvailable(args ...interface{}) SimVar
```
SimVarToeBrakesAvailable Simvar args contain optional index and/or unit
```
func SimVarTotalAirTemperature(args ...interface{}) SimVar
```
SimVarTotalAirTemperature Simvar args contain optional index and/or unit
```
func SimVarTotalVelocity(args ...interface{}) SimVar
```
SimVarTotalVelocity Simvar args contain optional index and/or unit
```
func SimVarTotalWeight(args ...interface{}) SimVar
```
SimVarTotalWeight Simvar args contain optional index and/or unit
```
func SimVarTotalWeightCrossCoupledMoi(args ...interface{}) SimVar
```
SimVarTotalWeightCrossCoupledMoi Simvar args contain optional index and/or unit
```
func SimVarTotalWeightPitchMoi(args ...interface{}) SimVar
```
SimVarTotalWeightPitchMoi Simvar args contain optional index and/or unit
```
func SimVarTotalWeightRollMoi(args ...interface{}) SimVar
```
SimVarTotalWeightRollMoi Simvar args contain optional index and/or unit
```
func SimVarTotalWeightYawMoi(args ...interface{}) SimVar
```
SimVarTotalWeightYawMoi Simvar args contain optional index and/or unit
```
func SimVarTotalWorldVelocity(args ...interface{}) SimVar
```
SimVarTotalWorldVelocity Simvar args contain optional index and/or unit
```
func SimVarTowConnection(args ...interface{}) SimVar
```
SimVarTowConnection Simvar args contain optional index and/or unit
#### func [SimVarTowReleaseHandle](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L9630) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarTowReleaseHandle "Go to SimVarTowReleaseHandle")
```
func SimVarTowReleaseHandle(args ...interface{}) SimVar
```
SimVarTowReleaseHandle Simvar args contain optional index and/or unit
```
func SimVarTrailingEdgeFlapsLeftAngle(args ...interface{}) SimVar
```
SimVarTrailingEdgeFlapsLeftAngle Simvar args contain optional index and/or unit
```
func SimVarTrailingEdgeFlapsLeftPercent(args ...interface{}) SimVar
```
SimVarTrailingEdgeFlapsLeftPercent Simvar args contain optional index and/or unit
```
func SimVarTrailingEdgeFlapsRightAngle(args ...interface{}) SimVar
```
SimVarTrailingEdgeFlapsRightAngle Simvar args contain optional index and/or unit
```
func SimVarTrailingEdgeFlapsRightPercent(args ...interface{}) SimVar
```
SimVarTrailingEdgeFlapsRightPercent Simvar args contain optional index and/or unit
```
func SimVarTransponderAvailable(args ...interface{}) SimVar
```
SimVarTransponderAvailable Simvar args contain optional index and/or unit
```
func SimVarTransponderCode(args ...interface{}) SimVar
```
SimVarTransponderCode Simvar args contain optional index and/or unit
```
func SimVarTrueAirspeedSelected(args ...interface{}) SimVar
```
SimVarTrueAirspeedSelected Simvar args contain optional index and/or unit
```
func SimVarTurbEngAfterburner(args ...interface{}) SimVar
```
SimVarTurbEngAfterburner Simvar args contain optional index and/or unit
```
func SimVarTurbEngBleedAir(args ...interface{}) SimVar
```
SimVarTurbEngBleedAir Simvar args contain optional index and/or unit
```
func SimVarTurbEngCorrectedFf(args ...interface{}) SimVar
```
SimVarTurbEngCorrectedFf Simvar args contain optional index and/or unit
```
func SimVarTurbEngCorrectedN1(args ...interface{}) SimVar
```
SimVarTurbEngCorrectedN1 Simvar
```
func SimVarTurbEngCorrectedN2(args ...interface{}) SimVar
```
SimVarTurbEngCorrectedN2 Simvar
```
func SimVarTurbEngFuelAvailable(args ...interface{}) SimVar
```
SimVarTurbEngFuelAvailable Simvar args contain optional index and/or unit
```
func SimVarTurbEngFuelFlowPph(args ...interface{}) SimVar
```
SimVarTurbEngFuelFlowPph Simvar args contain optional index and/or unit
```
func SimVarTurbEngIgnitionSwitch(args ...interface{}) SimVar
```
SimVarTurbEngIgnitionSwitch Simvar args contain optional index and/or unit
```
func SimVarTurbEngItt(args ...interface{}) SimVar
```
SimVarTurbEngItt Simvar args contain optional index and/or unit
```
func SimVarTurbEngJetThrust(args ...interface{}) SimVar
```
SimVarTurbEngJetThrust Simvar args contain optional index and/or unit
```
func SimVarTurbEngMasterStarterSwitch(args ...interface{}) SimVar
```
SimVarTurbEngMasterStarterSwitch Simvar args contain optional index and/or unit
```
func SimVarTurbEngMaxTorquePercent(args ...interface{}) SimVar
```
SimVarTurbEngMaxTorquePercent Simvar args contain optional index and/or unit
```
func SimVarTurbEngN1(args ...interface{}) SimVar
```
SimVarTurbEngN1 Simvar
```
func SimVarTurbEngN2(args ...interface{}) SimVar
```
SimVarTurbEngN2 Simvar
```
func SimVarTurbEngNumTanksUsed(args ...interface{}) SimVar
```
SimVarTurbEngNumTanksUsed Simvar args contain optional index and/or unit
```
func SimVarTurbEngPressureRatio(args ...interface{}) SimVar
```
SimVarTurbEngPressureRatio Simvar args contain optional index and/or unit
```
func SimVarTurbEngPrimaryNozzlePercent(args ...interface{}) SimVar
```
SimVarTurbEngPrimaryNozzlePercent Simvar args contain optional index and/or unit
```
func SimVarTurbEngReverseNozzlePercent(args ...interface{}) SimVar
```
SimVarTurbEngReverseNozzlePercent Simvar args contain optional index and/or unit
```
func SimVarTurbEngTankSelector(args ...interface{}) SimVar
```
SimVarTurbEngTankSelector Simvar args contain optional index and/or unit
```
func SimVarTurbEngTanksUsed(args ...interface{}) SimVar
```
SimVarTurbEngTanksUsed Simvar args contain optional index and/or unit
```
func SimVarTurbEngVibration(args ...interface{}) SimVar
```
SimVarTurbEngVibration Simvar args contain optional index and/or unit
```
func SimVarTurnCoordinatorBall(args ...interface{}) SimVar
```
SimVarTurnCoordinatorBall Simvar args contain optional index and/or unit
```
func SimVarTurnIndicatorRate(args ...interface{}) SimVar
```
SimVarTurnIndicatorRate Simvar args contain optional index and/or unit
```
func SimVarTurnIndicatorSwitch(args ...interface{}) SimVar
```
SimVarTurnIndicatorSwitch Simvar args contain optional index and/or unit
```
func SimVarTypicalDescentRate(args ...interface{}) SimVar
```
SimVarTypicalDescentRate Simvar args contain optional index and/or unit
```
func SimVarUnitOfMeasure(args ...interface{}) SimVar
```
SimVarUnitOfMeasure Simvar args contain optional index and/or unit
```
func SimVarUnlimitedFuel(args ...interface{}) SimVar
```
SimVarUnlimitedFuel Simvar args contain optional index and/or unit
```
func SimVarUserInputEnabled(args ...interface{}) SimVar
```
SimVarUserInputEnabled Simvar args contain optional index and/or unit
```
func SimVarVariometerRate(args ...interface{}) SimVar
```
SimVarVariometerRate Simvar args contain optional index and/or unit
```
func SimVarVariometerSwitch(args ...interface{}) SimVar
```
SimVarVariometerSwitch Simvar args contain optional index and/or unit
#### func [SimVarVelocityBodyX](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3420) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyX "Go to SimVarVelocityBodyX")
```
func SimVarVelocityBodyX(args ...interface{}) SimVar
```
SimVarVelocityBodyX Simvar args contain optional index and/or unit
#### func [SimVarVelocityBodyY](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3432) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyY "Go to SimVarVelocityBodyY")
```
func SimVarVelocityBodyY(args ...interface{}) SimVar
```
SimVarVelocityBodyY Simvar args contain optional index and/or unit
#### func [SimVarVelocityBodyZ](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L3408) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarVelocityBodyZ "Go to SimVarVelocityBodyZ")
```
func SimVarVelocityBodyZ(args ...interface{}) SimVar
```
SimVarVelocityBodyZ Simvar args contain optional index and/or unit
```
func SimVarVelocityWorldX(args ...interface{}) SimVar
```
SimVarVelocityWorldX Simvar args contain optional index and/or unit
```
func SimVarVelocityWorldY(args ...interface{}) SimVar
```
SimVarVelocityWorldY Simvar args contain optional index and/or unit
```
func SimVarVelocityWorldZ(args ...interface{}) SimVar
```
SimVarVelocityWorldZ Simvar args contain optional index and/or unit
```
func SimVarVerticalSpeed(args ...interface{}) SimVar
```
SimVarVerticalSpeed Simvar args contain optional index and/or unit
```
func SimVarVisualModelRadius(args ...interface{}) SimVar
```
SimVarVisualModelRadius Simvar args contain optional index and/or unit
```
func SimVarWaterBallastValve(args ...interface{}) SimVar
```
SimVarWaterBallastValve Simvar args contain optional index and/or unit
```
func SimVarWaterLeftRudderExtended(args ...interface{}) SimVar
```
SimVarWaterLeftRudderExtended Simvar args contain optional index and/or unit
```
func SimVarWaterLeftRudderSteerAngle(args ...interface{}) SimVar
```
SimVarWaterLeftRudderSteerAngle Simvar args contain optional index and/or unit
```
func SimVarWaterLeftRudderSteerAnglePct(args ...interface{}) SimVar
```
SimVarWaterLeftRudderSteerAnglePct Simvar args contain optional index and/or unit
```
func SimVarWaterRightRudderExtended(args ...interface{}) SimVar
```
SimVarWaterRightRudderExtended Simvar args contain optional index and/or unit
```
func SimVarWaterRightRudderSteerAngle(args ...interface{}) SimVar
```
SimVarWaterRightRudderSteerAngle Simvar args contain optional index and/or unit
```
func SimVarWaterRightRudderSteerAnglePct(args ...interface{}) SimVar
```
SimVarWaterRightRudderSteerAnglePct Simvar args contain optional index and/or unit
#### func [SimVarWaterRudderHandlePosition](https://github.com/flysim-apps/simgo/blob/v1.2.0/simconnect/simvars.go#L6335) [ΒΆ](https://pkg.go.dev/github.com/flysim-apps/simgo/simconnect#SimVarWaterRudderHandlePosition "Go to SimVarWaterRudderHandlePosition")
```
func SimVarWaterRudderHandlePosition(args ...interface{}) SimVar
```
SimVarWaterRudderHandlePosition Simvar args contain optional index and/or unit
```
func SimVarWheelRotationAngle(args ...interface{}) SimVar
```
SimVarWheelRotationAngle Simvar args contain optional index and/or unit
```
func SimVarWheelRpm(args ...interface{}) SimVar
```
SimVarWheelRpm Simvar args contain optional index and/or unit
```
func SimVarWindshieldRainEffectAvailable(args ...interface{}) SimVar
```
SimVarWindshieldRainEffectAvailable Simvar args contain optional index and/or unit
```
func SimVarWingArea(args ...interface{}) SimVar
```
SimVarWingArea Simvar args contain optional index and/or unit
```
func SimVarWingFlexPct(args ...interface{}) SimVar
```
SimVarWingFlexPct Simvar args contain optional index and/or unit
```
func SimVarWingSpan(args ...interface{}) SimVar
```
SimVarWingSpan Simvar args contain optional index and/or unit
```
func SimVarWiskeyCompassIndicationDegrees(args ...interface{}) SimVar
```
SimVarWiskeyCompassIndicationDegrees Simvar args contain optional index and/or unit
```
func SimVarYawStringAngle(args ...interface{}) SimVar
```
SimVarYawStringAngle Simvar args contain optional index and/or unit
```
func SimVarYawStringPctExtended(args ...interface{}) SimVar
```
SimVarYawStringPctExtended Simvar args contain optional index and/or unit
```
func SimVarYokeXIndicator(args ...interface{}) SimVar
```
SimVarYokeXIndicator Simvar args contain optional index and/or unit
```
func SimVarYokeXPosition(args ...interface{}) SimVar
```
SimVarYokeXPosition Simvar args contain optional index and/or unit
```
func SimVarYokeYIndicator(args ...interface{}) SimVar
```
SimVarYokeYIndicator Simvar args contain optional index and/or unit
```
func SimVarYokeYPosition(args ...interface{}) SimVar
```
SimVarYokeYPosition Simvar args contain optional index and/or unit
```
func SimVarZeroLiftAlpha(args ...interface{}) SimVar
```
SimVarZeroLiftAlpha Simvar args contain optional index and/or unit
```
func SimVarZuluDayOfMonth(args ...interface{}) SimVar
```
SimVarZuluDayOfMonth Simvar args contain optional index and/or unit
```
func SimVarZuluDayOfWeek(args ...interface{}) SimVar
```
SimVarZuluDayOfWeek Simvar args contain optional index and/or unit
```
func SimVarZuluDayOfYear(args ...interface{}) SimVar
```
SimVarZuluDayOfYear Simvar args contain optional index and/or unit
```
func SimVarZuluMonthOfYear(args ...interface{}) SimVar
```
SimVarZuluMonthOfYear Simvar args contain optional index and/or unit
```
func SimVarZuluTime(args ...interface{}) SimVar
```
SimVarZuluTime Simvar args contain optional index and/or unit
```
func SimVarZuluYear(args ...interface{}) SimVar
```
SimVarZuluYear Simvar args contain optional index and/or unit
```
func (s *SimVar) GetData() []byte
```
GetInt lost precision
```
func (s *SimVar) GetSize() int
```
```
const (
UnitBool SimVarUnit = "Bool"
UnitFeetpersecond SimVarUnit = "Feetpersecond"
UnitPercentover100 SimVarUnit = "Percentover100"
UnitNumber SimVarUnit = "Number"
UnitGallons SimVarUnit = "Gallons"
UnitString SimVarUnit = "String"
UnitBoolString SimVarUnit = "Bool/String"
UnitFeet SimVarUnit = "Feet"
UnitSimconnectDataXyz SimVarUnit = "SimconnectDataXyz"
UnitMask SimVarUnit = "Mask"
UnitKnots SimVarUnit = "Knots"
UnitSimconnectDataWaypoint SimVarUnit = "SimconnectDataWaypoint"
UnitDegrees SimVarUnit = "Degrees"
UnitSeconds SimVarUnit = "Seconds"
UnitBoolean SimVarUnit = "Boolean"
UnitSimconnectDataLatlonalt SimVarUnit = "SimconnectDataLatlonalt"
UnitPercent SimVarUnit = "Percent"
UnitEnum SimVarUnit = "Enum"
UnitRpm SimVarUnit = "Rpm"
UnitRankine SimVarUnit = "Rankine"
UnitPsi SimVarUnit = "Psi"
UnitHours SimVarUnit = "Hours"
UnitPosition SimVarUnit = "Position"
Unitftlbpersecond SimVarUnit = "ftlbpersecond"
UnitFootpound SimVarUnit = "Footpound"
UnitCelsius SimVarUnit = "Celsius"
UnitPoundsperhour SimVarUnit = "Poundsperhour"
UnitRatio SimVarUnit = "Ratio"
UnitPounds SimVarUnit = "Pounds"
UnitRadians SimVarUnit = "Radians"
UnitFootpounds SimVarUnit = "Footpounds"
UnitpoundForcepersquareinch SimVarUnit = "pound-forcepersquareinch"
UnitinHg SimVarUnit = "inHg"
UnitPSI SimVarUnit = "PSI"
UnitFeetpersecondsquared SimVarUnit = "Feetpersecondsquared"
UnitMeters SimVarUnit = "Meters"
UnitMach SimVarUnit = "Mach"
UnitMillibars SimVarUnit = "Millibars"
UnitRadianspersecond SimVarUnit = "Radianspersecond"
UnitGforce SimVarUnit = "Gforce"
UnitFrequencyBCD16 SimVarUnit = "FrequencyBCD16"
UnitMHz SimVarUnit = "MHz"
UnitNauticalmiles SimVarUnit = "Nauticalmiles"
UnitFrequencyADFBCD32 SimVarUnit = "FrequencyADFBCD32"
UnitHz SimVarUnit = "Hz"
UnitBCO16 SimVarUnit = "BCO16"
UnitMeterspersecond SimVarUnit = "Meterspersecond"
UnitFlags SimVarUnit = "Flags"
Unitpsf SimVarUnit = "psf"
UnitPercentage SimVarUnit = "Percentage"
UnitFeetPMinute SimVarUnit = "Feet/minute"
UnitSlugspercubicfeet SimVarUnit = "Slugspercubicfeet"
UnitAmperes SimVarUnit = "Amperes"
UnitVolts SimVarUnit = "Volts"
UnitPoundforcepersquarefoot SimVarUnit = "Poundforcepersquarefoot"
UnitGForce SimVarUnit = "GForce"
UnitFeetperminute SimVarUnit = "Feetperminute"
UnitPoundspersquarefoot SimVarUnit = "Poundspersquarefoot"
Unitfootpounds SimVarUnit = "footpounds"
UnitSquarefeet SimVarUnit = "Squarefeet"
UnitPerradian SimVarUnit = "Perradian"
UnitMachs SimVarUnit = "Machs"
Unitslugfeetsquared SimVarUnit = "slugfeetsquared"
UnitAmps SimVarUnit = "Amps"
UnitPersecond SimVarUnit = "Persecond"
UnitString64 SimVarUnit = "String64"
UnitString8 SimVarUnit = "String8"
UnitVariablelengthstring SimVarUnit = "Variablelengthstring"
)
```
```
type SyscallSC struct {
}
```
```
func NewSyscallSC() (*SyscallSC, error)
```
NewsyscallSC.pinit all syscall
```
func (syscallSC *SyscallSC) WeatherCreateThermal(hSimConnect uintptr, RequestID uintptr, lat uintptr, lon uintptr, alt uintptr, radius uintptr, height uintptr, coreRate uintptr, coreTurbulence uintptr, sinkRate uintptr, sinkTurbulence uintptr, coreSize uintptr, coreTransitionSize uintptr, sinkLayerSize uintptr, sinkTransitionSize uintptr) error
```
```
func (syscallSC *SyscallSC) WeatherSetModeCustom(hSimConnect uintptr) error
```
```
func (syscallSC *SyscallSC) WeatherSetModeGlobal(hSimConnect uintptr) error
```
```
const (
SystemEvent1sec SystemEvent = "1sec"
SystemEvent4sec SystemEvent = "4sec"
SystemEvent6Hz SystemEvent = "6Hz"
SystemEventAircraftLoaded SystemEvent = "AircraftLoaded"
SystemEventCrashed SystemEvent = "Crashed"
SystemEventCrashReset SystemEvent = "CrashReset"
SystemEventFlightLoaded SystemEvent = "FlightLoaded"
SystemEventFlightSaved SystemEvent = "FlightSaved"
SystemEventFlightPlanActivated SystemEvent = "FlightPlanActivated"
SystemEventFlightPlanDeactivated SystemEvent = "FlightPlanDeactivated"
SystemEventFrame SystemEvent = "Frame"
SystemEventPause SystemEvent = "Pause"
SystemEventPaused SystemEvent = "Paused"
SystemEventPauseFrame SystemEvent = "PauseFrame"
SystemEventPositionChanged SystemEvent = "PositionChanged"
SystemEventSim SystemEvent = "Sim"
SystemEventSimStart SystemEvent = "SimStart"
SystemEventSimStop SystemEvent = "SimStop"
SystemEventSound SystemEvent = "Sound"
SystemEventUnpaused SystemEvent = "Unpaused"
SystemEventView SystemEvent = "View"
SystemEventWeatherModeChanged SystemEvent = "WeatherModeChanged"
SystemEventObjectAdded SystemEvent = "ObjectAdded"
SystemEventObjectRemoved SystemEvent = "ObjectRemoved"
SystemEventMissionCompleted SystemEvent = "MissionCompleted"
SystemEventCustomMissionActionExecuted SystemEvent = "CustomMissionActionExecuted"
SystemEventMultiplayerClientStarted SystemEvent = "MultiplayerClientStarted"
SystemEventMultiplayerServerStarted SystemEvent = "MultiplayerServerStarted"
SystemEventMultiplayerSessionEnded SystemEvent = "MultiplayerSessionEnded"
SystemEventRaceEnd SystemEvent = "RaceEnd"
SystemEventRaceLap SystemEvent = "RaceLap"
)
``` |
| Shard | 3 (laksa) |
| Root Hash | 12293604993604953403 |
| Unparsed URL | dev,go!pkg,/github.com/flysim-apps/simgo/simconnect s443 |