• Dear visitors,

    The email issue has been finally solved.
    Thank you for your patience and happy browsing.

    Team ACM.

SOLVED How a telemetry value can be shared directly into a 3rd party app?

FitbyBit

New Member
I need to share current gear number.
I have a python app which should receive this value.

The problem is this app works in different python version, and cannot work within built-in Python 3.3 (because of installed packages, etc.).

Any mod can be written to help with that from AC side, but which solution shall be used?

There are plenty of apps which uses somehow data from AC (SimHub, RealHeadMotion, but didn't find any written in Python.

P.S. Thought shared memory could be used, but that's not what it's designed for.
 

fughettaboutit

aka leBluem
i can use shared mem lib "sim_info.py" just fine with python 3.9
Code:
from sim_info import info
while True:
  print('\r' + str(info.physics.gear), end='')
beware 0=reverse, 1=neutral, 2=1st ... between every shift it goes to 1
 
Last edited:
Top