mavpilot 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mavpilot/__init__.py +14 -0
- mavpilot/__main__.py +12 -0
- mavpilot/_viz.html +700 -0
- mavpilot/cli.py +205 -0
- mavpilot/constants.py +63 -0
- mavpilot/controller.py +1367 -0
- mavpilot/py.typed +0 -0
- mavpilot/types.py +76 -0
- mavpilot/utils.py +55 -0
- mavpilot/viz.py +155 -0
- mavpilot-0.1.0.dist-info/METADATA +354 -0
- mavpilot-0.1.0.dist-info/RECORD +16 -0
- mavpilot-0.1.0.dist-info/WHEEL +5 -0
- mavpilot-0.1.0.dist-info/entry_points.txt +2 -0
- mavpilot-0.1.0.dist-info/licenses/LICENSE +21 -0
- mavpilot-0.1.0.dist-info/top_level.txt +1 -0
mavpilot/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""mavpilot — async PX4 drone controller via MAVLink."""
|
|
2
|
+
__all__ = [
|
|
3
|
+
"DroneController",
|
|
4
|
+
"DroneError",
|
|
5
|
+
"Position",
|
|
6
|
+
"MarkerObservation",
|
|
7
|
+
"PrecisionLandStatus",
|
|
8
|
+
"PrecisionLandResult",
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
from .controller import DroneController, DroneError
|
|
12
|
+
from .types import MarkerObservation, Position, PrecisionLandResult, PrecisionLandStatus
|
|
13
|
+
|
|
14
|
+
__version__ = "0.2.0.dev0"
|