Spaces:
Running
Running
File size: 450 Bytes
bd61f34 |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""
Drone control and interface module.
This package contains all the drone-related functionality including:
- DroneKit integration
- Drone control and mission planning
- Chat interface for natural language interactions with the drone
"""
# Import main components for easier access
from .drone_control import DroneController, connect_drone, disconnect_drone, takeoff, land, return_home
from .drone_chat import DroneAssistant, generate_mission_plan |