Explore MAVSDK-Python plugins
mainMAVSDK-Python is organized into specialized plugins that provide access to different drone capabilities and MAVLink features. Instead of a single monolithic API, you interact with specific plugins for tasks such as mission management, telemetry, camera control, and offboard mode.
Common plugin categories include:
- Core & System:
core,info,param,telemetry - Flight Control:
action,offboard,manual_control,mission - Hardware/Peripherals:
camera,gimbal,gripper,winch - Data & Logs:
log_files,log_streaming,ftp - Advanced/Specialized:
mocap,rtk,transponder,mavlink_direct
Note that some plugins follow a client/server pattern (e.g., action vs action_server), where the _server variants are typically used when the MAVSDK-Python application is acting as the provider of a service rather than the consumer.