You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extends the python simconnect library for MSFS2020 with the capability to read A and L variables with help of the MobiFlight WASM module.
1
+
# MSFS Python SimConnect MobiFlight Extension
2
+
Extends the [python simconnect library](https://github.com/odwdinc/Python-SimConnect) for MSFS2020 with the capability to read A and L variables with help of the [MobiFlight](https://www.mobiflight.com) WASM module.
3
+
4
+
*```SimConnectMobiFlight``` inherits from ```SimConnect```, fixes an issue and adds the feature to register additional client data handlers.
5
+
*```MobiFlightVariableRequests``` implements the variable access via the MobiFlight WASM module.
6
+
* A collection of possible variables can be found [here](https://bitbucket.org/mobiflight/mobiflightfc/src/master/Presets/msfs2020_simvars.cip) in the [MobiFlight repository](https://bitbucket.org/mobiflight/mobiflightfc).
7
+
* ATTENTION: At the moment it is only possible for one client at a time to access variables via MobiFlight WASM. There is not yet multi client support.
8
+
9
+
## Example
10
+
11
+
**Example code on how to use the library and read variables:**
12
+
```python
13
+
from simconnect_mobiflight import SimConnectMobiFlight
14
+
from mobiflight_variable_requests import MobiFlightVariableRequests
0 commit comments