pysimconnect icon indicating copy to clipboard operation
pysimconnect copied to clipboard

Results 12 pysimconnect issues
Sort by recently updated
recently updated
newest added

Is it possible to read the simulators environment variables (e.g. ZULU TIME)? Using same code from the demo sample with the below edit: ``` altitude = sc.get_simdatum("Indicated Altitude") print("Got indicated...

in datadef.py on line 109, a little more effiecent and error free way of handling the result string would be val = ptr[:256].decode('ascii', errors='replace').split("\x00")[0] Thank you so much for getting...

Hi Patrick, great software. Very useful Quick Question, can you access the GPS Variable using pysimconnect? https://docs.flightsimulator.com/html/Programming_Tools/GPSVars/GPS_Variables.htm I get: TypeError: unhasable type: 'slice' if I try using the get_simdatum method...

Any chance of a re-scrape of the simconnect variables and events making it into the repository? There have been quite a few recently added. Of particular interest to me are...

Working on a script to send joystick x/y position via simconnect. Works just fine, however, no matter what unit type I specify, I get a warning logged `unrecognized Miscellaneous Unit...

bug

I found that Bco16 data types were being unrecognized, and stepping through I found that u['name_std'] was being set to 'Bco16', but compared to 'BCO16', which I think is incorrect....

During the process of integrating this great implementation on my simulation software I realized that the SC class will log directly to logging. For those that would like to import...

enhancement

Couldn't find AXIS variables, like for example AXIS_FLAPS_SET, is this intentional? Can they be added?

enhancement
question

I have created a class which uses pysimconnect. This class works as intended when I use it locally with if __name__ == "__main__", but when i import the class from...

question

Have you tryed packaging it with pyinstaller ? I made it, and I get an error when it tries to load scvars.json. I solved it by removing the path in...

documentation