Skip to main content

Communicate with the MRT Autopilot Mavlink API

Project description

MRT Autopilot Python3 API

This repository contains the Python3 API for the MRT Autopilot.

Installation

pip3 install mrtautopilot

Usage

Example usage:

#!/usr/bin/env python3

import logging
import selectors

# example for send_protobuf_proxy
from mrtproto import autopilot_pb2

import mrtautopilot

PROTO_ID = 0x5433  # defined by protocol


def main():
    mavlink = mrtautopilot.MavlinkThread()

    proto = autopilot_pb2.VehicleData()
    proto.position.latitude_deg = 38.3
    proto.position.longitude_deg = -77.1

    def got_low_bandwidth():
        d: mrtautopilot.LowBandwidth = mavlink.low_bandwidth_queue.get_nowait()
        logging.info(
            f"Got Vehicle Data: {d.latitude_deg}, {d.longitude_deg}, has control: {mavlink.has_control()}"
        )

    try:
        sel = selectors.DefaultSelector()
        sel.register(
            mavlink.low_bandwidth_queue_fileobj,
            selectors.EVENT_READ,
            got_low_bandwidth,
        )

        count = 0
        mavlink.start()
        while True:
            if mavlink.has_control():
                mavlink.send_heartbeat()

            count += 1

            if count == 3:
                mavlink.send_take_control()

            if count == 5:
                mavlink.send_protobuf_proxy(PROTO_ID, proto.SerializeToString())

            if count == 6:
                m = mrtautopilot.mission
                mavlink.send_mission(
                    m.Mission(
                        fault_config=m.FaultConfig(
                            fault_responses={},
                            loiter_radius_m=30,
                            loiter_duration_s=365 * 24 * 60 * 60,
                            response_speed_mps=3,
                        ),
                        rally_points=[],
                        fence=[],
                        mission_items=[
                            m.Waypoint(lat_deg=38.31, lon_deg=-77.02, speed_mps=6),
                            m.Waypoint(lat_deg=38.31, lon_deg=-77.00, speed_mps=6),
                            m.Waypoint(lat_deg=38.34, lon_deg=-77.00, speed_mps=7),
                            m.DriftLoiter(
                                lat_deg=38.34, lon_deg=-77.00, speed_mps=3, radius_m=50
                            ),
                        ],
                    )
                )

            if count == 10:
                mavlink.set_motor_enablement(True)
                mavlink.send_waypoint(38.3, -77.1, 3.0)

            if count == 20:
                mavlink.set_motor_enablement(False)
                mavlink.send_autopilot_stop()

            if count == 25:
                mavlink.send_autopilot_manual_mode()

            if count > 25:
                # z = thrust, # r = rudder, 0=%0, 1000=100%
                mavlink.send_manual_control(z=100, r=100)

            for key, mask in sel.select():
                key.data()

    finally:
        mavlink.stop()


def setup_logging():
    logging.basicConfig(
        format="%(asctime)s.%(msecs)03d | %(threadName)s | %(levelname)8s | %(message)s",
        datefmt="%Y-%m-%d %H:%M:%S",
    )
    logger = logging.getLogger()
    logger.setLevel(logging.INFO)


if __name__ == "__main__":
    setup_logging()
    try:
        main()
    except KeyboardInterrupt:
        pass

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mrtautopilot-14.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mrtautopilot-14-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

File details

Details for the file mrtautopilot-14.tar.gz.

File metadata

  • Download URL: mrtautopilot-14.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mrtautopilot-14.tar.gz
Algorithm Hash digest
SHA256 118570178ff95784aea697d8032a544ccb9024b709680686beb6da13ca3d7037
MD5 f659b755c62dd1dd3a23671b6ad6b532
BLAKE2b-256 83101ddeae60747372bf5a4fe4bdde891bf66196d6522c685515446fcb2e86ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrtautopilot-14.tar.gz:

Publisher: pypi.yml on magothy/mrtautopilot-py3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mrtautopilot-14-py3-none-any.whl.

File metadata

  • Download URL: mrtautopilot-14-py3-none-any.whl
  • Upload date:
  • Size: 13.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mrtautopilot-14-py3-none-any.whl
Algorithm Hash digest
SHA256 a462f2e1ae2d8c5bae8f20b5b757576560f59b604f0eea5edc8605ed1612ce04
MD5 5d847799a2be195eb15c4aecce93bdec
BLAKE2b-256 8b66e7c7d727c9095928e7ea9525f37136faf8e340654db638129f7f1bb3997b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mrtautopilot-14-py3-none-any.whl:

Publisher: pypi.yml on magothy/mrtautopilot-py3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page