Instal Steam
login
|
bahasa
简体中文 (Tionghoa Sederhana)
繁體中文 (Tionghoa Tradisional)
日本語 (Bahasa Jepang)
한국어 (Bahasa Korea)
ไทย (Bahasa Thai)
Български (Bahasa Bulgaria)
Čeština (Bahasa Ceko)
Dansk (Bahasa Denmark)
Deutsch (Bahasa Jerman)
English (Bahasa Inggris)
Español - España (Bahasa Spanyol - Spanyol)
Español - Latinoamérica (Bahasa Spanyol - Amerika Latin)
Ελληνικά (Bahasa Yunani)
Français (Bahasa Prancis)
Italiano (Bahasa Italia)
Magyar (Bahasa Hungaria)
Nederlands (Bahasa Belanda)
Norsk (Bahasa Norwegia)
Polski (Bahasa Polandia)
Português (Portugis - Portugal)
Português-Brasil (Bahasa Portugis-Brasil)
Română (Bahasa Rumania)
Русский (Bahasa Rusia)
Suomi (Bahasa Finlandia)
Svenska (Bahasa Swedia)
Türkçe (Bahasa Turki)
Tiếng Việt (Bahasa Vietnam)
Українська (Bahasa Ukraina)
Laporkan kesalahan penerjemahan
If someone need a python or Unity3D of this, I will write one for a contest in the coming week:
https://github.com/EloiStree/2025_04_26_LiftoffTelemetryPyUnity
@Poison Dart Frag i just think about this eresterday, the problem is that i need it to fly continously in a track. opening a GUI would hinder the performance by a lot. i wonder if i can bind the PID change to a button or some sort?
Dunno if there's a platform independent equivalent for emulating analog inputs via scripts; on Linux you could use something like https://pypi.org/project/evdev/ I think.
I have not tested either of those modules with Liftoff yet, no idea if there will be any obstacles. And to be honest, I have no idea if that would be the best approach in the first place. Really, I don't have much idea what I'm talking about; this is mostly just stuff I had bookmarked for some projects I never got around starting.
netcat uses TCP by default, I should have called:
netcat -ul 127.0.01 9001
Now it works like a charm!
Alas, I tried adding this TelemetryConfiguration.json file:
{
"EndPoint": "127.0.0.1:9001",
"StreamFormat": [
"Timestamp",
"Position",
"Attitude",
"Velocity",
"Gyro",
"Input",
"Battery",
"MotorRPM"
]
}
and saved it in my ~/.config/unity3d/LuGus Studios/Liftoff/ directory (I'm running Steam on Ubuntu 22.04), but after I launch Liftoff and listen on the port:
netcat -l 127.0.0.1 9001
I don't get any data :(
I was looking for any clues in my Player.log file, but no info about the TelemetryConfiguration.json file being loaded.
Any hints on how to get this working / How to debug it?
I'm on my Windows 11 computer, running the game in Windows through steam.
When I place the .json file in the correct location and named correctly, i'm not getting any telemetry out from the udp port... I have checked the Player.log file and Player-prev.log, and I can see that it's not finding the .json file.. I have double and triple checked the location of the file and the structure of the .json file itself, and its according to the instruction in this thread...
What i'm concerned about is that the path to the .json file in the .log file is using a ""(backslash) to look for the .json file, instead of using "/"(forwardslash) in the path..
"Could not find a drone telemetry configuration file at C:/Users/magnu/AppData/LocalLow/LuGus Studios/LiftoffTelemetryConfiguration.json"
Any thoughts on what might be the problem?