Add correct note on usage alongside QGroundControl

This commit is contained in:
Oleg Kalachev 2025-07-22 13:51:21 +03:00
parent ccd625d669
commit 764e5159d0
2 changed files with 21 additions and 1 deletions

View File

@ -132,6 +132,26 @@ The flight control feature is in development. List of methods intended for autom
* `set_controls`
* `set_mode`
## Usage alongside QGroundControl
You can use the Flix library alongside the QGroundControl app, using a proxy mode. To do that:
1. Run proxy for `pyflix` and QGroundControl in background:
```bash
flix-proxy
```
2. Go to QGroundControl settings ⇒ *Comm Links*.
3. Add new link with the following settings:
* *Name*: Proxy
* *Automatically Connect on Start*: ✓
* *Type*: UDP
* *Port*: 14560
4. Restart QGroundControl.
Now you can run `pyflix` scripts and QGroundControl simultaneously.
## Tools
The following scripts demonstrate how to use the library:

View File

@ -11,7 +11,7 @@ dependencies = [
]
[project.scripts]
flixproxy = "pyflix.proxy:main"
flix-proxy = "pyflix.proxy:main"
[build-system]
requires = ["setuptools>=61.0"]