Skip to content

Instantly share code, notes, and snippets.

View amarburg's full-sized avatar

Aaron Marburg amarburg

View GitHub Profile
@ES-Alexander
ES-Alexander / mavactive.py
Last active August 7, 2025 11:12
An example of using `RC_OVERRIDE`s for basic vehicle control with Pymavlink. Includes a variety of other convenience functions.
from builtins import object
import weakref
from time import sleep
from threading import Thread, Event, Lock
from pymavlink import mavutil
import pymavlink.dialects.v20.ardupilotmega as mavlink
class WriteLockedFile(object):