Skip to content

Commit

Permalink
New translations mavsdk.md (Chinese Simplified)
Browse files Browse the repository at this point in the history
  • Loading branch information
PX4BuildBot committed Jan 22, 2025
1 parent 7b3f94d commit 8967148
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions zh/robotics/mavsdk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# MAVSDK

[MAVSDK](https://mavsdk.mavlink.io/main/en/index.html) is a MAVLink SDK that allows you to communicate with MAVLink systems such as drones, cameras or ground systems.

The SDK provides interface libraries for various programming languages, with a simple API for managing one or more vehicles.
It provides programmatic access to vehicle information and telemetry, and control over missions, movement and other operations.
It can also be used to communicate with MAVLink components, such as cameras, gimbals, and other hardware.

MAVSDK libraries can be used onboard a drone on a companion computer, or on a ground station or mobile device, and can run on Linux, macOS, Windows, Android, and iOS.

:::info
MAVSDK is easier to learn than [ROS 2](../ros2/index.md) and has a more stable API.
It is recommended for communicating from ground stations, for relatively low bandwidth command/control from a companion computer, and for integrating with onboard components that do not have high bandwidth requirements, such as cameras and gimbals.

ROS is recommended for high-bandwidth onboard communication, to provide features such as obstacle avoidance that require higher rate messages and that can leverage existing ROS and computer vision libraries..
:::

The SDK can also be used to write MAVLink "server" code: the side of a MAVLink communication that is normally implemented by an autopilot, MAVLink camera, or other component.
This can be used to create a MAVLink API for components running on a companion computer, such as a camera API interface for a native camera connected to the computer.

0 comments on commit 8967148

Please sign in to comment.